/* Tsaravary Madagascar - Modern Professional Redesign */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Color System */
    --color-primary: #052214;       /* Deep Obsidian Green */
    --color-primary-light: #0d4429; /* Refined Dark Emerald */
    --color-accent: #10b981;        /* Vibrant Emerald */
    --color-accent-glow: rgba(16, 185, 129, 0.15);
    --color-gold: #d97706;          /* Harvest Amber Gold */
    --color-gold-glow: rgba(217, 119, 6, 0.15);
    
    /* Neutrals */
    --color-bg: #fbfbf9;            /* Pure Linen */
    --color-card: #f4f4f0;          /* Soft Clay Neutral */
    --color-border: #e2e2d5;        /* Thin Mud Border */
    --color-text: #191c1a;          /* Charcoal Black */
    --color-text-muted: #535f59;    /* Forest Slate */
    
    /* Shadows & Effects */
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-flat-glow: 0 10px 30px -10px rgba(13, 68, 41, 0.08);
    --shadow-focus: 0 20px 40px -15px rgba(13, 68, 41, 0.15);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    width: 0%;
    z-index: 1000;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

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

/* Header Capsule Design */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    padding: 1.5rem 0;
    transition: var(--transition-premium);
}

header.scrolled {
    padding: 0.75rem 0;
}

.header-capsule {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(251, 251, 249, 0.75);
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-premium);
}

header.scrolled .header-capsule {
    background: rgba(251, 251, 249, 0.85);
    border-color: var(--color-border);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(5, 34, 20, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: calc(100% - 3rem);
}

.brand-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.brand-logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-links a:hover, .nav-links li.active a {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-premium);
    margin-top: 2px;
}

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

.nav-cta {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--color-primary);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-premium);
}

/* Asymmetric Hero Section */
.hero {
    min-height: 95vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: #f2f2eb;
    z-index: 1;
    border-bottom-left-radius: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eaeae0;
    color: var(--color-primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

.hero-tag span {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hero-content h2 span {
    color: var(--color-gold);
}

.hero-desc {
    margin-bottom: 2.5rem;
    max-width: 540px;
    text-align: left;
}

.hero-desc p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.hero-desc p:last-child {
    margin-bottom: 0;
}

.hero-desc .hero-lead {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
}

.hero-desc .hero-outro {
    font-weight: 600;
    color: var(--color-primary-light);
}

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

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px -10px rgba(5, 34, 20, 0.3);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -15px rgba(5, 34, 20, 0.4);
}

.btn-secondary {
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-weight: 600;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    background: transparent;
}

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

/* Styled Hero Image Card */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-img-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-focus);
    position: relative;
}

.hero-img-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Floating overlay details on Hero */
.hero-overlay-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: rgba(251, 251, 249, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-focus);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 250px;
    --x-translate: 0px;
    transform: translate(var(--x-translate), 0px);
    animation: float 6s ease-in-out infinite;
}

.hero-overlay-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-accent-glow);
    color: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-overlay-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-overlay-details p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Minimalist Stats Panel */
.stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-flat-glow);
    border: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding: 0 2rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-num span {
    color: var(--color-accent);
}

.stat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Section Layouts */
.section-padding {
    padding: 5.5rem 2rem;
}

.sustainability {
    padding-top: 2rem;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.section-tag {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 2.75rem;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Capabilities (Modern Grid Cards) */
.capabilities {
    background-color: var(--color-card);
}

.capabilities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cap-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    opacity: 0;
    transition: var(--transition-premium);
}

.cap-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-focus);
    border-color: transparent;
}

.cap-card:hover::before {
    opacity: 1;
}

.cap-icon {
    width: 60px;
    height: 60px;
    background-color: #fbfbf9;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-premium);
}

.cap-card:hover .cap-icon {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.cap-icon svg {
    width: 24px;
    height: 24px;
}

.cap-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cap-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Premium Products Alternating Grid */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.product-img-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-focus);
}

.product-img-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: var(--transition-premium);
}

.product-img-wrapper:hover img {
    transform: scale(1.05);
}

.product-label {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    z-index: 10;
}

.product-info h4 {
    font-size: 2.75rem;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.product-info p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.variety-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.variety-item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.variety-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.variety-icon {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.variety-details h5 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.variety-details p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Sustainability Elegant Card Banner */
.sustainability-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border-radius: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    box-shadow: var(--shadow-focus);
    position: relative;
    overflow: hidden;
}

.sustainability-banner::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    z-index: 1;
}

