/* ===========================================
   VIMAR PREMIUM - FINAL VERSION
   With Conversational Distribution & Auto-Slideshows
   =========================================== */

:root {
    /* Colors - Light Mode */
    --navy-900: #0A1628;
    --navy-800: #0D2137;
    --blue-900: #1A3A5C;
    --blue-800: #234E70;
    --blue-700: #2C6287;
    --blue-600: #3B7BA3;
    --teal-600: #109999;
    --teal-500: #14B8A6;
    --teal-400: #2DD4BF;
    --gold-600: #D97706;
    --gold-500: #F59E0B;
    --gold-400: #FBBF24;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Theme Variables */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #64748B;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.2);
    --shadow-2xl: 0 24px 64px rgba(10, 22, 40, 0.25);
}

[data-theme="dark"] {
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-tertiary: #334155;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-tertiary: #94A3B8;
    --border-color: #334155;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.7);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===========================================
   PREMIUM BLUE BACKGROUND - PARTICLES + HERO IMAGE BLEND
   (Applied to main index page only)
   =========================================== */

.main-page {
    position: relative;
}

/* ==========================================
   ORGANIC FLOATING BLOB SHAPES (Blue Theme)
   Many blobs, varied sizes, more defined
   ========================================== */

.blob-shape {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    pointer-events: none;
}

/* SIZE CLASSES */
.bl-xl {
    width: 800px; height: 800px;
    opacity: 0.12;
    animation: blobDrift 28s ease-in-out infinite;
}
.bl-lg {
    width: 550px; height: 550px;
    opacity: 0.14;
    animation: blobMorph 22s ease-in-out infinite;
}
.bl-md {
    width: 350px; height: 350px;
    opacity: 0.16;
    animation: blobFloat 18s ease-in-out infinite;
}
.bl-sm {
    width: 180px; height: 180px;
    opacity: 0.18;
    animation: blobMorph 15s ease-in-out infinite;
}
.bl-xs {
    width: 90px; height: 90px;
    opacity: 0.22;
    border-radius: 50%;
    animation: blobFloat 12s ease-in-out infinite;
}

/* COLOR CLASSES */
.bl-teal { background: linear-gradient(135deg, #14B8A6, #2DD4BF); }
.bl-blue { background: linear-gradient(135deg, #2C6287, #3B7BA3); }
.bl-navy { background: linear-gradient(135deg, #0A1628, #234E70); }
.bl-sky  { background: linear-gradient(135deg, #0EA5E9, #38BDF8); }
.bl-gold { background: linear-gradient(135deg, #F59E0B, #FBBF24); opacity: 0.10; }

/* ANIMATION 1 — slow organic morph */
@keyframes blobMorph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(25px, -35px) rotate(90deg);
    }
    50% {
        border-radius: 30% 60% 40% 70% / 50% 60% 30% 60%;
        transform: translate(-20px, 25px) rotate(180deg);
    }
    75% {
        border-radius: 70% 30% 60% 40% / 40% 70% 50% 60%;
        transform: translate(35px, 15px) rotate(270deg);
    }
}

/* ANIMATION 2 — gentle float for variety */
@keyframes blobFloat {
    0%, 100% {
        border-radius: 50% 40% 60% 50% / 55% 45% 60% 40%;
        transform: translate(0, 0) scale(1);
    }
    33% {
        border-radius: 45% 55% 40% 60% / 40% 60% 50% 45%;
        transform: translate(20px, -40px) scale(1.06);
    }
    66% {
        border-radius: 60% 45% 55% 40% / 50% 40% 55% 60%;
        transform: translate(-15px, 20px) scale(0.94);
    }
}

/* ANIMATION 3 — wide drift for extra-large blobs */
@keyframes blobDrift {
    0%, 100% {
        border-radius: 40% 60% 65% 35% / 45% 50% 55% 50%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        border-radius: 55% 45% 35% 65% / 60% 35% 65% 40%;
        transform: translate(40px, -30px) rotate(72deg) scale(1.04);
    }
    40% {
        border-radius: 35% 65% 50% 50% / 40% 60% 40% 60%;
        transform: translate(-30px, 40px) rotate(144deg) scale(0.96);
    }
    60% {
        border-radius: 65% 35% 45% 55% / 55% 45% 60% 40%;
        transform: translate(25px, 20px) rotate(216deg) scale(1.02);
    }
    80% {
        border-radius: 50% 50% 60% 40% / 40% 55% 45% 55%;
        transform: translate(-20px, -25px) rotate(288deg) scale(0.98);
    }
}

/* Dark mode — slightly less visible */
[data-theme="dark"] .blob-shape { opacity: 0.08; }
[data-theme="dark"] .bl-xs { opacity: 0.12; }
[data-theme="dark"] .bl-sm { opacity: 0.10; }

/* Hero Image Background (non-destructive overlay) */
.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.32;
    transform: translateY(0);
    will-change: transform;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10,22,40,0.65) 0%,
        rgba(20,184,166,0.28) 45%,
        rgba(44,98,135,0.42) 100%);
    mix-blend-mode: multiply;
}

/* Ensure hero decorative layers sit above the image */
.hero-pattern { z-index: 1; }
.hero-glow { z-index: 2; }
.hero .container { z-index: 3; }

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CONTAINERS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 100%;
    padding: 0 2rem;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1628, #2C6287, #14B8A6);
}

.loader-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(20,184,166,0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(75,148,191,0.12), transparent 50%);
    animation: loaderGlow 8s ease-in-out infinite;
}

@keyframes loaderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.loader-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.logo-load {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-load img {
    width: 100%;
    filter: drop-shadow(0 8px 32px rgba(20,184,166,0.4));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.load-text {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.load-bar {
    width: 240px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.load-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
    animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* PROGRESS BAR */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(20,184,166,0.1);
    z-index: 9999;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-700), var(--teal-500), var(--gold-500));
    width: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(203,213,225,0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .nav {
    background: rgba(15,23,42,0.92);
    border-bottom-color: rgba(51,65,85,0.5);
}

.nav.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .nav.scrolled {
    background: rgba(15,23,42,0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo img {
    height: 52px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #15304B, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
}

.sub {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-top: 0.25rem;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover {
    color: var(--blue-700);
}

.menu a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.75rem 1.75rem;
    background: var(--blue-700);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(44,98,135,0.25);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,98,135,0.35);
    color: var(--white) !important;
}

/* THEME TOGGLE */
.theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--border-color);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    position: absolute;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    padding: 0.5rem;
}

.toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #0A1628 0%, #15304B 50%, #2C6287 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(20,184,166,0.03) 60px, rgba(20,184,166,0.03) 120px),
                      repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(75,148,191,0.03) 60px, rgba(75,148,191,0.03) 120px);
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(20,184,166,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 30%, rgba(75,148,191,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 85%, rgba(245,158,11,0.08) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    color: rgba(255,255,255,0.95);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16,185,129,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-title .line {
    display: block;
}

.hero-title .accent {
    background: linear-gradient(135deg, #F59E0B, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--white);
    color: var(--blue-800);
    box-shadow: 0 8px 24px rgba(255,255,255,0.2), 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255,255,255,0.3), 0 6px 16px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(16,185,129,0.15);
    border-radius: 50%;
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ABOUT SECTION - WITH BACKGROUND IMAGE PLACEHOLDER */
/* ABOUT / OUR STORY SECTION */
.about-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.about-card {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-xl);
}

.about-card .section-label {
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    color: var(--white);
    border: none;
    backdrop-filter: none;
}

.about-card .section-title {
    color: var(--text-primary);
    text-shadow: none;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.quote-block {
    position: relative;
    padding: 2rem 2rem 2rem 3rem;
    background: linear-gradient(135deg, rgba(44,98,135,0.06), rgba(20,184,166,0.06));
    border-left: 4px solid var(--teal-500);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .quote-block {
    background: linear-gradient(135deg, rgba(44,98,135,0.15), rgba(20,184,166,0.1));
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(20,184,166,0.15);
    position: absolute;
    top: -10px;
    left: 0.5rem;
    line-height: 0.8;
}

[data-theme="dark"] .quote-mark {
    color: rgba(20,184,166,0.25);
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.body-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-500);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(20,184,166,0.3);
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.pillar-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

/* COMMON SECTION STYLES */
.section-header {
    margin-bottom: 4rem;
}

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

.section-header .section-label {
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    color: var(--white);
}

[data-theme="light"] .section-header .section-title,
.section-header .section-title {
    color: var(--text-primary);
    text-shadow: none;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 800px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* SALT TEXTURES SECTION */
.textures-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.textures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.texture-item {
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.texture-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.texture-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.texture-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.texture-item:hover .texture-visual img {
    transform: scale(1.1);
}

.texture-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.texture-item:hover .texture-overlay {
    opacity: 1;
}

.texture-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.texture-size {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.texture-details {
    padding: 2rem;
}

.texture-details h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.texture-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meta-tag {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(44,98,135,0.08), rgba(20,184,166,0.08));
    color: var(--blue-800);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(44,98,135,0.15);
}

[data-theme="dark"] .meta-tag {
    background: linear-gradient(135deg, rgba(44,98,135,0.2), rgba(20,184,166,0.2));
    color: var(--teal-400);
    border-color: rgba(44,98,135,0.3);
}

.texture-details p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* PRODUCTS SECTION - AUTO-SWITCHING SLIDESHOWS */
.products-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.premium {
    border: 2px solid var(--gold-500);
    position: relative;
}

.product-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), #EC4899);
    z-index: 1;
}

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

.product-slider {
    position: relative;
    height: 340px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.slider-track {
    position: relative;
    height: 100%;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
}

.slider-item.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

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

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(12px);
    color: var(--white);
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.premium-badge {
    background: linear-gradient(135deg, var(--gold-500), #EC4899);
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 10px;
}

.product-content {
    padding: 2.25rem;
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.product-tags span {
    padding: 0.5rem 1.125rem;
    background: linear-gradient(135deg, rgba(44,98,135,0.08), rgba(20,184,166,0.08));
    color: var(--blue-800);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(44,98,135,0.15);
}

[data-theme="dark"] .product-tags span {
    background: linear-gradient(135deg, rgba(44,98,135,0.2), rgba(20,184,166,0.2));
    color: var(--teal-400);
    border-color: rgba(44,98,135,0.3);
}

.btn-details {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--blue-700);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-details:hover {
    background: var(--blue-900);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,98,135,0.3);
}

/* PRODUCT MODAL */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: var(--bg-primary);
    border-radius: 32px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--gray-900);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--blue-700);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    position: relative;
    background: var(--bg-tertiary);
}

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

.modal-info {
    padding: 3rem;
}

.modal-info h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.modal-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-specifications {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border: none;
}

.spec-row strong {
    min-width: 140px;
    color: var(--text-secondary);
    font-weight: 700;
}

.spec-row span {
    color: var(--text-primary);
}

.modal-uses h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal-uses ul {
    list-style: none;
}

.modal-uses li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    position: relative;
}

.modal-uses li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-500);
    font-weight: 700;
}

.btn-quote {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--blue-700);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: var(--blue-900);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,98,135,0.3);
}

/* DISTRIBUTION SECTION - NEW CONVERSATIONAL DESIGN */
.distribution-section {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.dist-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(44,98,135,0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(20,184,166,0.04) 0%, transparent 50%);
}

.dist-conversation {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Number */
.dist-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(44,98,135,0.05), rgba(20,184,166,0.05));
    border-radius: 32px;
}

.dist-hero-number {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 9rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.dist-hero-text {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.dist-hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Story Blocks */
.story-block {
    margin-bottom: 4rem;
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 750px;
}

/* Inline Stats */
.story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-tertiary);
    border-radius: 24px;
    border-left: 4px solid var(--blue-700);
}

.stat-inline {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Serve Grid */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.serve-item {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.serve-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-700);
}

.serve-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.serve-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.serve-item strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Commitment Items */
.commitment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.commit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.commit-item:hover {
    border-color: var(--teal-500);
    transform: scale(1.05);
}

.commit-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.commit-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NETWORK MAP SECTION */
.network-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.map-container {
    position: relative;
    margin-bottom: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.map-element {
    width: 100%;
    height: 600px;
    background: #E8F2F7;
}

.map-legend {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .map-legend {
    background: rgba(15,23,42,0.96);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.875rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.legend-item:last-child {
    margin: 0;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.legend-dot.primary {
    background: #EC4899;
    box-shadow: 0 0 16px rgba(236,72,153,0.5);
}

.legend-dot.regional {
    background: #3B82F6;
    box-shadow: 0 0 12px rgba(59,130,246,0.4);
}

.legend-dot.kenya {
    background: #10B981;
    box-shadow: 0 0 12px rgba(16,185,129,0.4);
}

/* QUALITY SECTION */
.quality-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.quality-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, rgba(203,213,225,0.2) 12%, transparent 12.5%, transparent 87%, rgba(203,213,225,0.2) 87.5%),
        linear-gradient(150deg, rgba(203,213,225,0.2) 12%, transparent 12.5%, transparent 87%, rgba(203,213,225,0.2) 87.5%);
    background-size: 80px 140px;
    opacity: 0.25;
}

[data-theme="dark"] .quality-bg {
    background-image: 
        linear-gradient(30deg, rgba(51,65,85,0.2) 12%, transparent 12.5%, transparent 87%, rgba(51,65,85,0.2) 87.5%),
        linear-gradient(150deg, rgba(51,65,85,0.2) 12%, transparent 12.5%, transparent 87%, rgba(51,65,85,0.2) 87.5%);
}

.quality-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.quality-hero {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.quality-visual {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.progress-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    transition: stroke-dashoffset 2s ease;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quality-hero h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.quality-hero > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.quality-features {
    list-style: none;
}

.quality-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-secondary);
    position: relative;
    font-weight: 500;
}

.quality-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-500);
    font-weight: 700;
    font-size: 1.2rem;
}

.quality-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quality-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quality-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(44,98,135,0.25);
}

.quality-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.quality-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quality-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* CERTIFICATIONS */
.certifications {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 4rem;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.cert-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cert-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.cert-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.cert-item img {
    max-height: 120px;
    object-fit: contain;
}

.partners-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.partners-section h4 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.partner-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-item img {
    max-height: 60px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* CONTACT SECTION */
.contact-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--bg-tertiary);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.method-content a,
.method-content span {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.method-content a:hover {
    color: var(--blue-700);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp,
.btn-email-link {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn-email-link {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(15,23,42,0.25);
}

[data-theme="dark"] .btn-email-link {
    background: var(--bg-tertiary);
}

.btn-email-link:hover {
    background: var(--gray-700);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.4);
}

/* RFQ FORM */
.rfq-form {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.rfq-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.625rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--blue-700);
    box-shadow: 0 0 0 4px rgba(44,98,135,0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: var(--blue-700);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--blue-900);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,98,135,0.3);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* FOOTER */
.footer {
    background: var(--navy-900);
    color: var(--white);
    padding: 5rem 0 2.5rem;
    position: relative;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(20,184,166,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75,148,191,0.05) 0%, transparent 50%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 56px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.footer-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-top: 0.375rem;
}

.footer-desc {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 480px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .quality-showcase,
    .contact-grid,
    .footer-main,
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .toggle {
        display: flex;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px);
        padding: 120px 2rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    [data-theme="dark"] .mobile-nav {
        background: rgba(15,23,42,0.98);
    }
    
    .mobile-nav.active {
        left: 0;
    }
    
    .mobile-nav a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .hero {
        padding: 160px 0 60px !important;
    }
    
    section:not(.hero) {
        padding: 4rem 0 !important;
    }
    
    .about-card,
    .rfq-form {
        padding: 2.5rem;
    }
    
    .products-grid,
    .textures-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .map-element {
        height: 450px;
    }
    
    /* Distribution Mobile */
    .dist-hero-number {
        font-size: 6rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-inline {
        min-width: 100%;
    }
    
    .serve-grid,
    .commitment-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide,
    .container-full {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .dist-hero {
        padding: 2rem 1.5rem;
    }
    
    .dist-hero-number {
        font-size: 4.5rem;
    }
}

/* ==========================================
   PINK SALT TEASER SECTION
   ========================================== */

.pink-salt-teaser {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(236,72,153,0.03) 0%, rgba(20,184,166,0.03) 100%);
    overflow: hidden;
}

.teaser-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.teaser-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: teaserOrbFloat 20s ease-in-out infinite;
}

.orb-pink {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    top: -200px;
    right: -200px;
}

.orb-blue {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #2C6287, #14B8A6);
    bottom: -250px;
    left: -250px;
    animation-delay: 10s;
}

@keyframes teaserOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -60px) scale(1.1);
    }
}

