/* USA Produce - Main Stylesheet */
/* Design System */
:root {
    /* USA Produce Brand Colors - Matching order page exactly */
    --usa-blue: #1e3a5f;
    --usa-red: #dc2626;
    --primary-blue: #1e3a5f;
    --primary-red: #dc2626;
    --primary-blue-dark: #152a47;
    --primary-red-dark: #b91c1c;
    
    /* Grays */
    --pure-white: #FFFFFF;
    --warm-white: #FEFEF9;
    --light-gray: #F7F7F2;
    --medium-gray: #E1E1D6;
    --dark-gray: #2C2C2C;
    --pure-black: #0A0A0A;
    
    /* Functional Colors */
    --success-green: #10B981;
    --success-light: #D1FAE5;
    --error-red: #EF4444;
    --error-light: #FEE2E2;
    
    /* Category Icon Blue */
    --category-icon-blue: #0A69C2;
    --category-icon-bg: rgba(10, 105, 194, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--warm-white);
}

/* Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--usa-blue);
    color: var(--pure-white);
    padding: var(--space-sm);
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--success-green);
    color: var(--pure-white);
    text-align: center;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--pure-white);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Navigation - Revolutionary Design */
.navigation {
    background: var(--pure-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.navigation.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Matching order page exactly */
.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.125rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-usa {
    color: var(--usa-blue);
}

.logo-produce {
    color: var(--usa-red);
}

/* Footer logo white version */
.footer-logo .logo-usa,
.footer-logo .logo-produce {
    color: var(--pure-white);
}

/* Nav Links - Made bolder and easier to read */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--usa-red);
}

/* CTA Button - Unique Shape */
.nav-cta {
    background: var(--usa-red);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Mobile Menu - Innovative Design */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.menu-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    transition: all var(--transition-base);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    transition: all var(--transition-base);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-menu-btn.active .menu-icon {
    background: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Hero Section - Revolutionary Design */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--light-gray) 100%);
}

/* Animated Background Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--success-green) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--usa-red) 0%, transparent 50%);
    animation: float-pattern 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float-pattern {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, -20px) scale(1.05); }
    50% { transform: translate(20px, -10px) scale(0.95); }
    75% { transform: translate(-10px, 20px) scale(1.02); }
}

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

/* Hero Content - Compelling Copy */
.hero-content {
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-greeting {
    font-size: 1.125rem;
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight-blue {
    color: var(--usa-blue);
}

.hero-title .highlight-red {
    color: var(--usa-red);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Live Stats - Unique Feature */
.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fade-in 1s ease-out 0.3s both;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stat-card {
    background: var(--pure-white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--usa-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--usa-blue);
    display: block;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* CTA Buttons - Unique Design */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--usa-blue);
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--usa-blue);
    padding: 1rem 2.5rem;
    border: 2px solid var(--usa-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--usa-blue);
    transition: left var(--transition-base);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.2);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fade-in 1s ease-out 0.6s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.trust-badge i {
    color: var(--success-green);
    font-size: 1.25rem;
}

/* Hero Visual - New Creative Photo Gallery */
.hero-visual {
    position: relative;
    animation: fade-in-left 1s ease-out 0.2s both;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* New Product Gallery Design - 4 Images */
.product-gallery {
    position: relative;
    width: 100%;
    height: 600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    transform: rotate(5deg);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific gallery item positions for 4 images */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    animation: slide-in-1 1s ease-out 0.3s both;
}

.gallery-item:nth-child(2) {
    grid-row: span 2;
    animation: slide-in-2 1s ease-out 0.4s both;
}

.gallery-item:nth-child(3) {
    animation: slide-in-3 1s ease-out 0.5s both;
}

.gallery-item:nth-child(4) {
    animation: slide-in-4 1s ease-out 0.6s both;
}

@keyframes slide-in-1 {
    from {
        opacity: 0;
        transform: translateX(-50px) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slide-in-2 {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slide-in-3 {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-4 {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Experience Section - Full Width */
.experience-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.experience-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-content {
    position: relative;
    z-index: 2;
}

.section-label {
    color: var(--success-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    letter-spacing: -0.02em;
}

.experience-story {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--usa-red);
    transform-origin: center;
    transition: all var(--transition-base);
    opacity: 0;
}

.feature-item:hover::before {
    opacity: 1;
    width: 100px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--usa-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 1rem;
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.6;
}

/* Product Categories */
.categories-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--light-gray);
}

.categories-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

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

.category-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.category-icon-container {
    background-color: var(--category-icon-bg);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.category-icon-container svg {
    color: var(--category-icon-blue);
    fill: var(--category-icon-blue);
}

.category-card:hover .category-icon-container {
    transform: scale(1.1);
    background-color: rgba(10, 105, 194, 0.15);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Features Section - Unique Value Props */
.features-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.features-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--usa-blue) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--usa-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--pure-white);
}

.feature-icon-wrap svg {
    fill: var(--pure-white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* CTA Section - Refined Lava Lamp Animation */
.cta-section {
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(135deg, var(--usa-blue) 0%, var(--usa-red) 100%);
    color: var(--pure-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Refined Lava Lamp Animation - Slower and More Colorful */
.cta-pattern::before,
.cta-pattern::after,
.cta-pattern .lava-blob-1,
.cta-pattern .lava-blob-2,
.cta-pattern .lava-blob-3,
.cta-pattern .lava-blob-4,
.cta-pattern .lava-blob-5,
.cta-pattern .lava-blob-6 {
    content: '';
    position: absolute;
    border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    opacity: 0.12;
}

.cta-pattern::before {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 200, 200, 0.2));
    top: -300px;
    left: -200px;
    animation: lava-slow-1 20s ease-in-out infinite;
}

.cta-pattern::after {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(200, 200, 255, 0.15));
    bottom: -400px;
    right: -300px;
    animation: lava-slow-2 25s ease-in-out infinite;
}

.lava-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 150, 150, 0.3), rgba(255, 100, 100, 0.1));
    top: 20%;
    right: -250px;
    animation: lava-slow-3 30s ease-in-out infinite;
}

.lava-blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(150, 150, 255, 0.2), rgba(100, 100, 255, 0.1));
    bottom: -350px;
    left: 10%;
    animation: lava-slow-4 35s ease-in-out infinite;
}

