/* ============================================
   MINDFUL NEST PSYCHOLOGICAL CENTRE
   Updated Color Palette - Nature-Inspired Luxury
   ============================================ */

/* CSS Variables - New Color Palette */
:root {
    /* Dark/Earthy Tones */
    --forest: #2B352C;
    --taupe: #695D47;
    --leather: #896C4A;
    --terracotta: #8E511B;
    --stone: #B6A48C;
    --sand: #D3C6B5;
    
    /* Soft/Calming Tones */
    --sage: #889577;
    --cream-stone: #E5E2DB;
    --olive-muted: #B5B89D;
    --warm-beige: #C8AE8B;
    --deep-tan: #6E5E44;
    --linen: #E0D4BE;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray-light: #f0ede8;
    --gray: #8a7f72;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(43, 53, 44, 0.08);
    --shadow-md: 0 4px 20px rgba(43, 53, 44, 0.12);
    --shadow-lg: 0 8px 30px rgba(43, 53, 44, 0.16);
    --shadow-xl: 0 20px 40px rgba(43, 53, 44, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream-stone);
    color: var(--forest);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .section-title, .carousel-main-title {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--forest);
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--deep-tan);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

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

.btn-outline.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Top Bar */
.top-bar {
    background: var(--forest);
    color: var(--linen);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--linen);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
    color: var(--warm-beige);
}

.contact-info i, .hours-info i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.logo-text span {
    color: var(--sage);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--forest);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--terracotta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--forest);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--gray-light);
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--forest);
    border-bottom: 1px solid var(--gray-light);
}

.mobile-book-btn {
    background: var(--sage);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-full);
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .mobile-menu.active {
        display: flex;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

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

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.slide-badge {
    display: inline-block;
    background: var(--terracotta);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    width: fit-content;
}

.slide-title {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-title .italic {
    font-style: italic;
    font-weight: 400;
}

.slide-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--white);
    color: var(--forest);
}

.carousel-nav.prev {
    left: 32px;
}

.carousel-nav.next {
    right: 32px;
}

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

.carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots span.active {
    width: 30px;
    border-radius: 10px;
    background: var(--white);
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    .slide-title {
        font-size: 40px;
    }
    .slide-subtitle {
        font-size: 16px;
    }
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Trust Bar / Stats */
.trust-bar {
    background: var(--white);
    padding: 60px 0;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number {
        font-size: 36px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--cream-stone);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--terracotta);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cream-stone), var(--linen));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--sage);
}

.service-card:hover .service-icon i {
    color: var(--terracotta);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.service-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.service-link {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
    color: var(--terracotta);
}

.services-cta {
    text-align: center;
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--white);
}

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

.package-card {
    background: var(--cream-stone);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

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

.package-card.featured {
    background: linear-gradient(135deg, var(--white), var(--linen));
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--sage);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.package-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.package-sessions {
    color: var(--gray);
    margin-bottom: 16px;
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--forest);
}

.package-features i {
    color: var(--sage);
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .package-card.featured {
        transform: scale(1);
    }
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: var(--cream-stone);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

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

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.room-size {
    background: var(--terracotta);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.room-info {
    padding: 24px;
}

.room-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.room-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.room-details {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray);
}

.room-details i {
    margin-right: 6px;
    color: var(--sage);
}

.room-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 20px;
}

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

@media (max-width: 640px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* Match height of content and visual columns */
}

.why-us-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 24px 0;
    color: var(--forest);
}

/* Decorative Divider */
.text-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: var(--sage);
    opacity: 0.6;
}

.text-divider .line {
    flex: 1;
    height: 1px;
    background: currentColor;
}

/* Elegant Pull Quote */
.elegant-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--sage);
    margin: 24px 0 32px;
    padding-left: 20px;
    border-left: 3px solid var(--linen);
    line-height: 1.4;
}

.features-list {
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    font-size: 24px;
    color: var(--sage);
    margin-top: 4px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--forest);
}

.feature p {
    font-size: 14px;
    color: var(--gray);
}

/* Why Us Visual Elements - Center Aligned & Compact */
.why-us-visual {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the entire block vertically */
    align-items: center; 
    height: 100%;
    gap: 32px;
}

.image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 450px; /* Keep it compact horizontally */
    height: 70%; /* Increased total height to 70% */
}

.stack-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1; /* Stretch to fill the 70% space */
}

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

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.stack-item:hover img {
    transform: scale(1.05);
}

.stack-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(43, 53, 44, 0.7));
    color: var(--white);
    padding: 20px 16px 12px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stack-item:hover .stack-label {
    opacity: 1;
}

