/* ============================================
   KARAI BAZAAR - Premium Design System
   ============================================ */

:root {
    --navy: #082D5B;
    --navy-dark: #061E3D;
    --navy-light: #0A3D7A;
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --gold-dark: #B8962E;
    --green: #2E7D32;
    --green-light: #4CAF50;
    --red: #C62828;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --white: #FFFFFF;
    --off-white: #FFFCF8;
    --cream: #FAF8F5;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: var(--text-base); line-height: 1.6; color: var(--gray-700); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 700; line-height: 1.2; color: var(--navy); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::after { left: 100%; }
.btn:hover { transform: translateY(-3px); }
.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(8,45,91,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 25px rgba(8,45,91,0.4); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.btn-gold:hover { box-shadow: 0 8px 25px rgba(212,175,55,0.4); }
.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1DA851 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp svg {
    flex-shrink: 0;
}
.btn-whatsapp:hover { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

.btn-playstore {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.btn-playstore svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.btn-playstore:hover {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(8,45,91,0.3);
}
.btn-playstore:hover svg {
    fill: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-sm { padding: 10px 18px; font-size: var(--text-xs); }
.btn-lg { padding: 16px 36px; font-size: var(--text-base); border-radius: var(--radius-xl); }
.btn-full { width: 100%; }

/* ============================================
   TOP BAR
   ============================================ */
/* ============================================
   TOP INFORMATION BAR
   ============================================ */
.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 7px 0;
    font-size: 12px;
    letter-spacing: 0.2px;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.top-bar-item:hover { color: var(--gold-light); }
.top-bar-item svg { opacity: 0.6; flex-shrink: 0; }
.top-bar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.15);
    margin: 0 14px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-social {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all 0.25s;
}
.top-social:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================
   MAIN NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
    max-width: 160px;
    overflow: hidden;
}
.logo-img {
    width: 135px;
    height: auto;
    max-height: 86px;
    object-fit: contain;
    transition: opacity 0.2s;
}
.navbar-logo:hover .logo-img { opacity: 0.85; }

/* Center Menu */
.navbar-menu {
    display: flex;
    align-items: center;
}
.navbar-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.navbar-link {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 6px;
    transition: color 0.25s;
    position: relative;
    white-space: nowrap;
}
.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.navbar-link:hover { color: var(--navy); }
.navbar-link:hover::after { transform: scaleX(1); }
.navbar-link.active {
    color: var(--navy);
    font-weight: 600;
}
.navbar-link.active::after {
    transform: scaleX(1);
    background: var(--gold);
}

/* Right Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

/* Nav Buttons */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    border: none;
    text-decoration: none;
    line-height: 1;
}
.nav-btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-btn-whatsapp svg {
    flex-shrink: 0;
}
.nav-btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}
.nav-btn-app {
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-btn-app svg {
    flex-shrink: 0;
}
.nav-btn-app:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8,45,91,0.3);
}

/* Hamburger Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    overflow-y: auto;
    padding: 0 24px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
    display: block;
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 12px;
}
.mobile-logo img {
    width: 125px;
    height: auto;
}
.mobile-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.2s;
}
.mobile-close:hover {
    background: var(--gray-200);
    color: var(--navy);
}
.mobile-nav-list {
    margin-bottom: 24px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--navy);
    font-weight: 600;
}
.mobile-nav-link.active::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
    margin-left: 10px;
    border-radius: 1px;
}
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.mobile-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 600px;
}
.carousel-slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.carousel-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.carousel-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: var(--space-10) var(--space-8);
    margin-left: 8%;
    background: transparent;
    border-radius: 0;
    border: 0;

}
.carousel-badge, .carousel-title, .carousel-desc {
    color: var(--navy);
    text-shadow: none;
}
.carousel-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}
.carousel-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212,175,55,0.25);
    color: var(--gold-light);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.4);
    margin-bottom: var(--space-6);
    letter-spacing: 0.5px;
}
.carousel-title {
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
	
}
.carousel-title span { color: var(--gold); }
.carousel-desc {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-8);
    max-width: 520px;
    line-height: 1.7;
}
.carousel-buttons { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 32px; }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.carousel-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.carousel-nav svg { width: 24px; height: 24px; flex-shrink: 0; }
.carousel-prev { left: 32px; }
.carousel-next { right: 32px; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--space-20) 0; position: relative; }
.section + .section { border-top: 1px solid var(--gray-100); }
.bg-cream + .bg-cream { border-top-color: transparent; }
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-title { font-size: var(--text-4xl); font-weight: 800; color: var(--navy); margin-bottom: var(--space-4); }
.section-subtitle { font-size: var(--text-lg); color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
    position: relative;
    padding-bottom: var(--space-2);
}
.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }

/* ============================================
   BRAND INTRO (Alternating Layout)
   ============================================ */