.lava-blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(90deg, rgba(255, 200, 150, 0.25), rgba(255, 150, 100, 0.1));
    top: 50%;
    left: 30%;
    animation: lava-slow-5 22s ease-in-out infinite;
}

.lava-blob-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(200, 255, 200, 0.3), rgba(150, 255, 150, 0.1));
    top: 10%;
    right: 20%;
    animation: lava-slow-6 18s ease-in-out infinite;
}

.lava-blob-5 {
    width: 450px;
    height: 450px;
    background: linear-gradient(45deg, rgba(255, 255, 150, 0.2), rgba(255, 255, 100, 0.1));
    bottom: 20%;
    right: 40%;
    animation: lava-slow-7 28s ease-in-out infinite;
}

.lava-blob-6 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 150, 255, 0.25), rgba(150, 100, 255, 0.1));
    top: 30%;
    left: -100px;
    animation: lava-slow-8 32s ease-in-out infinite;
}

@keyframes lava-slow-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    }
    25% {
        transform: translate(100px, 150px) rotate(45deg) scale(1.2);
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }
    50% {
        transform: translate(-50px, 200px) rotate(90deg) scale(0.9);
        border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
    }
    75% {
        transform: translate(80px, -50px) rotate(135deg) scale(1.1);
        border-radius: 50% 50% 70% 30% / 60% 40% 30% 70%;
    }
}

@keyframes lava-slow-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
    }
    33% {
        transform: translate(-150px, -100px) rotate(-60deg) scale(1.15);
        border-radius: 40% 60% 70% 30% / 50% 50% 30% 70%;
    }
    66% {
        transform: translate(50px, -80px) rotate(-120deg) scale(0.85);
        border-radius: 70% 30% 30% 70% / 40% 60% 70% 30%;
    }
}

@keyframes lava-slow-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    50% {
        transform: translate(-100px, 50px) rotate(180deg) scale(1.1);
        border-radius: 30% 70% 60% 40% / 70% 30% 40% 60%;
    }
}

@keyframes lava-slow-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
    }
    25% {
        transform: translate(80px, -100px) rotate(-45deg) scale(0.95);
        border-radius: 60% 40% 40% 60% / 40% 60% 60% 40%;
    }
    50% {
        transform: translate(150px, 50px) rotate(-90deg) scale(1.05);
        border-radius: 70% 30% 50% 50% / 50% 50% 30% 70%;
    }
    75% {
        transform: translate(-50px, -50px) rotate(-135deg) scale(0.9);
        border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
    }
}

@keyframes lava-slow-5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    }
    50% {
        transform: translate(-80px, -60px) scale(1.2);
        border-radius: 40% 60% 70% 30% / 30% 70% 60% 40%;
    }
}

@keyframes lava-slow-6 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        opacity: 0.12;
    }
    50% {
        transform: translate(-50px, 100px) scale(1.3);
        border-radius: 70% 30% 60% 40% / 40% 60% 30% 70%;
        opacity: 0.18;
    }
}

@keyframes lava-slow-7 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
    }
    33% {
        transform: translate(60px, -80px) rotate(120deg) scale(0.9);
        border-radius: 60% 40% 65% 35% / 35% 65% 40% 60%;
    }
    66% {
        transform: translate(-40px, 60px) rotate(240deg) scale(1.1);
        border-radius: 35% 65% 45% 55% / 55% 45% 65% 35%;
    }
}

@keyframes lava-slow-8 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 55% 45% 45% 55% / 45% 55% 55% 45%;
    }
    25% {
        transform: translate(100px, 40px) rotate(-90deg) scale(1.15);
        border-radius: 45% 55% 35% 65% / 65% 35% 55% 45%;
    }
    50% {
        transform: translate(50px, -60px) rotate(-180deg) scale(0.85);
        border-radius: 65% 35% 55% 45% / 45% 55% 35% 65%;
    }
    75% {
        transform: translate(-30px, 80px) rotate(-270deg) scale(1.05);
        border-radius: 35% 65% 45% 55% / 55% 45% 65% 35%;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fade-in-up 0.8s ease-out;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.btn-white {
    background: var(--pure-white);
    color: var(--usa-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--pure-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
}

.btn-outline-white:hover {
    background: var(--pure-white);
    color: var(--usa-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Footer - Comprehensive */
.footer {
    background: var(--dark-gray);
    color: var(--pure-white);
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    text-decoration: none;
}

.footer-description {
    line-height: 1.8;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--usa-red);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--usa-red);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
}

.contact-item svg {
    color: var(--pure-white);
    width: 20px;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--usa-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
        height: 400px;
    }
    
    .product-gallery {
        height: 400px;
        gap: 0.75rem;
        transform: rotate(3deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-badge {
        font-size: 0.75rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-container svg {
        width: 24px;
        height: 24px;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 180px);
        transform: rotate(2deg);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .gallery-item:nth-child(2) {
        grid-row: span 1;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-content {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .product-gallery {
        height: 350px;
        transform: rotate(0);
    }
}

/* Accessibility Focus States */
*:focus {
    outline: 3px solid var(--usa-red);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    .navigation,
    .announcement-bar,
    .hero-visual,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}