/* Component Styles */

/* Hero Section */
/* Hero Section - Slider */
/* Hero Section - Slider */
.hero-slider-container {
    position: relative;
    min-height: 85vh;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    background-color: #FFFFFF !important;
    /* Force Pure White */
    background-image: none !important;
    margin-top: -1rem;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    transform: scale(1.05);
    background-color: #FFFFFF !important;
    /* Ensure Slide is White */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

/* Slide Content Layout */
.slide-content-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.slide-text {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
    color: var(--color-secondary);
    display: flex;
    /* Flex to push button to bottom if needed, but mainly for structure */
    flex-direction: column;
    justify-content: center;
}

.hero-slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* ALIGN BOTTOM */
    height: 650px;
    /* Fixed container height */
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .slide-image {
    opacity: 1;
    transform: translateX(0);
}

.slide-image img {
    max-height: 90%;
    /* Slight padding within container */
    width: auto;
    object-fit: contain;
    object-position: bottom;
    /* Ensure it sticks to bottom */
    filter: contrast(1.1) brightness(1.05);
}

/* Balance Visual Size - Standardize Scale */
/* Removing specific scales to uniform alignment first, can re-add if needed but keeping them similar is safer for alignment */
.slide-1 .slide-image img,
.slide-2 .slide-image img,
.slide-3 .slide-image img {
    transform: none;
    /* Reset transforms for consistency */
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    /* Lighter dots */
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* Background Shapes/Overlays */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #FFFFFF !important;
    /* Force White */
    opacity: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-secondary);
    /* Ensure visibility on white */
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-round);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
    /* Dark text on white */
    font-family: var(--font-heading);
    letter-spacing: -1px;
    min-height: 2.2em;
    /* Reserve space for 2 lines */
    display: flex;
    align-items: center;
    /* Center text locally if 1 line, or top? User wants alignment. Top is safer for varied length. */
    align-items: flex-start;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
    min-height: 4.5em;
    /* Reserve space for 3 lines to be safe */
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    /* No margin top needed if min-heights do the job, but explicit placement is good */
}

.hero-actions .btn-primary {
    background-color: var(--color-primary);
    /* Green btn on white */
    color: var(--color-white);
}

.hero-actions .btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.hero-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Product Cards */
/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.product-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    background-color: var(--color-white);
    padding: 1rem;
    position: relative;
    /* ensure proper sizing container */
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rating {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-main);
}

.product-details .price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-details .price .original-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.product-details .price .size {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.product-details .desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
    /* Push button down */
}

.product-details .desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    min-height: 3rem;
    /* Align buttons */
}

.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.trust-item {
    padding: var(--spacing-md);
    background-color: rgba(163, 177, 138, 0.1);
    /* light accent */
    border-radius: var(--radius-md);
}


/* Global Section Backgrounds - Professional Alternating Gray/White */
.healing-philosophy-section,
.featured-products {
    background-color: #F8F9FA;
    /* Unified Light Gray for Intro + Products */
}

/* Ensure continuity by removing bottom padding from healing and top from products if needed,
   but color match is critical here. */

.why-choose-section {
    background-color: #F8F9FA;
    /* Light Gray */
    padding: 5rem 0;
}

.testimonial-section {
    background-color: #FFFFFF;
    /* Clean White */
    padding: 5rem 0;
}

.main-footer {
    background-color: #E8F5E9 !important;
    /* Keep the subtle green footer for branding */
    background-image: none !important;
}

/* Benefits Section with Leaf Pattern */
.benefits-section {
    background-color: #FFFFFF;
    background-image: none !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 2rem 0;
        /* Reduced from 5rem for mobile */
    }
}

/* Apply new background to everything above Healing section */
/* Slider Sections - Plain White */
.hero-slider-container,
.hero-container-wrapper {
    background-color: #FFFFFF !important;
    background-image: none !important;
    position: relative !important;
}

/* Ensure individual slides are also white */
.hero-slide-item,
.swiper-slide,
.slide-inner {
    background-color: #FFFFFF !important;
}

/* Marquee - Leaf Pattern */
.values-marquee-container {
    background-color: #FFFFFF !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative !important;
}

/* Fix for slider overlap */
.hero-swiper {
    width: 100%;
    overflow: hidden;
}

.hero-slide-item,
.swiper-slide {
    width: 100%;
    flex-shrink: 0;
    /* Prevent flex shrinking */
    box-sizing: border-box;
    /* Ensure no absolute stacking unless active */
    position: relative;
    overflow: hidden;
    /* Prevent content bleeding */
}

/* Base Styles needed to be closed properly if I messed up above, but I think it's fine */

/* Healing Section & Products - Cream Background */
.healing-philosophy-section,
.featured-products {
    background-color: #F8F5EC !important;
    /* Soft Cream */
    background-image: none !important;
}