.brand-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
.brand-grid.reverse { direction: rtl; }
.brand-grid.reverse > * { direction: ltr; }
.brand-content h2 { font-size: var(--text-4xl); margin-bottom: var(--space-6); }
.brand-content p { font-size: var(--text-lg); color: var(--gray-500); line-height: 1.8; margin-bottom: var(--space-6); }
.brand-image { position: relative; border-radius: var(--radius-2xl); overflow: visible; }
.brand-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid var(--gold);
    border-radius: calc(var(--radius-2xl) + 4px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.brand-image:hover::before { opacity: 1; }
.brand-image::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px dashed rgba(212,175,55,0.3);
    border-radius: var(--radius-xl);
    z-index: 3;
    pointer-events: none;
}
.brand-image img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-2xl); position: relative; z-index: 1; }
.brand-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(transparent, rgba(8,45,91,0.9));
}
.brand-image-overlay h3 { color: var(--white); font-size: var(--text-xl); }
.brand-image-overlay p { color: rgba(255,255,255,0.8); font-size: var(--text-sm); }

.brand-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.brand-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.brand-feature:hover { background: var(--gray-50); transform: translateX(4px); }
.brand-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.brand-feature span { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    height: 350px;
    cursor: pointer;
}
.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(8,45,91,0.9));
}
.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8);
    z-index: 2;
}
.category-card-content h3 { color: var(--white); font-size: var(--text-2xl); margin-bottom: var(--space-2); }
.category-card-content p { color: rgba(255,255,255,0.8); font-size: var(--text-sm); margin-bottom: var(--space-4); }

/* ============================================
   PRODUCTS
   ============================================ */
.products-scroll {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-4) 0;
    scrollbar-width: none;
}
.products-scroll::-webkit-scrollbar { display: none; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    scroll-snap-align: start;
    flex: 0 0 300px;
}
.product-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: 4px 12px;
    background: var(--gold);
    color: var(--navy);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-content { padding: var(--space-5); }
.product-category {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}
.product-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.product-description { font-size: var(--text-sm); color: var(--gray-500); margin-bottom: var(--space-4); line-height: 1.5; }
.product-meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: var(--space-4); }
.price-current { font-size: var(--text-xl); font-weight: 800; color: var(--navy); }
.price-old { font-size: var(--text-sm); color: var(--gray-400); text-decoration: line-through; margin-left: var(--space-2); }
.product-quantity { font-size: var(--text-xs); color: var(--gray-400); }
.product-actions { display: flex; gap: var(--space-2); }
.product-actions .btn { flex: 1; }

/* ============================================
   OFFER ZONE
   ============================================ */
/* ============================================
   OFFER ZONE - Premium Card Design
   ============================================ */