.sus-content {
    position: relative;
    z-index: 5;
}

.sus-content h4 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sus-content h4 span {
    color: var(--color-accent);
}

.sus-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.sus-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sus-bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.sus-check {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.sus-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    height: 380px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.traditions-divider-img {
    padding: 0 2rem 5.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.divider-img-container {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-focus);
    height: 450px;
}

.divider-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Us Layout Elements */
.about-hero {
    min-height: 45vh;
    padding-top: 150px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(5, 34, 20, 0.9), rgba(5, 34, 20, 0.85)), url('images/hero.png') no-repeat center center/cover;
    color: #fff;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-hero-container h2 {
    font-size: 3.5rem;
    font-weight: 900;
}

.about-intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-intro-grid.reverse-row {
    grid-template-columns: 0.95fr 1.05fr;
}

.about-intro-grid.reverse-row .about-text {
    grid-column: 2;
}

.about-intro-grid.reverse-row .about-img-wrapper {
    grid-column: 1;
    grid-row: 1;
}

.about-text h4 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.75rem;
    line-height: 1.25;
    font-weight: 800;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.about-img-wrapper {
    position: relative;
    border-radius: 32px;
    box-shadow: var(--shadow-focus);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Traditional Paddies Redesign */
.tradition-section {
    background-color: var(--color-card);
    padding-top: 2rem;
}

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

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

.tradition-card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    transition: var(--transition-premium);
}

.tradition-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-flat-glow);
}

.tradition-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.tradition-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Premium Footer */
footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.75);
    padding: 5.5rem 2rem 3rem 2rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 5rem;
}

.footer-brand h4 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.footer-brand h4 span {
    color: var(--color-accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-contact strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Keyframe Animations */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Grid & Layouts */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg);
        padding: 2.5rem 2rem;
        box-shadow: 0 15px 30px rgba(5, 34, 20, 0.06);
        border-bottom: 1px solid var(--color-border);
        gap: 1.5rem;
        align-items: flex-start;
        z-index: 100;
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    header.scrolled .header-capsule {
        border-radius: 0;
        width: 100%;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-img-card img {
        height: 380px;
    }
    
    .hero-overlay-card {
        bottom: -15px;
        left: 50%;
        --x-translate: -50%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 1.5rem;
        padding-left: 0;
        padding-right: 0;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .capabilities-grid, .tradition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-container, .about-intro-grid, .sustainability-banner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-intro-grid.reverse-row .about-text {
        grid-column: auto;
    }
    
    .about-intro-grid.reverse-row .about-img-wrapper {
        grid-column: auto;
        grid-row: auto;
        order: -1;
    }
    
    .sustainability-banner {
        padding: 4rem 3rem;
        gap: 3rem;
    }
    
    .sus-image-wrapper {
        height: 300px;
    }
    
    .section-padding {
        padding: 2.5rem 1.5rem;
    }
    
    .sustainability {
        padding-top: 1rem;
    }
    
    .tradition-section {
        padding-top: 1rem;
    }
    
    .traditions-divider-img {
        padding: 0 1.5rem 2.5rem 1.5rem;
    }
    
    .divider-img-container {
        height: 280px;
        border-radius: 20px;
    }
    
    footer {
        padding: 3.5rem 1.5rem 2.5rem 1.5rem;
    }
    
    .product-img-wrapper img {
        height: 380px;
    }
    
    .about-img-wrapper img {
        height: 350px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        padding: 2rem 1.5rem;
    }
    .stat-num {
        font-size: 2.75rem;
    }
}

@media (max-width: 576px) {
    .capabilities-grid, .tradition-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        text-align: center;
    }
    
    .sustainability-banner {
        padding: 3rem 1.5rem;
    }
    
    .sus-image-wrapper {
        height: 240px;
    }
    
    .section-padding {
        padding: 2rem 1.25rem;
    }
    
    .product-img-wrapper img {
        height: 280px;
    }
    
    .about-img-wrapper img {
        height: 260px;
    }
    
    footer {
        padding: 3rem 1.25rem 2rem 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Scroll Reveal Motion Effects */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay Utilities */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Floating Overlay Keyframes */
@keyframes float {
    0% {
        transform: translate(var(--x-translate), 0px);
    }
    50% {
        transform: translate(var(--x-translate), -8px);
    }
    100% {
        transform: translate(var(--x-translate), 0px);
    }
}
