/* =============================================
   AHA FOOD — Premium Frozen Seafood
   Design System & Styles
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    --navy: #002147;
    --navy-light: #003366;
    --navy-dark: #001a38;
    --navy-900: #00111f;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gold: #D4AF37;
    --gold-light: #E8CB6B;
    --gold-dark: #B8941E;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 33, 71, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 11px;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 33, 71, 0.7) 0%,
        rgba(0, 17, 31, 0.85) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-xl);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .text-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce-down 2s ease infinite;
}

.scroll-indicator svg {
    width: 18px;
    height: 18px;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =============================================
   VALUES
   ============================================= */
.values {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    color: var(--gold);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section-header {
    margin-bottom: 56px;
}

.section-header.center { text-align: center; }

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--gold-glow);
    border-radius: var(--radius-xl);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   OUR STORY
   ============================================= */
.story {
    padding: 100px 0;
    background: var(--off-white);
}

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

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

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-block {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--gold-glow);
    transition: var(--transition);
}

.story-block:hover {
    border-left-color: var(--gold);
}

.story-year {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-glow);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.story-block h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.story-block p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
    padding: 100px 0;
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border: 2px solid var(--gold-glow);
    background: linear-gradient(135deg, rgba(212,175,55,0.02), var(--white));
}

.product-card.featured:hover {
    border-color: var(--gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card.featured .product-image {
    aspect-ratio: auto;
    min-height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
}

.product-badge.kid-badge {
    background: #FF6B9D;
    color: var(--white);
}

.product-badge.premium-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

.product-highlights svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

/* Bandeng Process Steps */
.product-process {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.product-process h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.product-process h4 svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.process-steps {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--gray-700);
    font-weight: 500;
}

.step-num {
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* =============================================
   RESELLER AD BANNER
   ============================================= */
.reseller-ad {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}

.reseller-ad-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.reseller-ad-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.reseller-ad-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.reseller-ad-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.reseller-ad-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-xl);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0%, 100% { border-color: rgba(212, 175, 55, 0.3); }
    50% { border-color: rgba(212, 175, 55, 0.7); box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
}

.reseller-ad-badge svg {
    width: 16px;
    height: 16px;
}

.reseller-ad-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reseller-ad-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reseller-ad-desc strong {
    color: var(--gold);
    font-weight: 700;
}

/* Perks Grid */
.reseller-ad-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition);
}

.perk-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.perk-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-sm);
    color: var(--gold);
    flex-shrink: 0;
}

.perk-icon svg {
    width: 22px;
    height: 22px;
}

.perk-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.perk-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.perk-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* CTA */
.reseller-ad-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-reseller-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.25);
    text-decoration: none;
}

.btn-reseller-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-reseller-cta svg {
    width: 22px;
    height: 22px;
}

.reseller-ad-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.reseller-ad-note svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    color: var(--gold-dark);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.contact-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold-dark);
}

/* Distribution Map */
.distribution-map {
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.distribution-map h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--navy);
}

.map-areas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.map-area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.map-area:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    color: var(--gold-dark);
}

.map-area.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
}

.map-area svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy-900);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* =============================================
   BACK TO TOP & WA FLOAT
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* =============================================
   RESPONSIVE — TABLET (1024px)
   ============================================= */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .reseller-ad {
        padding: 80px 0;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (768px)
   ============================================= */
@media (max-width: 768px) {
    /* Reduce section padding across the board */
    .story,
    .products,
    .contact {
        padding: 60px 0;
    }

    .values {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Navigation — slide-out drawer */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 1rem;
    }

    /* Hero */
    .hero-content {
        padding: 100px 16px 50px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-divider {
        display: none;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .value-card {
        padding: 24px 16px;
    }

    .value-card h3 {
        font-size: 0.92rem;
    }

    .value-card p {
        font-size: 0.8rem;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .value-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Story */
    .story-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-image img {
        height: 260px;
    }

    .story-block h3 {
        font-size: 1.1rem;
    }

    .story-block p {
        font-size: 0.88rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.15rem;
    }

    .product-desc {
        font-size: 0.85rem;
    }

    /* Reseller Ad */
    .reseller-ad {
        padding: 60px 0;
    }

    .reseller-ad-title {
        font-size: 1.8rem;
    }

    .reseller-ad-desc {
        font-size: 0.92rem;
        margin-bottom: 32px;
    }

    .reseller-ad-perks {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 36px;
    }

    .perk-item {
        padding: 14px 16px;
    }

    .btn-reseller-cta {
        padding: 16px 32px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .distribution-map {
        padding: 28px 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    /* Process steps */
    .process-steps {
        flex-direction: column;
    }

    /* Floating elements */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
        right: 16px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 90px 16px 40px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value-card {
        padding: 20px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .value-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .story-image img {
        height: 200px;
    }

    .story-block {
        padding-left: 16px;
    }

    .story-block h3 {
        font-size: 1rem;
    }

    .story-block p {
        font-size: 0.82rem;
    }

    .reseller-ad-title {
        font-size: 1.5rem;
    }

    .reseller-ad-desc {
        font-size: 0.85rem;
    }

    .map-areas {
        flex-direction: column;
        align-items: stretch;
    }

    .map-area {
        justify-content: center;
    }

    .section-tag {
        font-size: 0.72rem;
        letter-spacing: 2px;
        padding: 5px 12px;
    }

    .contact-card {
        padding: 24px 16px;
    }

    .product-image {
        aspect-ratio: 16/10;
    }
}

