/* =========================================
   Theme Variables & Reset
   ========================================= */
:root {
    /* Colors based on new palette */
    --color-primary: #3a5a40;
    --color-primary-light: #588157;
    --color-primary-dark: #344e41;
    --color-secondary: #a3b18a;
    --color-secondary-light: #dad7cd;

    /* Neutrals */
    --color-bg: #fafafa;
    --color-bg-alt: #ffffff;
    --color-border: #eaeaea;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-white: #ffffff;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Lexend', sans-serif;

    /* Layout */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 99px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(48, 122, 107, 0.08);
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #121212;
        --color-bg-alt: #1e1e1e;
        --color-border: #333333;
        --color-text: #f0f0f0;
        --color-text-light: #aaaaaa;
    }
    
    /* Ensure all logos turn white in dark mode */
    .logo img, 
    .footer-logo,
    .footer-logo-large,
    .hero-bg-logo {
        filter: brightness(0) invert(1) !important;
    }
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

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

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

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

/* Global Utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.ml-4 {
    margin-left: 2rem;
}

/* =========================================
   Typography & Utilities
   ========================================= */
.highlight {
    color: var(--color-secondary);
    display: inline-block;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

/* Minimalist Cards */
.glass-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(48, 122, 107, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(48, 122, 107, 0.3);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-bg);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 24px;
}

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

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    height: 65px;
    width: auto;
    transition: var(--transition-smooth);
    /* Make the logo white when on the dark green background */
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    height: 50px;
    /* Revert to original colors when scrolled onto white background */
    filter: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    /* Pushes the menu to the right */
    height: 100%;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-fast);
}

.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .btn-outline {
    color: var(--color-white);
}

.navbar:not(.scrolled) .btn-outline {
    border-color: var(--color-white);
}

.navbar:not(.scrolled) .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}


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

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

/* Megamenu Navigation */
.nav-item-dropdown {
    position: static;
    /* Vital for full-width megamenu */
    height: 100%;
    display: flex;
    align-items: center;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 40px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1000;
    border-top: 1px solid var(--color-bg-alt);
    margin-top: -1px;
    /* seamless connection */
}

/* Ensure navbar children take full height for hover hit area */
.nav-links {
    height: 100%;
    align-items: center;
}

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

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-column a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    padding: 8px 0;
    font-weight: 400;
    /* reset from main nav links */
}

.navbar:not(.scrolled) .mega-column a {
    color: var(--color-text-light);
    /* Enforce dark text inside megamenu even when transparent navbar */
}

.mega-column a::after {
    display: none;
    /* remove hover line from sublinks */
}

.mega-column a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Featured Column in Megamenu */
.mega-featured img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--color-primary-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 92, 80, 0.95) 0%, rgba(47, 123, 108, 0.8) 100%);
}

.hero-bg-logo {
    position: absolute;
    right: 5%;
    bottom: -5%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

.hero-content {
    max-width: 800px;
    color: var(--color-white);
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .subtitle {
    color: var(--color-secondary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero .title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero .description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    display: none;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-bottom: 8px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* =========================================
   Why Choose Us
   ========================================= */
.section {
    padding: 120px 0;
}

.section-subtitle {
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* =========================================
   Why Us Section (List Layout)
   ========================================= */
.why-us .section-header {
    margin-bottom: 3rem;
    text-align: left;
}

.why-us .section-title {
    margin-bottom: 2rem;
}

.orange-accent-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.orange-arrow-down {
    width: 20px;
    height: 20px;
    fill: #f97316;
    /* Orange color */
}

.orange-line {
    height: 2px;
    width: 80px;
    background-color: #f97316;
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    margin-top: 40px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 25px;
    border-left: 2px solid transparent;
    transition: var(--transition-smooth);
}

.why-us-item:nth-child(even) {
    border-left: none;
    /* Only apply border to left column optionally, or remove it */
}

.why-us-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
}

.why-us-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.5;
    color: var(--color-primary-dark);
}

/* Premium Self-Drawing SVG Animation */
.why-us-icon svg path,
.why-us-icon svg circle,
.why-us-icon svg polyline {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-item.visible .why-us-icon svg path,
.why-us-item.visible .why-us-icon svg circle,
.why-us-item.visible .why-us-icon svg polyline {
    stroke-dashoffset: 0;
}

.why-us-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
}

.why-us-content p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

/* Chips */
.chips-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
}

.chips-list li {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-weight: 500;
    transition: var(--transition-fast);
}

.chips-list li:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* =========================================
   How It Works (Timeline) Section
   ========================================= */
.timeline-section {
    background: var(--color-bg);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-step {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    margin-left: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content {
    margin-left: 40px;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    background: var(--color-white);
    flex-grow: 1;
    position: relative;
}

.step-icon {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-primary-dark);
}

.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 24px;
    }

    .timeline-step {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-left: 5px;
    }

    .timeline-content {
        margin-left: 25px;
        padding: 25px;
    }
}

/* =========================================
   Services Section (Horizontal Scroll/Grid)
   ========================================= */
.services-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--color-white);
}