/* Map Button Styling */
.map-link-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--sage);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.map-button:hover {
    background-color: #768466; 
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

@media (max-width: 1200px) {
    .why-us-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .why-us-visual {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .why-us-visual {
        min-height: auto;
        height: auto;
        margin-top: 40px;
        gap: 24px;
    }

    .image-stack {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .stack-item {
        height: 280px;
        min-height: 250px;
    }
    
    .stack-label {
        opacity: 1;
        padding: 20px 15px 10px;
        font-size: 14px;
    }

    .map-link-container {
        justify-content: center;
        margin-top: 0;
    }
    
    .map-button {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--cream-stone);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-quote {
    font-size: 80px;
    font-family: 'Georgia', serif;
    color: var(--sage);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--forest);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--forest);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    z-index: 10;
    color: var(--forest);
}

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

.testimonial-nav.prev {
    left: -20px;
}

.testimonial-nav.next {
    right: -20px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
    .testimonial-nav {
        display: none;
    }
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest), var(--deep-tan));
    color: var(--white);
}

.partnership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(10px);
}

.partnership-content .section-tag {
    color: var(--linen);
}

.partnership-content .section-title {
    color: var(--white);
}

.partnership-content p {
    color: var(--linen);
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.partnership-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--linen);
}

.partnership-benefits i {
    color: var(--warm-beige);
}

.partnership-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    color: var(--forest);
}

.partnership-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.partnership-form input,
.partnership-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--stone);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.partnership-form input:focus,
.partnership-form textarea:focus {
    outline: none;
    border-color: var(--sage);
}

@media (max-width: 768px) {
    .partnership-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--forest);
    color: var(--linen);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
}

.footer-about p {
    color: var(--stone);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--linen);
    transition: all 0.3s;
}

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

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--warm-beige);
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--stone);
    display: flex;
    gap: 10px;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--sage);
}

.payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    font-size: 28px;
    color: var(--stone);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--stone);
}

.privacy-links a {
    color: var(--stone);
    text-decoration: none;
}

.privacy-links a:hover {
    color: var(--warm-beige);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .btn-primary.btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--forest);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--cream-stone);
    color: var(--sage);
    padding-left: 24px;
}

/* Room Card Button - More Visible */
.room-card .btn-outline.btn-sm {
    background: var(--terracotta);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(142, 81, 27, 0.2);
}

.room-card .btn-outline.btn-sm:hover {
    background: #7A4516;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 81, 27, 0.3);
}

/* ===== PACKAGES CAROUSEL ===== */
.packages-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.packages-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.packages-carousel .package-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
}

/* Carousel Navigation */
.packages-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--cream-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--shadow-md);
    color: var(--forest);
}

.packages-carousel .carousel-nav:hover {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
}

.packages-carousel .carousel-nav.prev {
    left: -24px;
}

.packages-carousel .carousel-nav.next {
    right: -24px;
}

/* Carousel Dots */
.packages-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.packages-carousel .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-stone);
    cursor: pointer;
    transition: all 0.3s;
}

.packages-carousel .carousel-dot.active {
    background: var(--sage);
    width: 30px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .packages-carousel .package-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .packages-carousel .package-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }
    
    .packages-carousel .carousel-nav.prev {
        left: 0;
    }
    
    .packages-carousel .carousel-nav.next {
        right: 0;
    }
}
/* ============================================
   MINDFUL NEST PSYCHOLOGICAL CENTRE
   Updated Color Palette - Nature-Inspired Luxury
   ============================================ */

/* CSS Variables - New Color Palette */
:root {
    /* Dark/Earthy Tones */
    --forest: #2B352C;
    --taupe: #695D47;
    --leather: #896C4A;
    --terracotta: #8E511B;
    --stone: #B6A48C;
    --sand: #D3C6B5;
    
    /* Soft/Calming Tones */
    --sage: #889577;
    --cream-stone: #E5E2DB;
    --olive-muted: #B5B89D;
    --warm-beige: #C8AE8B;
    --deep-tan: #6E5E44;
    --linen: #E0D4BE;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray-light: #f0ede8;
    --gray: #8a7f72;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(43, 53, 44, 0.08);
    --shadow-md: 0 4px 20px rgba(43, 53, 44, 0.12);
    --shadow-lg: 0 8px 30px rgba(43, 53, 44, 0.16);
    --shadow-xl: 0 20px 40px rgba(43, 53, 44, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream-stone);
    color: var(--forest);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .section-title, .carousel-main-title {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--forest);
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--deep-tan);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

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

.btn-outline.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Top Bar */
.top-bar {
    background: var(--forest);
    color: var(--linen);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--linen);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
    color: var(--warm-beige);
}

.contact-info i, .hours-info i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.logo-text span {
    color: var(--sage);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--forest);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--terracotta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--forest);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--gray-light);
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--forest);
    border-bottom: 1px solid var(--gray-light);
}