.teaser-content {
    position: relative;
    z-index: 1;
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Visual Stack */
.teaser-visual {
    position: relative;
}

.visual-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 25px rgba(236,72,153,0.4);
}

.badge-shimmer {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--white);
    animation: badgeShimmer 2s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.visual-stack {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-img {
    position: absolute;
    width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-1 {
    z-index: 3;
    transform: rotate(-8deg) translateX(-40px);
}

.img-2 {
    z-index: 2;
    transform: rotate(4deg) translateX(20px);
}

.img-3 {
    z-index: 1;
    transform: rotate(-3deg) translateX(0px) translateY(20px);
    opacity: 0.7;
}

.visual-stack:hover .img-1 {
    transform: rotate(-12deg) translateX(-60px) translateY(-10px);
}

.visual-stack:hover .img-2 {
    transform: rotate(6deg) translateX(40px) translateY(-5px);
}

.visual-stack:hover .img-3 {
    transform: rotate(-5deg) translateX(0px) translateY(30px);
    opacity: 0.9;
}

/* Teaser Info */
.teaser-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(44,98,135,0.1), rgba(20,184,166,0.1));
    color: var(--blue-700);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(44,98,135,0.2);
}

.teaser-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.accent-gradient {
    background: linear-gradient(135deg, #EC4899, #F472B6, #FFC0CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teaser-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Highlights */
.teaser-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(236,72,153,0.05), rgba(20,184,166,0.05));
    border-color: rgba(236,72,153,0.3);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(236,72,153,0.15);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.highlight-text {
    flex: 1;
}

.highlight-text strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    font-weight: 700;
}

