
/* ============================================
   VEDA Ayurvedic Wellness - Main Stylesheet
   Palette: Terracotta #C17A5F, Sage Green #7A8B3E, 
            Dark Green #4A5D23, Cream #F5F0E8, Warm White #FAFAF5
   ============================================ */

:root {
    --terra: #C17A5F;
    --terra-light: #D49A85;
    --terra-dark: #A05F47;
    --sage: #7A8B3E;
    --sage-light: #9AAF5A;
    --sage-dark: #4A5D23;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --warm-white: #FAFAF5;
    --charcoal: #2C2C2C;
    --text-body: #4A4A4A;
    --text-light: #8A8A8A;
    --gold: #C4A35A;
    --shadow-soft: rgba(74, 93, 35, 0.08);
    --shadow-medium: rgba(74, 93, 35, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--text-body);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 5rem 0;
}

/* ============================================
   NAVIGATION - CENTERED LOGO WITH MENU BELOW
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow-soft);
}

.nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2rem 0.8rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Logo centered and enlarged */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.nav-logo img {
    height: 140px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: var(--transition);
}

/* Menu links centered below logo */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--sage-dark);
}

/* Right-side controls positioned absolutely */
.nav-controls {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lang-switch {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-switch button {
    background: none;
    border: 1px solid var(--cream-dark);
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    transition: var(--transition);
    border-radius: 3px;
}

.lang-switch button.active {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

.lang-switch button:hover:not(.active) {
    border-color: var(--sage);
    color: var(--sage);
}

.nav-whatsapp {
    font-size: 1.5rem;
    transition: var(--transition);
    line-height: 1;
}

.nav-whatsapp:hover {
    transform: scale(1.1);
}

.nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--sage);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--sage);
}

.nav-cta:hover {
    background: transparent;
    color: var(--sage);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 240px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(122, 139, 62, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(193, 122, 95, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-title span {
    font-style: italic;
    color: var(--sage-dark);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--sage);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--sage);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    color: var(--charcoal);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--cream-dark);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--terra);
    color: var(--terra);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--sage);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    box-shadow: 0 30px 60px var(--shadow-medium);
    display: block;
}

.hero-location {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

.hero-location-icon {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    font-size: 1.2rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-title span {
    font-style: italic;
    color: var(--sage-dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT AYURVEDA SECTION
   ============================================ */

.about-ayurveda {
    background: var(--cream);
}

.ayurveda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ayurveda-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
}

.ayurveda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-soft);
    display: block;
}

.ayurveda-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--sage-dark);
}

.ayurveda-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.dosha-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.dosha-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: var(--transition);
}

.dosha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.dosha-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.dosha-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.dosha-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   TREATMENTS SECTION
   ============================================ */

.treatments {
    background: var(--warm-white);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.treatment-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.treatment-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.treatment-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.treatment-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.treatment-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.treatment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.treatment-duration {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--terra);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.treatment-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.treatment-card .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1.2rem;
    padding: 0.8rem;
    font-size: 0.8rem;
}

/* ============================================
   PACKAGES & DETOX SECTION
   ============================================ */

.packages {
    background: var(--cream);
}

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

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive navbar */
@media (max-width: 768px) {
    .nav-inner {
        padding: 0.5rem 1rem 0.8rem;
    }

    .nav-logo img {
        height: 100px;
        max-width: 220px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-controls {
        position: static;
        margin-top: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 1rem;
        left: 1rem;
    }

    .hero {
        padding-top: 200px;
    }

    .hero-inner {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper img {
        height: 300px;
    }

    .treatments-grid,
    .packages-grid,
    .testimonials-grid,
    .dosha-cards,
    .footer-grid,
    .booking-container {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

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

    .booking-info {
        padding-right: 0;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   PHONE BREAKPOINT - Single Column Layouts
   ============================================ */

@media (max-width: 640px) {
    .treatments-grid,
    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    .treatment-card {
        max-width: 100%;
    }
}


.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.package-card.featured {
    border: 2px solid var(--sage);
}



.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cream-dark);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-header .package-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage-dark);
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--cream);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-features li::before {
    content: '✓';
    color: var(--sage);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ============================================
   PRACTITIONER SECTION
   ============================================ */

.practitioner {
    background: var(--warm-white);
}

.practitioner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.practitioner-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
}

.practitioner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-soft);
    display: block;
}