/* Product Cards - Lighter Cream */
/* Product Cards - Lighter Cream, Single Uniform Look */
.product-card {
    background-color: #FFFEF9 !important;
    /* Lighter Cream */
    border: 1px solid #EFE8D8;
    /* Outer border only */
}

.product-card .product-image {
    background-color: transparent !important;
    /* Seamless background */
    border: none !important;
    /* No inner box */
    box-shadow: none !important;
    /* Remove any inner shadow if present */
}

/* Remove the darkening overlay from Hero */
.hero-slider-container::before {
    display: none !important;
}



.benefits-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.benefits-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.benefits-center-image {
    flex: 0 0 450px;
    /* Increased from 300px to allow larger image */
    text-align: center;
    position: relative;
    z-index: 1;
}

.floating-product {
    max-height: 700px;
    /* Increased from 550px for massive impact */
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.benefit-item {
    text-align: right;
    /* Left column aligns to right (center) by default */
    padding: var(--spacing-md);
    background: transparent !important;
    /* Removed white background */
    border-radius: 0;
    transition: transform 0.3s ease;
    /* Animation base state */
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards;
}

.benefits-column.right .benefit-item {
    text-align: left;
    /* Right column aligns to left (center) */
}

@media (max-width: 900px) {

    .benefit-item,
    .benefits-column.right .benefit-item {
        text-align: center;
    }
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
    /* Removed shadow on hover */
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: var(--color-primary);
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefit-text-wrapper {
    background: transparent !important;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Section (Redesign) */
.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(20, 113, 48, 0.85), rgba(20, 113, 48, 0.85)), url('../images/leaf_texture_pattern_v2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.about-section::before {
    display: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 90%;
    background-color: var(--color-surface);
    /* Light green tint */
    border-radius: 200px 200px 20px 20px;
    /* Arch shape */
    z-index: -1;
}

.about-main-img {
    width: 100%;
    border-radius: 150px 150px 20px 20px;
    /* Matching Arch */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 500px;
}

.about-floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-floating-badge .year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.about-floating-badge .label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 1rem;
}

.section-subtitle {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.about-desc p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.a-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.af-icon {
    font-size: 1.2rem;
}

/* About Section Button - White on Green */
.about-section .btn-primary {
    background-color: #FFFFFF;
    color: #1B5E20;
    border: none;
    font-weight: 600;
}

.about-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1B5E20;
    transform: translateY(-2px);
}

/* Mobile Responsive For About Us */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .section-subtitle {
        padding-left: 0;
    }

    .section-subtitle::before {
        display: none;
    }

    .about-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-image-wrapper {
        padding: 0 1rem;
    }

    .about-main-img {
        height: 350px;
    }

    .about-floating-badge {
        right: 0;
        bottom: 20px;
        width: 100px;
        height: 100px;
    }

    .about-floating-badge .year {
        font-size: 1.2rem;
    }
}

/* --- Mobile Optimization & Checks --- */
@media (max-width: 768px) {

    /* Hero Section Fixes - Rectangular Mobile Card Style */
    .hero-container-wrapper,
    .hero-swiper,
    .swiper-wrapper,
    .hero-slide-item,
    .slide-inner,
    .slide-content {
        background-color: #FFFFFF !important;
        /* ABSOLUTE FORCE WHITE */
        background: #FFFFFF !important;
    }

    .slide-content-wrapper {
        flex-direction: column-reverse;
        /* Image on top */
        padding-top: 50px;
        text-align: center;
        justify-content: flex-start;
        height: auto;
        min-height: auto;
        gap: 0;
        padding-bottom: 20px;
        background-color: #FFFFFF !important;
        /* Force White */
    }

    .slide-text {
        padding: 0 var(--spacing-md) 40px;
    }

    /* Adjusted padding */
    /* --- REBUILT MOBILE HERO SLIDER: TALL & SPACIOUS --- */
    .mobile-hero-slider-container {
        margin-top: -5px;
        /* Slight negative margin to push up */
        margin-bottom: 0;
        background: #FFFFFF !important;
        width: 100%;
        overflow: hidden;
        padding-top: 0;
        /* Removed Top Padding (Gas) */
        padding-bottom: 2px;
        position: relative;
        border-radius: 0 !important;
        /* Boxy */
    }

    /* Swiper Pagination Customization */
    .swiper-pagination-bullet {
        background: #CCCCCC;
        opacity: 1;
        width: 8px;
        /* Larger dots */
        height: 8px;
        transition: all 0.3s ease;
        margin: 0 4px !important;
    }

    .swiper-pagination-bullet-active {
        background: #1B8941 !important;
        width: 24px;
        /* Longer active dot */
        border-radius: 4px;
    }

    .mobile-hero-slide {
        background: #FFFFFF !important;
        border-radius: 0 !important;
        /* Ensure boxy corners */
        display: flex !important;
        flex-direction: row-reverse;
        /* Image Right */
        width: 100%;
        align-items: center;
        justify-content: space-between;
        min-height: 340px;
        /* Reduced from 400px */
        padding: 10px 5px;
        /* Reduced horizontal padding */
    }

    /* mobile-slide-image: Right Side (50%) */
    .mobile-slide-image {
        width: 50%;
        height: 100%;
        min-height: 320px;
        /* Increased height area */
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        /* Allow pattern to show */
        padding: 0;
        transform: translateY(0);
        /* Reset shift */
    }

    .mobile-slide-image img {
        max-height: 290px;
        /* Reduced from 320px to prevent bottom touch */
        max-width: 160%;
        width: auto;
        object-fit: contain;
        border-radius: 0 !important;
        /* Boxy Image */
    }

    /* mobile-slide-content: Left Side (50%) */
    .mobile-slide-content {
        width: 50%;
        background: transparent !important;
        /* Allow pattern to show */
        text-align: left;
        padding: 0 0 0 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: 100%;
    }

    .mobile-badge {
        display: inline-block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 800;
        padding: 6px 14px;
        border-radius: 4px;
        margin-bottom: 1rem;
        /* Increased from 0.6rem */
        white-space: nowrap;
    }

    .mobile-title {
        font-size: 1.7rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        /* Increased from 0.6rem */
        text-align: left;
        width: 100%;
        color: #1A1A1A;
    }

    .mobile-desc {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        /* Increased from 0.8rem */
        color: #555555;
        text-align: left;
        line-height: 1.4;
        width: 100%;
        display: block;
        -webkit-line-clamp: unset;
    }

    .mobile-slide-content .btn {
        margin-top: 15px;
        /* Increased from 10px */
        padding: 10px 28px;
        font-size: 1rem;
        border-radius: 6px;
        font-weight: 700;
    }
}


