/* ===================================
   SERENITY KERALA - WELLNESS RETREAT
   Premium Luxury CSS Styles
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-cream: #FAF8F5;
    --color-beige: #F5F0E8;
    --color-sage: #8B9D83;
    --color-sage-dark: #6B7D63;
    --color-sage-light: #C5D4BE;
    --color-brown: #8B7355;
    --color-brown-light: #A89070;
    --color-gold: #C9A86C;
    --color-gold-light: #D4BC8E;
    --color-text: #2C3E2D;
    --color-text-light: #5A6B5C;
    --color-text-muted: #7A8B7C;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Lato', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 60px rgba(0,0,0,0.12);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 15px;
}

.section-label.centered {
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

.light {
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-sage-dark);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-sage-dark);
    border-color: var(--color-white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height var(--transition-fast);
}

.header.scrolled .logo-img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 5px 0;
    /* Remove default focus outline */
    outline: none;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Remove outline on focus for nav links */
.nav-link:focus {
    outline: none;
    box-shadow: none;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.header.scrolled .nav-cta {
    background-color: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

.header.scrolled .nav-toggle span {
    background-color: var(--color-text);
}

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

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

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

/* ===================================
   HERO SLIDER
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.5) 100%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 1;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 2;
}

.slider-arrow:hover {
    background-color: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active,
.slider-dot:hover {
    background-color: var(--color-white);
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-sage-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.welcome-content {
    padding-right: 40px;
}

.welcome-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.welcome-features {
    margin-top: 30px;
}

.welcome-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--color-text);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding: 4px;
    background-color: var(--color-sage-light);
    border-radius: 50%;
    color: var(--color-sage-dark);
}

/* ===================================
   WHY KERALA SECTION
   =================================== */
.why-kerala {
    padding: var(--section-padding) 0;
    background-color: var(--color-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background-color: var(--color-beige);
    border-radius: 50%;
    color: var(--color-sage);
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===================================
   WELLNESS JOURNEYS SECTION
   =================================== */
.wellness-journeys {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.journey-card {
    position: relative;
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
}

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

.journey-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.journey-badge-premium {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
}

.journey-image {
    height: 220px;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.journey-card:hover .journey-image img {
    transform: scale(1.1);
}

.journey-content {
    padding: 30px;
}

.journey-duration {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-sage);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.journey-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.journey-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.journey-highlights {
    margin-bottom: 20px;
}

.journey-highlights li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.journey-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-sage-light);
    border-radius: 50%;
}

.journey-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.journey-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* View Details button - always visible */
.journey-view-details {
    background-color: transparent;
    color: var(--color-sage);
    border-color: var(--color-sage);
}

.journey-view-details:hover {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.journeys-note {
    text-align: center;
    margin-top: 50px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* ===================================
   JOURNEY TIMELINE SECTION
   =================================== */
.journey-timeline {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
}

.journey-timeline .section-label {
    color: rgba(255,255,255,0.7);
}

.journey-timeline .section-title {
    color: var(--color-white);
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 10px;
}

.timeline-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--color-white);
}

.timeline-content {
    flex: 1;
    padding: 15px 25px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
}

.timeline-connector {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    color: rgba(255,255,255,0.5);
}

/* ===================================
   YOGA SECTION
   =================================== */
.yoga-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-cream);
}

.yoga-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.yoga-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 50px;
}

.yoga-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.yoga-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.yoga-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.yoga-item svg {
    color: var(--color-sage);
    margin-bottom: 20px;
}

.yoga-item h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.yoga-item p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
}

.gallery-item-1 {
    grid-column: span 2;
}

.gallery-item-4 {
    grid-column: span 2;
}

/* ===================================
   EXPERTS SECTION
   =================================== */
.experts {
    padding: var(--section-padding) 0;
    background-color: var(--color-cream);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.expert-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.expert-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-sage-light);
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
}

.expert-title {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-sage);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.expert-bio {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 40px 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-accent);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
}

.author-country {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

/* ===================================
   DISCOVER KERALA SECTION
   =================================== */
.discover {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.discover-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-medium);
}

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

.discover-image {
    height: 280px;
    overflow: hidden;
}

.discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.discover-card:hover .discover-image img {
    transform: scale(1.1);
}

.discover-content {
    padding: 25px;
    background-color: var(--color-cream);
}

.discover-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.discover-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.discover-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 45, 0.85), rgba(139, 115, 85, 0.85));
}

.final-cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 80px 0 0;
    background-color: var(--color-text);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    background-color: var(--color-sage);
}

.footer-links h5,
.footer-contact h5 {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--color-sage-light);
}