.offer-zone {
    background: linear-gradient(160deg, #0a1628 0%, var(--navy) 40%, #0d2247 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
    padding: var(--space-20) 0;
}
.offer-glow-1 {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.offer-glow-2 {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.offer-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.offer-card-left {
    padding: var(--space-12) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.offer-badge-wrapper {
    margin-bottom: var(--space-5);
}
.offer-badge-discount {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.offer-badge-number { font-size: var(--text-xl); font-weight: 800; color: var(--white); line-height: 1; }
.offer-badge-text { font-size: var(--text-xs); font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 1px; }
.offer-card-content { }
.offer-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212,175,55,0.15);
    color: var(--gold-light);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.3);
    margin-bottom: var(--space-5);
    letter-spacing: 0.5px;
}
.offer-heading {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}
.offer-product-name {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.offer-fruit-icon { font-size: var(--text-2xl); }
.offer-desc {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-8);
    letter-spacing: 1px;
}
.offer-pricing-row {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}
.offer-price-old, .offer-price-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    min-width: 110px;
}
.offer-price-old {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}
.offer-price-new {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}
.offer-price-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-1);
}
.offer-price-new .offer-price-label { color: rgba(255,255,255,0.85); }
.offer-price-val {
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1;
}
.offer-price-old .offer-price-val {
    text-decoration: line-through;
    opacity: 0.5;
    color: rgba(255,255,255,0.5);
}
.offer-price-new .offer-price-val { color: var(--white); }
.offer-price-arrow { color: rgba(255,255,255,0.3); flex-shrink: 0; }
.offer-saved {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    background: rgba(231,76,60,0.15);
    border: 1px solid rgba(231,76,60,0.3);
    border-radius: var(--radius-md);
    color: #ff6b6b;
    font-size: var(--text-xs);
    font-weight: 600;
}
.offer-saved strong { font-size: var(--text-lg); font-weight: 800; }
.offer-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.offer-card-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    padding: var(--space-10);
}
.offer-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}
.offer-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-img-wrapper:hover img { transform: scale(1.03); }
.offer-img-tag {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}
.offer-tag-price { font-size: var(--text-xl); font-weight: 800; line-height: 1; }
.offer-tag-unit { font-size: var(--text-xs); font-weight: 600; opacity: 0.8; }

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}
.process-step {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 55px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--gray-300);
}
.process-step:last-child::after { display: none; }
.process-number {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    font-size: var(--text-2xl);
    font-weight: 800;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.process-step:hover .process-number { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.process-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.process-desc { font-size: var(--text-sm); color: var(--gray-500); }

/* ============================================
   STATS
   ============================================ */
/* ============================================
   STATS - Premium Design
   ============================================ */
.stats {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 60%, #0d2247 100%);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}
.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
}
.stats-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}
.stats-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212,175,55,0.15);
    color: var(--gold-light);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.3);
    margin-bottom: var(--space-4);
}
.stats-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-3);
}
.stats-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}
.stat-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.2);
}
.stat-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.12);
    color: var(--gold);
    border-radius: var(--radius-lg);
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: inline;
}
.stat-plus {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gold);
    display: inline;
    margin-left: 2px;
}
.stat-label {
    font-size: var(--text-base);
    color: var(--white);
    font-weight: 600;
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}
.stat-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}
.why-card {
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    border-radius: var(--radius-lg);
    font-size: var(--text-2xl);
    transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); }
.why-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.why-card p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.6; }

/* ============================================
   DELIVERY
   ============================================ */
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}
.delivery-check-form {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}
.delivery-check-form h3 { font-size: var(--text-xl); margin-bottom: var(--space-6); }
.input-group { display: flex; gap: var(--space-3); margin-bottom: var(--space-4); }
.input-group input {
    flex: 1;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: var(--text-base);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    outline: none;
    transition: border-color var(--transition);
}
.input-group input:focus { border-color: var(--gold); }

/* ============================================
   APP PROMO
   ============================================ */
.app-promo { overflow: hidden; }
.app-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
.app-promo-content h2 { font-size: var(--text-4xl); margin-bottom: var(--space-6); }
.app-promo-content p { font-size: var(--text-lg); color: var(--gray-500); margin-bottom: var(--space-8); line-height: 1.7; }
.app-buttons { display: flex; gap: var(--space-4); }
.app-mockup img { max-width: 100%; height: auto; max-height: 500px; object-fit: contain; }

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================
   DELIVERY HOME SECTION (Dark Navy)
   ============================================ */
.delivery-home-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}
.delivery-home-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.delivery-home-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin-top: var(--space-8);
}
.delivery-home-form .input-group {
    display: flex;
    gap: var(--space-3);
}
.delivery-home-form .input-group input {
    flex: 1;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: var(--text-base);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
}
.delivery-home-form .input-group input::placeholder {
    color: rgba(255,255,255,0.5);
}
.delivery-home-form .input-group input:focus {
    border-color: var(--gold);
}