/* Benefits Section Fixes: Force Single Column */
.benefits-layout {
    z-index: 2;
    margin-top: 0;
    position: relative;
    background: #FFFFFF !important;
    /* Force White */
    min-height: 250px;
    /* Fixed height for text area to align button */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.slide-image {
    /* STRICT RECTANGLE CONTAINER */
    height: 380px;
    /* Fixed height for consistency */
    width: 100%;
    margin-bottom: 0;
    padding: 20px 20px 0;
    background: #FFFFFF !important;
    /* Force White */
    border-radius: 0;
    border: none;
    display: flex;
    align-items: flex-end;
    /* Bottom Align */
    justify-content: center;
    margin-top: 0;
}

.slide-image img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom;
}

/* Specific fix for Ayurvein (Slide 1) & others on mobile */
.slide-image img {
    transform: none;
    /* Reset transforms */
}

.hero-title {
    font-size: 2.2rem;
    min-height: 3.5rem;
    /* Reserve space for 2 lines */
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    display: flex;
    align-items: flex-start;
    /* Aligns text to top */
    justify-content: center;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    min-height: auto;
    color: var(--color-text-light);
}

/* Ensure Button is visible and spaced */
.slide-text .btn {
    margin-top: auto;
}


/* Benefits Section Fixes: Force Single Column */
.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Order: Image First, then Benefits */
.benefits-center-image {
    order: -1;
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 0;
}

.floating-product {
    max-height: 350px;
    /* Smaller central image on mobile */
}

.benefits-column {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.benefits-column.left,
.benefits-column.right {
    text-align: center;
    /* Center align text */
}

.benefits-column.right .benefit-item {
    text-align: center;
    /* Override specific right-align */
}

.benefit-item {
    margin-bottom: var(--spacing-md);
    /* Remove horizontal slide animation on mobile if it causes layout shift, 
           or keep it if overflow-x is hidden on body */
}

/* Trust Strip Fixes */
.trust-strip .container {
    flex-direction: column;
    /* Stack stats vertical for safety or verify grid */
    gap: 1.5rem !important;
}

.trust-stat {
    width: 100%;
    justify-content: center;
}

/* General Safety */
body,
html {
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}
}

/* Why Choose Us (Feature Box) */
.why-choose-section {
    background-color: #F8F9F5;
    /* Light background to distinguish */
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-box {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-md);
}

.feature-box h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--color-text-light);
}

.trust-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Backgrounds */
.bg-light {
    background-color: #F8F9F5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: var(--spacing-lg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto var(--spacing-lg);
    }
}

/* --- Scroll Animations --- */

/* Base class for elements to animate */
.animate-on-scroll {
    opacity: 1;
    /* Was 0 */
    transform: translateY(0);
    /* Was 30px */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* State when element is in viewport */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Scale Up Animation (e.g. for badges/icons) */
.animate-scale {
    opacity: 1;
    /* Was 0 */
    transform: scale(1);
    /* Was 0.8 */
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Directional Slides (Converging to Center) */
.animate-slide-right {
    opacity: 1;
    /* Was 0 */
    transform: translateX(0);
    /* Was -50px */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 1;
    /* Was 0 */
    transform: translateX(0);
    /* Was 50px */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}