.hover-lift {
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary-light);
}

.service-image {
    width: 100%;
    height: 200px;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.style-gradient-1 {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
}

.style-gradient-2 {
    background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary-light));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.service-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* =========================================
   Rewards Section
   ========================================= */
.rewards {
    background-color: var(--color-secondary-light);
}

.rewards-wrapper {
    display: flex;
    gap: 40px;
    padding: 50px;
    background-color: var(--color-white);
    align-items: center;
}

.rewards-text {
    flex: 1;
}

.rewards-image {
    flex: 1;
    min-height: 300px;
}

@media (max-width: 768px) {
    .rewards-wrapper {
        flex-direction: column;
        padding: 30px;
    }
}

/* =========================================
   Transformations Section
   ========================================= */
.transformations {
    background-color: var(--color-white);
}

.transformations-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 30px 0;
    margin-top: 30px;
}

.transformations-marquee::before,
.transformations-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.transformations-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.transformations-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

.transformations-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: transformMarquee 40s linear infinite;
}

.transformations-track:hover {
    animation-play-state: paused !important;
}

@keyframes transformMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.transformation-card {
    min-width: 420px;
    max-width: 440px;
    padding: 15px;
    background: var(--color-white);
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.image-comparison {
    display: flex;
    gap: 10px;
    height: 220px;
}

.before-image,
.after-image {
    flex: 1;
    border-radius: var(--border-radius-sm);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.before-image span,
.after-image span {
    position: absolute;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================================
   Reviews Section
   ========================================= */
.google-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 15px;
    background: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.stars {
    display: inline-flex;
    gap: 3px;
}

.stars svg {
    width: 24px;
    height: 24px;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 8px;
}

.rating-text img {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Optional: Fading edges for the marquee */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-light), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-light), transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused !important;
}

.marquee-left {
    animation: marqueeLeft 45s linear infinite;
}

.marquee-right {
    animation: marqueeRight 45s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.review-card {
    min-width: 330px;
    max-width: 350px;
    padding: 2.2rem;
    background-color: white;
    background-image: radial-gradient(#d5d5d5 1.5px, transparent 1px);
    background-size: 15px 15px;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    font-family: 'Georgia', serif;
    color: var(--color-text-dark);
    line-height: 1;
    opacity: 0.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
}

.text-dark {
    color: var(--color-text);
}

.author-info h5 {
    color: var(--color-primary-dark);
    margin-bottom: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--color-primary-dark);
    line-height: 1.6;
    margin-top: 5px;
    font-weight: 500;
    text-align: left;
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

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

.faq-question:hover {
    color: var(--color-primary-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 50px;
}

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

.footer-logo-large {
    height: 100px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
    color: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary-light);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 14px;
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact p strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.footer-contact a {
    color: var(--color-white);
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.email-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.social-links a:hover i {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =========================================
   Animations & Responsive
   ========================================= */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0px inset;
    }

    100% {
        box-shadow: 0 0 0 15px transparent inset;
    }
}

/* Scroll Fade Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    #nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar:not(.scrolled) .menu-toggle span {
        background-color: var(--color-white);
    }

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

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

    .hero-actions {
        justify-content: center;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: var(--color-primary);
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0px 12px 32px rgba(52, 78, 65, 0.4); }
    100% { transform: scale(1); box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2); }
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: white;
}

/* Mega Carousel Styles */
.mega-carousel::-webkit-scrollbar {
    display: none;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--color-white);
    border: 1px solid var(--color-lightest);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
}
.carousel-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.prev-btn { left: 0; }
.next-btn { right: 0; }
.carousel-card {
    flex: 0 0 280px;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.carousel-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.card-info {
    padding: 20px;
    text-align: center;
}
.card-info h4 {
    font-family: var(--font-serif);
    color: var(--color-primary-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.card-info p {
    font-size: 0.9rem;
    color: var(--color-dark);
}
.shop-cta-card {
    border: none;
    background: var(--color-primary-dark);
}
.shop-cta-card:hover {
    background: var(--color-primary);
}

/* Shop Color Shift based on Scroll State */
.navbar .nav-links a.color-shift {
    color: #ffffff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.navbar.scrolled .nav-links a.color-shift {
    color: #d4af37; /* Gold/Mustard */
}

/* Hero Buttons */
.btn-hero-booking {
    background: #ffffff;
    color: var(--color-primary-dark);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    border: 2px solid #ffffff;
}
.btn-hero-booking:hover {
    background: var(--color-primary-light);
    color: #ffffff;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}
.btn-hero-whatsapp {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-hero-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2); /* WhatsApp Green tint */
    border-color: #25D366;
    color: #ffffff;
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.modal-overlay.active {
    opacity: 1; pointer-events: auto;
}
.modal-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    width: 90%; max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute; top: 15px; right: 15px;
    background: none; border: none; font-size: 1.5rem;
    cursor: pointer; color: var(--color-dark);
}
.calendar-controls {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px;
}
.cal-btn {
    background: var(--color-light); border: none; padding: 5px 15px;
    border-radius: 6px; cursor: pointer; transition: background 0.2s;
}
.cal-btn:hover { background: #e0e0e0; }
.calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
    text-align: center; margin-bottom: 10px;
}
.cal-header {
    font-weight: 600; font-size: 0.8rem; color: var(--color-dark);
    padding-bottom: 5px; border-bottom: 1px solid var(--color-lightest);
}
.cal-day {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    font-size: 0.95rem; transition: all 0.2s;
    margin: auto;
}
.cal-day:not(.disabled):not(.empty):hover {
    background: rgba(10, 41, 33, 0.05); color: var(--color-primary-dark);
}
.cal-day.selected {
    background: var(--color-primary-dark); color: white; font-weight: bold;
}
.cal-day.disabled {
    color: #ccc; cursor: not-allowed; position: relative; text-decoration: line-through;
}
/* Tooltip for Store Closed */
.cal-day.disabled:hover::after {
    content: "Store Closed";
    position: absolute;
    bottom: 110%; left: 50%; transform: translateX(-50%);
    background: var(--color-white); color: var(--color-dark);
    padding: 6px 12px; border-radius: 6px; font-size: 0.75rem;
    white-space: nowrap; z-index: 10; margin-bottom: 5px;
    pointer-events: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 500; border: 1px solid var(--color-lightest);
}
.cal-day.empty { cursor: default; }

/* Carousel Sticky Headers */
.carousel-nav-headers {
    border-bottom: 1px solid var(--color-lightest);
}
.carousel-header {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s;
}
.carousel-header:hover, .carousel-header.active {
    color: var(--color-primary-dark);
}
.carousel-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; width: 0; height: 3px;
    background: var(--color-primary);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.carousel-header.active::after {
    width: 100%;
}
.mega-carousel:active {
    cursor: grabbing !important;
}