.footer-contact address p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-sage-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: var(--color-sage-light);
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-sage);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.back-to-top svg {
    transition: transform var(--transition-fast);
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        background-color: var(--color-sage-dark);
        transition: right var(--transition-medium);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.25rem;
        color: var(--color-white);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .welcome-image::before {
        display: none;
    }

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

    .journey-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 15px);
        margin: 0 auto;
    }

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

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

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

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

    .journey-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-1,
    .gallery-item-4 {
        grid-column: span 1;
    }

    .gallery-item {
        height: 250px;
    }

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

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

    .yoga-highlights {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding: 0 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .welcome-content {
        padding-right: 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--color-sage);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .slider-arrow,
    .slider-dots,
    .final-cta-bg,
    .back-to-top,
    .whatsapp-float {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .final-cta {
        padding: 60px 0;
    }
}

/* ===================================
   FAQ PAGE STYLES
   =================================== */
.faq-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    overflow: hidden;
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.faq-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.faq-content {
    padding: 80px 0 100px;
    background-color: var(--color-cream);
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-of-type {
    margin-bottom: 0;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-sage-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-sage);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

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

.faq-contact {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.faq-contact-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 15px;
}

.faq-contact-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-contact .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.faq-contact .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-sage-dark);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 140px 0 80px;
    }

    .faq-content {
        padding: 60px 0 80px;
    }

    .faq-category {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-question span {
        padding-right: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9375rem;
    }

    .faq-contact {
        padding: 40px 25px;
    }

    .faq-contact-title {
        font-size: 1.5rem;
    }

    .faq-contact-text {
        font-size: 1rem;
    }

    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 120px 0 60px;
    }

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

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

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.9375rem;
    }
}

/* Back to Top visible state */
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===================================
   REDESIGNED FINAL CTA SECTION
   =================================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 45, 0.92) 0%, rgba(107, 125, 99, 0.88) 100%);
}

.final-cta-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.final-cta-left {
    color: var(--color-white);
}

.final-cta-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 15px;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.final-cta-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 500px;
}

.final-cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
}

.final-cta-feature svg {
    flex-shrink: 0;
    color: var(--color-gold-light);
}

.final-cta-right {
    display: flex;
    justify-content: flex-end;
}

.final-cta-card {
    background: var(--color-white);
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    max-width: 420px;
    width: 100%;
}

.final-cta-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.final-cta-card-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.final-cta-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.final-cta-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-beige);
}

.final-cta-divider span {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: var(--color-white);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.final-cta-card-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

/* Final CTA Responsive */
@media (max-width: 992px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .final-cta-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .final-cta-subtitle {
        max-width: 600px;
    }

    .final-cta-features {
        align-items: center;
    }

    .final-cta-right {
        justify-content: center;
    }

    .final-cta-card {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta-card {
        padding: 35px 25px;
    }

    .final-cta-card-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   YOGA PAGE STYLES
   =================================== */
.yoga-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    overflow: hidden;
}

.yoga-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.yoga-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.yoga-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.yoga-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.yoga-philosophy {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.yoga-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.yoga-philosophy-content .section-title {
    margin-top: 10px;
}

.yoga-philosophy-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.yoga-philosophy-features {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.yoga-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-text);
}

.yoga-feature-item svg {
    flex-shrink: 0;
    color: var(--color-sage);
}

.yoga-philosophy-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.yoga-philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.yoga-programs {
    padding: 100px 0;
    background-color: var(--color-white);
}

.yoga-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.yoga-program-card {
    padding: 40px 35px;
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
}

.yoga-program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.yoga-program-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    border-radius: 50%;
    margin-bottom: 25px;
}

.yoga-program-icon svg {
    color: var(--color-white);
}

.yoga-program-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.yoga-program-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.yoga-program-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yoga-program-includes li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.yoga-program-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-sage);
    border-radius: 50%;
}

.yoga-schedule {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-light) 100%);
}

.yoga-schedule-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.schedule-timeline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 18px 25px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

.schedule-time {
    font-family: var(--font-accent);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gold-light);
    min-width: 100px;
}

.schedule-activity {
    font-size: 1rem;
    color: var(--color-white);
}

.yoga-benefits {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.yoga-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.yoga-benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.yoga-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.yoga-benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--color-sage-light);
    border-radius: 50%;
}

.yoga-benefit-icon svg {
    color: var(--color-sage-dark);
}

.yoga-benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.yoga-benefit-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.yoga-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.yoga-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1599447421416-3414500d18a5?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.yoga-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 45, 0.9) 0%, rgba(107, 125, 99, 0.85) 100%);
}

.yoga-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.yoga-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.yoga-cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.yoga-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.yoga-cta .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.yoga-cta .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-sage-dark);
}

/* Yoga Page Responsive */
@media (max-width: 992px) {
    .yoga-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .yoga-philosophy-image {
        order: -1;
    }

    .yoga-philosophy-image img {
        height: 400px;
    }

    .yoga-programs-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .yoga-hero {
        padding: 140px 0 80px;
    }

    .yoga-philosophy,
    .yoga-programs,
    .yoga-schedule,
    .yoga-benefits,
    .yoga-cta {
        padding: 70px 0;
    }

    .schedule-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .schedule-time {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .yoga-hero {
        padding: 120px 0 60px;
    }

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

    .yoga-benefits-grid {
        grid-template-columns: 1fr;
    }

    .yoga-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .yoga-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
