/* ============================================================
   Color Palette
   ============================================================ */
:root {
    --color-primary: #618764;
    --color-primary-dark: #4a6548;
    --color-primary-light: #7fa085;
    --color-accent-beige: #e8dcc8;
    --color-accent-beige-dark: #d4c4aa;
    --color-light: #f9f7f4;
    --color-dark: #2d2d2d;
    --color-text: #3a3a3a;
    --color-border: #e0e0e0;
    --color-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Global Styles
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(90deg, var(--color-light) 0%, var(--color-accent-beige) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--color-light) 0%, var(--color-accent-beige) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.navbar-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-social a {
    color: var(--color-primary);
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(97, 135, 100, 0.1);
    text-decoration: none;
}

.navbar-social a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--color-border);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px 8px;
}

.lang-btn.active {
    color: var(--color-primary);
}

.lang-btn:hover {
    color: var(--color-primary);
}

.nav-separator {
    color: var(--color-border);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: var(--color-primary-dark);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(90deg, var(--color-light) 0%, var(--color-accent-beige) 100%);
        gap: 0;
        padding: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.mobile-open {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
        border-bottom: none;
    }
    
    .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: flex-start;
        width: 100%;
        padding: 12px 20px;
        border-bottom: none;
    }

    .navbar-logo-section {
        gap: 1rem;
    }

    .navbar-social {
        gap: 0.75rem;
    }

    .navbar-social a {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }
    
    .hero-features {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .language-switcher {
        padding: 10px 15px;
    }
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%);
    max-height: calc(100vh - 70px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 70px);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 45, 45, 0.5) 0%, rgba(45, 45, 45, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 450px;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon {
    font-size: 1.25rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(97, 135, 100, 0.3);
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(97, 135, 100, 0.4);
}

/* ============================================================
   Section Styling
   ============================================================ */
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

/* ============================================================
   About Section
   ============================================================ */
.about {
    padding: 5rem 0;
    background: inherit;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 3px solid var(--color-primary);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.feature-card p {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================================
   Gallery Section
   ============================================================ */
.gallery {
    padding: 5rem 0;
    background: inherit;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(97, 135, 100, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2.5rem;
    color: var(--color-white);
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(97, 135, 100, 0.7);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background-color: var(--color-primary);
}

.lightbox-prev {
    left: -30px;
}

.lightbox-next {
    right: -30px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    color: var(--color-white);
    font-size: 1rem;
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing {
    padding: 5rem 0;
    background: inherit;
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.pricing-item {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.pricing-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-item h3 {
    color: var(--color-primary-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.pricing-value span {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact {
    padding: 5rem 0;
    background: inherit;
}

.contact-methods {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
    text-align: center;
}

.contact-method-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phone-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.phone-link:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.viber-note {
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    font-style: italic;
    margin: 0;
}

.form-subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1rem;
    color: var(--color-primary-dark);
    font-weight: 500;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-white);
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(97, 135, 100, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(97, 135, 100, 0.3);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: var(--transition);
    font-weight: 500;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--color-primary-light);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   Terms & Privacy Pages
   ============================================================ */
.terms-privacy {
    padding: 3rem 0;
    background: linear-gradient(90deg, var(--color-light) 0%, var(--color-accent-beige) 100%);
    min-height: calc(100vh - 200px);
}

.terms-privacy h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.terms-privacy h2 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-privacy .content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.terms-privacy p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.terms-privacy ul {
    margin: 1rem 0 1.5rem 2rem;
}

.terms-privacy li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-privacy a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-privacy a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ============================================================
   Responsive Design
   ============================================================ */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .feature-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .feature-badge span:not(.feature-icon) {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-methods {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .phone-numbers {
        flex-direction: column;
    }

    .phone-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.75rem 10px;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .navbar-logo {
        font-size: 1.1rem;
    }

    .navbar-logo-section {
        gap: 0.75rem;
    }

    .navbar-social {
        gap: 0.5rem;
    }

    .navbar-social a {
        font-size: 1rem;
        width: 28px;
        height: 28px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-methods {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .contact-method-title {
        font-size: 1rem;
    }

    .phone-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }

    .viber-note {
        font-size: 0.85rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .language-switcher {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }

    .lang-btn {
        font-size: 0.8rem;
        padding: 2px 6px;
    }

    .footer-social {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .terms-privacy h1 {
        font-size: 1.75rem;
    }

    .terms-privacy h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .terms-privacy .content {
        padding: 1.5rem;
    }
}