.highlight-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Teaser CTA */
.teaser-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-explore-pink {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(236,72,153,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.btn-explore-pink:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236,72,153,0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .visual-stack {
        height: 400px;
    }
    
    .stack-img {
        width: 260px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .pink-salt-teaser {
        padding: 5rem 0;
    }
    
    .visual-stack {
        height: 350px;
    }
    
    .stack-img {
        width: 220px;
        height: 280px;
    }
    
    .teaser-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .visual-stack {
        height: 300px;
    }
    
    .stack-img {
        width: 180px;
        height: 240px;
    }
    
    .img-1 {
        transform: rotate(-8deg) translateX(-20px);
    }
    
    .img-2 {
        transform: rotate(4deg) translateX(10px);
    }
}


/* ==========================================
   ADDITIONS
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--blue-700);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(44,98,135,0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--blue-900);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44,98,135,0.4);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--blue-700);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .blob-shape, .particles-bg { display: none; }
}

/* Footer 3-col grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
}
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr; }
}

/* Mobile overflow prevention */
html, body {
    width: 100%;
    max-width: 100%;
}
.main-page {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}
.main-page img, .main-page svg { max-width: 100%; }
.main-page a, .main-page p, .main-page h1, .main-page h2, .main-page h3, .main-page h4, .main-page span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    .bl-xl { width: 500px; height: 500px; opacity: 0.09; }
    .bl-lg { width: 350px; height: 350px; opacity: 0.10; }
    .bl-md { width: 220px; height: 220px; }
    .bl-sm { width: 120px; height: 120px; }
    .bl-xs { width: 60px; height: 60px; }
}
@media (max-width: 480px) {
    .bl-xl { width: 350px; height: 350px; opacity: 0.07; }
    .bl-lg { width: 250px; height: 250px; opacity: 0.08; }
    .bl-md { width: 160px; height: 160px; opacity: 0.10; }
    .bl-sm { width: 90px; height: 90px; }
    .bl-xs { width: 50px; height: 50px; }
}