/* ============================================
   APP DOWNLOAD SECTION (Cream with Image)
   ============================================ */
.app-download-section {
    padding: var(--space-20) 0;
    background: var(--cream);
    overflow: hidden;
}
.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
.app-download-content h2 {
    font-size: var(--text-4xl);
    color: var(--navy);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}
.app-download-content p {
    font-size: var(--text-lg);
    color: var(--gray-500);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}
.app-download-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.app-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--gray-700);
}
.app-feature svg {
    color: var(--green);
    flex-shrink: 0;
}
.app-download-mockup {
    position: relative;
}
.app-download-mockup img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.footer-main { padding: var(--space-20) 0 var(--space-12); position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-12);
}
.footer-logo-img { height: 60px; width: auto; margin-bottom: var(--space-5); object-fit: contain; }
.footer-tagline { font-family: 'Playfair Display', Georgia, serif; font-size: var(--text-lg); color: var(--gold); font-weight: 700; margin-bottom: var(--space-3); font-style: italic; letter-spacing: 0.5px; }
.footer-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: var(--space-6); }
.footer-social { display: flex; gap: var(--space-3); }
.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.footer-title { font-size: var(--text-base); font-weight: 700; color: var(--white); margin-bottom: var(--space-6); position: relative; padding-bottom: var(--space-3); }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); border-radius: 1px; }
.footer-list { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link { font-size: var(--text-sm); color: rgba(255,255,255,0.6); transition: all var(--transition); display: inline-block; }
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-app { margin-top: var(--space-6); }
.footer-app-text { font-size: var(--text-sm); color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); }
.play-store-btn { display: inline-block; transition: transform var(--transition); }
.play-store-btn:hover { transform: translateY(-2px); }
.play-store-img { height: 44px; width: auto; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-6) 0;
    background: rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; }
.copyright { font-size: var(--text-sm); color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: var(--space-6); }
.legal-link { font-size: var(--text-sm); color: rgba(255,255,255,0.5); transition: color var(--transition); }
.legal-link:hover { color: var(--gold); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 900;
    transition: all var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================
   BREADCRUMB HERO
   ============================================ */
.breadcrumb-hero {
    padding: var(--space-20) 0 var(--space-16);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}
.breadcrumb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 45, 91, 0.6) 0%, rgba(8, 45, 91, 0.3) 100%);
    z-index: 1;
}
.breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}
.breadcrumb {
    margin-bottom: var(--space-4);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-item {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: var(--white);
}
.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-title {
    font-size: var(--text-4xl);
    color: var(--white);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-playfair);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { padding: var(--space-20) 0; background: var(--cream); text-align: center; }
.about-hero h1 { font-size: var(--text-5xl); margin-bottom: var(--space-4); }
.about-hero p { font-size: var(--text-xl); color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.about-section { padding: var(--space-20) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-content h2 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.about-content p { font-size: var(--text-lg); color: var(--gray-500); line-height: 1.8; margin-bottom: var(--space-6); }
.about-image img { width: 100%; border-radius: var(--radius-2xl); object-fit: cover; aspect-ratio: 3/3; }
.focus-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.focus-card { padding: var(--space-8); background: var(--cream); border-radius: var(--radius-xl); border-left: 4px solid var(--gold); transition: all var(--transition); }
.focus-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.focus-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.focus-card p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.6; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-hero { padding: var(--space-16) 0; background: var(--cream); text-align: center; }
.products-hero h1 { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.products-hero p { font-size: var(--text-lg); color: var(--gray-500); max-width: 500px; margin: 0 auto; }
.filter-bar { display: flex; justify-content: center; gap: var(--space-3); padding: var(--space-8) 0; }
.filter-btn {
    padding: 10px 24px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    background: var(--white);
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================
   DELIVERY AREAS PAGE
   ============================================ */
.delivery-hero { padding: var(--space-20) 0; background: var(--cream); text-align: center; }
.delivery-hero h1 { font-size: var(--text-5xl); margin-bottom: var(--space-4); }
.delivery-hero p { font-size: var(--text-xl); color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.delivery-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); padding: var(--space-16) 0; }
.delivery-step { text-align: center; padding: var(--space-6); }
.delivery-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-size: var(--text-lg);
    font-weight: 800;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-4);
}
.delivery-step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.delivery-step p { font-size: var(--text-sm); color: var(--gray-500); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero { padding: var(--space-20) 0; background: var(--cream); text-align: center; }
.contact-hero h1 { font-size: var(--text-5xl); margin-bottom: var(--space-4); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); padding: var(--space-16) 0; }
.contact-info-cards { display: grid; gap: var(--space-4); }
.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}
.contact-card h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }
.contact-card p { font-size: var(--text-sm); color: var(--gray-500); }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-card a:hover { color: var(--gold); }
.contact-form { background: var(--white); padding: var(--space-8); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: var(--space-5); }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy); margin-bottom: var(--space-2); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font);
    font-size: var(--text-base);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: var(--space-3); }