.practitioner-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--terra);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.practitioner-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.practitioner-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1.5rem;
}

.practitioner-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.practitioner-credentials {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--sage);
}

.practitioner-credentials h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--sage-dark);
}

.practitioner-credentials ul {
    list-style: none;
}

.practitioner-credentials li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.practitioner-credentials li::before {
    content: '◆';
    color: var(--terra);
    font-size: 0.7rem;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking .section-label {
    color: var(--sage-light);
}

.booking .section-title {
    color: white;
}

.booking .section-title span {
    color: var(--sage-light);
}

.booking .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.booking-info {
    padding-right: 2rem;
}

.booking-info h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.booking-contact-text {
    font-size: 0.95rem;
}

.booking-contact-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    color: var(--sage-light);
}

/* Booking Form */
.booking-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.booking-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--warm-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(122, 139, 62, 0.1);
}

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

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

.booking-form-wrapper .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   CALENDAR WIDGET
   ============================================ */

.calendar-widget {
    margin-top: 2rem;
    background: var(--warm-white);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--cream-dark);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    background: var(--cream);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.calendar-nav button:hover {
    background: var(--sage);
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    text-align: center;
}

.calendar-day-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.calendar-day:hover {
    background: var(--cream);
}

.calendar-day.available {
    background: var(--sage-light);
    color: white;
    font-weight: 600;
}

.calendar-day.available:hover {
    background: var(--sage);
}

.calendar-day.selected {
    background: var(--terra);
    color: white;
    font-weight: 600;
}

.calendar-day.disabled {
    color: var(--cream-dark);
    cursor: not-allowed;
}

.calendar-day.has-slot::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: var(--sage);
    border-radius: 50%;
}

.time-slots {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.6rem;
    text-align: center;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.time-slot:hover {
    border-color: var(--sage);
    color: var(--sage);
}

.time-slot.selected {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

.time-slot.booked {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location {
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-map {
    background: var(--cream-dark);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location-map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.location-map-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.location-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-feature-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.location-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.location-feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--warm-white);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--sage-light);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--warm-white);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sage);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--sage);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--sage);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--sage-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */


/* Navbar scrolled state - smaller logo */
.navbar.scrolled .nav-logo img {
    height: 80px;
    max-width: 180px;
}

.navbar.scrolled .nav-inner {
    padding: 0.3rem 2rem 0.5rem;
}

/* Smaller screens - 1024px */
@media (max-width: 1024px) {
    .hero-inner,
    .ayurveda-grid,
    .practitioner-grid,
    .location-grid,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .treatments-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dosha-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-logo img {
        height: 120px;
        max-width: 240px;
    }

    .hero {
        padding-top: 220px;
    }
}


/* Mobile responsive navbar */
@media (max-width: 768px) {
    .hero-image-wrapper {
        aspect-ratio: 3 / 4;
        max-width: 100%;
    }

    .practitioner-image {
        aspect-ratio: 3 / 4;
    }

    .ayurveda-image {
        aspect-ratio: 4 / 3;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-info {
        padding-right: 0;
    }
}

/* Ensure the hero visual section centers properly */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


/* ============================================
   LANGUAGE SWITCHING
   ============================================ */

[data-lang] {
    transition: opacity 0.3s ease;
}

.lang-hidden {
    display: none !important;
}

/* Language switching is handled via .lang-hidden class and JavaScript */
/* The body.lang-en/lang-it classes are set by JavaScript for potential future use */

/* Smooth language transition */
.language-transitioning [data-lang] {
    opacity: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
}

/* Image centering fix - handled per section above */

/* ============================================
   IMAGE FIXES - Responsive & Centering
   ============================================ */

/* Ensure all image containers hide overflow */
.hero-image-wrapper,
.practitioner-image,
.ayurveda-image {
    overflow: hidden;
}

/* Ensure images fill their containers properly */
.hero-image-wrapper img,
.practitioner-image img,
.ayurveda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Mobile responsive fixes */


/* Ensure the hero visual section centers properly */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}