.mobile-book-btn {
    background: var(--sage);
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-full);
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .mobile-menu.active {
        display: flex;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

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

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.slide-badge {
    display: inline-block;
    background: var(--terracotta);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    width: fit-content;
}

.slide-title {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-title .italic {
    font-style: italic;
    font-weight: 400;
}

.slide-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--white);
    color: var(--forest);
}

.carousel-nav.prev {
    left: 32px;
}

.carousel-nav.next {
    right: 32px;
}

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

.carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots span.active {
    width: 30px;
    border-radius: 10px;
    background: var(--white);
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    .slide-title {
        font-size: 40px;
    }
    .slide-subtitle {
        font-size: 16px;
    }
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Trust Bar / Stats */
.trust-bar {
    background: var(--white);
    padding: 60px 0;
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number {
        font-size: 36px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--cream-stone);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--terracotta);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cream-stone), var(--linen));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--sage);
}

.service-card:hover .service-icon i {
    color: var(--terracotta);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.service-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.service-link {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
    color: var(--terracotta);
}

.services-cta {
    text-align: center;
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--white);
}

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

.package-card {
    background: var(--cream-stone);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

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

.package-card.featured {
    background: linear-gradient(135deg, var(--white), var(--linen));
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--sage);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.package-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.package-sessions {
    color: var(--gray);
    margin-bottom: 16px;
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--forest);
}

.package-features i {
    color: var(--sage);
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .package-card.featured {
        transform: scale(1);
    }
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: var(--cream-stone);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

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

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.room-size {
    background: var(--terracotta);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.room-info {
    padding: 24px;
}

.room-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.room-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.room-details {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray);
}

.room-details i {
    margin-right: 6px;
    color: var(--sage);
}

.room-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 20px;
}

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

@media (max-width: 640px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 24px 0;
    color: var(--forest);
}

.features-list {
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    font-size: 24px;
    color: var(--sage);
    margin-top: 4px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--forest);
}

.feature p {
    font-size: 14px;
    color: var(--gray);
}

.why-us-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    color: var(--forest);
}

.image-badge i {
    color: var(--terracotta);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--cream-stone);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-quote {
    font-size: 80px;
    font-family: 'Georgia', serif;
    color: var(--sage);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--forest);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--forest);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    z-index: 10;
    color: var(--forest);
}

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

.testimonial-nav.prev {
    left: -20px;
}

.testimonial-nav.next {
    right: -20px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
    .testimonial-nav {
        display: none;
    }
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest), var(--deep-tan));
    color: var(--white);
}

.partnership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(10px);
}

.partnership-content .section-tag {
    color: var(--linen);
}

.partnership-content .section-title {
    color: var(--white);
}

.partnership-content p {
    color: var(--linen);
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.partnership-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--linen);
}

.partnership-benefits i {
    color: var(--warm-beige);
}

.partnership-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    color: var(--forest);
}

.partnership-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--forest);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.partnership-form input,
.partnership-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--stone);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.partnership-form input:focus,
.partnership-form textarea:focus {
    outline: none;
    border-color: var(--sage);
}

@media (max-width: 768px) {
    .partnership-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--forest);
    color: var(--linen);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
}

.footer-about p {
    color: var(--stone);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--linen);
    transition: all 0.3s;
}

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

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--warm-beige);
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--stone);
    display: flex;
    gap: 10px;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--sage);
}

.payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    font-size: 28px;
    color: var(--stone);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--stone);
}

.privacy-links a {
    color: var(--stone);
    text-decoration: none;
}

.privacy-links a:hover {
    color: var(--warm-beige);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .btn-primary.btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}
/* ===== FIXES: Mobile Sub-links ===== */
.mobile-sub-links {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.06);
    border-radius: 8px;
    margin: -4px 0 4px 0;
    overflow: hidden;
}
.mobile-sub-links a {
    padding: 10px 24px !important;
    font-size: 14px !important;
    color: var(--gray) !important;
    border-bottom: none !important;
}
.mobile-sub-links a:hover {
    color: var(--sage) !important;
    background: rgba(136,149,119,0.08);
}

/* ===== FIXES: Hero carousel slide-content - replace <br> hack with CSS padding ===== */
.slide-content {
    padding-top: 120px;
}
@media (max-width: 768px) {
    .slide-content {
        padding-top: 80px;
    }
}

/* ===== FIXES: Payment button loading state ===== */
.btn-pay:disabled,
.btn-next:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* SociableKit Google Reviews Widget Styling */
.sk-ww-google-reviews {
    margin-top: 30px;
}

.sk-ww-google-reviews .sk-review-card {
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.3s !important;
}

.sk-ww-google-reviews .sk-review-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.sk-ww-google-reviews .sk-star-rating .sk-star-filled {
    color: var(--terracotta) !important;
}

.sk-ww-google-reviews .sk-reviewer-name {
    color: var(--forest) !important;
    font-weight: 600 !important;
}