.form-actions .btn { flex: 1; }

/* ============================================
   THANK YOU / 404
   ============================================ */
.thank-you { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-16) 0; }
.thank-you-content h1 { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.thank-you-content p { font-size: var(--text-lg); color: var(--gray-500); margin-bottom: var(--space-8); }
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-size: 120px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: var(--space-4); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
    padding: var(--space-4) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--text-sm);
    color: var(--gray-500);
}
.breadcrumb-list li { display: flex; align-items: center; gap: var(--space-2); }
.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--gray-300);
    font-size: var(--text-xs);
}
.breadcrumb-list a { color: var(--gray-500); text-decoration: none; transition: color var(--transition); }
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list .active { color: var(--navy); font-weight: 600; }

/* ============================================
   CTA SECTION (WhatsApp Banner)
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 50%, #FFEDC2 100%);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 45, 91, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}
.cta-section h2 {
    color: var(--navy);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    position: relative;
}
.cta-section p {
    color: var(--gray-500);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.7;
}
.cta-section .btn-whatsapp {
    position: relative;
    font-size: var(--text-lg);
    padding: 16px 40px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
.cta-section .btn-outline {
    position: relative;
    border-color: var(--navy);
    color: var(--navy);
}
.cta-section .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ============================================
   FRESHNESS IS OUR PROMISE SECTION
   ============================================ */
.freshness-section {
    padding: var(--space-24) 0 var(--space-20);
    background: linear-gradient(135deg, #0A2547 0%, var(--navy) 40%, #0D3266 100%);
    position: relative;
    overflow: hidden;
}
.freshness-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.freshness-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.freshness-header {
    text-align: center !important;
    max-width: 700px;
    margin: 0 auto var(--space-16);
    position: relative;
    z-index: 1;
}
.freshness-header .section-label {
    color: var(--gold);
    text-align: center !important;
    display: block;
}
.freshness-title {
    font-size: var(--text-5xl);
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.2;
    text-align: center;
}
.freshness-subtitle {
    font-family: var(--font-playfair);
    font-size: var(--text-xl);
    color: var(--gold);
    font-style: italic;
    margin-bottom: var(--space-4);
    text-align: center;
}
.freshness-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    text-align: center;
}
.freshness-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}
.freshness-card {
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.freshness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.freshness-card:hover::before {
    opacity: 1;
}
.freshness-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.freshness-card-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--gold);
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-6);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.25);
}
.freshness-card:hover .freshness-card-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    border-color: transparent;
}
.freshness-card h3 {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-3);
    font-weight: 700;
}
.freshness-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}
.review-stars {
    display: flex;
    gap: var(--space-1);
    color: var(--gold);
    margin-bottom: var(--space-4);
}
.review-text {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}
.review-info strong {
    display: block;
    color: var(--gray-900);
    font-size: var(--text-sm);
}
.review-info span {
    display: block;
    color: var(--gray-500);
    font-size: var(--text-xs);
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.faq-item summary {
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-900);
    font-size: var(--text-base);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 var(--space-8) var(--space-6);
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--text-base);
}
.faq-item a {
    color: var(--navy);
    text-decoration: underline;
    font-weight: 500;
}
.faq-item a:hover {
    color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
    .fade-up, .slide-in-left, .slide-in-right, .scale-in { opacity: 1; transform: none; transition: none; }
}