/* ==========================================================================
   B-FRESH GLOBAL EXPORTS — Main Stylesheet
   Design System: Premium Corporate + Fresh Organic
   Colors: Green #1F7A4C | Navy #0A3D62 | Accent #F4A261
   Typography: Poppins (headings) + Inter (body)
   ========================================================================== */

/* ============================================================
   1. DESIGN TOKENS / CSS VARIABLES
   ============================================================ */
:root {
    /* Brand Colors */
    --primary:          #1F7A4C;
    --primary-dark:     #155a38;
    --primary-light:    #2d9e63;
    --primary-ultra:    #e8f5ee;
    --secondary:        #0A3D62;
    --secondary-dark:   #072d47;
    --secondary-light:  #1a6398;
    --secondary-ultra:  #e8f1f8;
    --accent:           #F4A261;
    --accent-dark:      #e08b47;
    --accent-light:     #fdf0e6;

    /* Neutral Palette */
    --white:            #ffffff;
    --off-white:        #f8fafc;
    --light-gray:       #f1f5f9;
    --border-color:     #e2e8f0;
    --mid-gray:         #94a3b8;
    --text-secondary:   #64748b;
    --text-primary:     #1e293b;
    --text-dark:        #0f172a;

    /* Semantic */
    --success:          #16a34a;
    --error:            #dc2626;
    --warning:          #d97706;
    --info:             #0284c7;

    /* Typography */
    --font-heading:     'Poppins', sans-serif;
    --font-body:        'Inter', sans-serif;
    --base-size:        16px;
    --line-height:      1.65;

    /* Spacing Scale (4pt grid) */
    --space-1:  4px;
    --space-2:  8px;
    --space-3:  12px;
    --space-4:  16px;
    --space-5:  20px;
    --space-6:  24px;
    --space-8:  32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.08);
    --shadow-lg:  0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl:  0 20px 50px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);
    --shadow-green: 0 8px 24px rgba(31,122,76,0.25);
    --shadow-navy:  0 8px 24px rgba(10,61,98,0.2);

    /* Border Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast:   150ms ease-out;
    --transition-mid:    250ms ease-out;
    --transition-slow:   350ms ease-out;

    /* Z-Index Scale */
    --z-base:       0;
    --z-raised:     10;
    --z-dropdown:   20;
    --z-sticky:     40;
    --z-overlay:    100;
    --z-modal:      200;
    --z-toast:      300;
    --z-preloader:  9999;

    /* Layout */
    --navbar-height: 76px;
    --container-max: 1280px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--base-size);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: var(--line-height);
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: pointer;
}

a:hover, a:focus-visible {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    background: none;
    border: none;
}

/* ============================================================
   3. SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-6);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: var(--z-preloader);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-3);
    color: var(--white);
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
    font-size: 1rem;
    line-height: var(--line-height);
    color: var(--text-secondary);
    max-width: 70ch;
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}

/* ============================================================
   5. UTILITY CLASSES
   ============================================================ */
.section-padding {
    padding: var(--space-24) 0;
}

.section-padding-sm {
    padding: var(--space-16) 0;
}

.text-primary-brand { color: var(--primary) !important; }
.text-secondary-brand { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-white { color: var(--white) !important; }
.text-muted-custom { color: var(--text-secondary) !important; }

.bg-off-white { background-color: var(--off-white) !important; }
.bg-primary-brand { background-color: var(--primary) !important; }
.bg-secondary-brand { background-color: var(--secondary) !important; }
.bg-dark-navy { background-color: var(--secondary-dark) !important; }
.bg-accent { background-color: var(--accent) !important; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-ultra);
    border: 1px solid rgba(31,122,76,0.2);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-label.light {
    color: var(--accent);
    background: rgba(244,162,97,0.15);
    border-color: rgba(244,162,97,0.25);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.section-title.light { color: var(--white); }
.section-subtitle { color: var(--text-secondary); max-width: 600px; }
.section-subtitle.light { color: rgba(255,255,255,0.8); }

.divider-line {
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.divider-line.centered { margin-left: auto; margin-right: auto; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px var(--space-8);
    border-radius: var(--radius-full);
    border: none;
    box-shadow: var(--shadow-green);
    transition: all var(--transition-mid);
    cursor: pointer;
    min-height: 48px;
    white-space: nowrap;
    touch-action: manipulation;
    text-decoration: none;
}

.btn-primary-custom:hover, .btn-primary-custom:focus-visible {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(31,122,76,0.35);
}

.btn-primary-custom:active { transform: scale(0.97); }

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 13px var(--space-8);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.7);
    transition: all var(--transition-mid);
    cursor: pointer;
    min-height: 48px;
    white-space: nowrap;
    touch-action: manipulation;
    text-decoration: none;
}

.btn-outline-custom:hover, .btn-outline-custom:focus-visible {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px var(--space-8);
    border-radius: var(--radius-full);
    border: none;
    box-shadow: var(--shadow-navy);
    transition: all var(--transition-mid);
    cursor: pointer;
    min-height: 48px;
    white-space: nowrap;
    touch-action: manipulation;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent-custom {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px var(--space-8);
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 24px rgba(244,162,97,0.3);
    transition: all var(--transition-mid);
    cursor: pointer;
    min-height: 48px;
    touch-action: manipulation;
    text-decoration: none;
}

.btn-accent-custom:hover { transform: translateY(-2px); color: var(--white); }

.btn-outline-footer {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px var(--space-6);
    border-radius: var(--radius-full);
    transition: all var(--transition-mid);
    min-height: 44px;
}

.btn-outline-footer:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================================
   7. PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 60%, var(--primary-dark) 100%);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.preloader-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    animation: preloaderPulse 1.4s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
    50%       { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: var(--radius-full);
    animation: preloaderLoad 1.2s ease-in forwards;
}

@keyframes preloaderLoad {
    from { width: 0; }
    to   { width: 100%; }
}

.preloader-text {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================================
   8. NAVBAR
   ============================================================ */
#mainNav {
    height: var(--navbar-height);
    background: transparent;
    transition: background var(--transition-slow), box-shadow var(--transition-slow), height var(--transition-slow);
    z-index: var(--z-sticky);
    padding: 0;
    padding-right: 10px;
}

#mainNav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    top: 0;
    /* height: 68px; */
}

#mainNav.scrolled .navbar-brand .brand-name { color: var(--text-dark); }
#mainNav.scrolled .navbar-brand .brand-tagline { color: var(--text-secondary); }
#mainNav.scrolled .nav-link { color: var(--text-primary); }
#mainNav.scrolled .toggler-icon { background: var(--text-primary); }

.navbar-brand { padding: 0; margin: 0; }

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.brand-logo {
    height: 60px;
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 2px solid rgba(255,255,255,0.4); */
    flex-shrink: 0;
}

#mainNav.scrolled .brand-logo { border-color: var(--border-color); }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.brand-tagline {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Nav links */
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    padding: var(--space-2) var(--space-4) !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width var(--transition-mid);
}

.nav-link:hover::after, .nav-link.active::after { width: 70%; }

.nav-link.active {
    color: var(--white) !important;
    font-weight: 600;
}

#mainNav.scrolled .nav-link { color: var(--text-secondary) !important; }
#mainNav.scrolled .nav-link:hover { color: var(--primary) !important; }
#mainNav.scrolled .nav-link.active { color: var(--primary) !important; }
#mainNav.scrolled .nav-link::after { background: var(--primary); }

/* Custom toggler */
.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    transition: border-color var(--transition-fast);
}

#mainNav.scrolled .navbar-toggler { border-color: var(--border-color); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(31,122,76,0.3); }

.toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background var(--transition-fast);
}

/* Collapse background on mobile */
@media (max-width: 991.98px) {
    #navbarMain {
        background: rgba(255,255,255,0.98);
        border-radius: var(--radius-md);
        padding: var(--space-4);
        margin-top: var(--space-3);
        box-shadow: var(--shadow-lg);
    }

    .nav-link {
        color: var(--text-primary) !important;
        padding: var(--space-3) var(--space-4) !important;
    }

    .nav-link.active { color: var(--primary) !important; }
    .nav-link::after { display: none; }
    .nav-cta { margin-top: var(--space-4); }
    .nav-cta .btn-primary-custom { width: 100%; justify-content: center; }
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary-dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide,
.hero-slider .slick-slide > div {
    height: 100%;
}

.hero-slide {
    height: 100dvh;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 61, 98, 0.65) 0%,
        rgba(7, 45, 71, 0.45) 30%,
        rgba(21, 90, 56, 0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: var(--z-raised);
    padding-top: var(--navbar-height);
    padding-bottom: var(--space-16);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-badge i { width: 14px; height: 14px; color: var(--accent); }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
}

.hero-title span {
    background: linear-gradient(90deg, var(--accent), #ffd166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    margin-bottom: var(--space-12);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 600;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
}

.trust-badge i { width: 14px; height: 14px; color: var(--accent); }

/* Hero scroll dots */
.hero-slider .slick-dots {
    bottom: var(--space-8);
    z-index: var(--z-raised);
}

.hero-slider .slick-dots li button::before {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.hero-slider .slick-dots li.slick-active button::before {
    color: var(--accent);
}

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-8);
    right: var(--space-10);
    z-index: var(--z-raised);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   10. STATS / COUNTER SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31,122,76,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: transform var(--transition-mid), background var(--transition-mid);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
}

.stat-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    max-width: none;
}

/* ============================================================
   11. ABOUT PREVIEW SECTION
   ============================================================ */
.about-preview {
    padding: var(--space-24) 0;
    background: var(--white);
}

.about-image-grid {
    position: relative;
    height: 480px;
}

.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 52%;
    height: 55%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-badge-floating {
    position: absolute;
    top: var(--space-6);
    right: 20%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-left: 4px solid var(--primary);
}

.about-badge-floating .badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge-floating .badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
    max-width: none;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about-feature-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 44px; height: 44px;
    background: var(--primary-ultra);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i { width: 20px; height: 20px; color: var(--primary); }

.about-feature-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.about-feature-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: none;
}

/* ============================================================
   12. GLOBAL PRESENCE SECTION
   ============================================================ */
.global-section {
    padding: var(--space-24) 0;
    background: var(--off-white);
    overflow: hidden;
}

.world-map-visual {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    overflow: hidden;
}

.world-map-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(31,122,76,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244,162,97,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.map-dot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 8px);
    gap: 6px;
    opacity: 0.15;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.map-dot { width: 3px; height: 3px; background: white; border-radius: 50%; }

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    position: relative;
    z-index: 1;
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    transition: all var(--transition-mid);
}

.country-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.country-tag .flag { font-size: 1em; }

/* Export marquee */
.marquee-wrapper {
    overflow: hidden;
    margin-top: var(--space-8);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: var(--space-6);
    padding-right: var(--space-6);
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.marquee-item::before {
    content: '✦';
    color: var(--primary);
    font-size: 0.6rem;
}

/* ============================================================
   13. PRODUCT CARDS
   ============================================================ */
.products-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
    cursor: pointer;
    height: 100%;
}

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

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

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

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

.product-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px var(--space-3);
    border-radius: var(--radius-full);
}

.product-badge.accent { background: var(--accent); }
.product-badge.navy   { background: var(--secondary); }

.product-card-body {
    padding: var(--space-5) var(--space-6);
}

.product-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.product-card-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    max-width: none;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.product-spec-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-ultra);
    padding: 3px var(--space-3);
    border-radius: var(--radius-full);
    border: 1px solid rgba(31,122,76,0.15);
}

.product-card-footer {
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition-fast);
}

.product-link:hover { gap: var(--space-3); }
.product-link i { width: 16px; height: 16px; }

/* Slider custom arrows */
.product-slider-wrap { position: relative; padding-bottom: var(--space-10); }

.product-slider .slick-list { padding: 30px 0; align-items: center; }

.slick-prev, .slick-next {
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border-color);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-fast);
    min-width: 48px;
    min-height: 48px;
    top: 40%;
}

.product-slider .slick-prev, .product-slider .slick-next{
    color: var(--primary);
}

.slick-prev { left: -24px; }
.slick-next { right: -24px; }

.slick-prev:hover, .slick-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.slick-prev::before, .slick-next::before { display: none; }
.slick-prev i, .slick-next i { width: 20px; height: 20px; }

.slick-dots { bottom: 0; }
.slick-dots li button::before { font-size: 9px; color: var(--border-color); }
.slick-dots li.slick-active button::before { color: var(--primary); }

/* ============================================================
   14. WHY CHOOSE US
   ============================================================ */
.why-us-section {
    padding: var(--space-24) 0;
    background: var(--off-white);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-mid);
}

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

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

.feature-icon-wrap {
    width: 72px; height: 72px;
    background: var(--primary-ultra);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    transition: background var(--transition-mid);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.feature-icon-wrap i { width: 28px; height: 28px; color: var(--primary); transition: color var(--transition-mid); }
.feature-card:hover .feature-icon-wrap i { color: var(--white); }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: none;
    margin: 0;
}

/* ============================================================
   15. INFRASTRUCTURE PREVIEW
   ============================================================ */
.infra-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.infra-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(31,122,76,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.infra-image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px;
    gap: var(--space-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.infra-mosaic-img {
    position: relative;
    overflow: hidden;
}

.infra-mosaic-img:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.infra-mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

.infra-mosaic-img:hover img { transform: scale(1.05); }

.infra-mosaic-img.mobile-only {
    display: none;
}

.infra-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.infra-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    text-align: center;
    transition: background var(--transition-mid);
}

.infra-stat:hover { background: rgba(255,255,255,0.14); }

.infra-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.infra-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    max-width: none;
    margin: 0;
}

/* ============================================================
   16. EXPORT PROCESS STEPS
   ============================================================ */
.process-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
    opacity: 0.3;
}

.process-step {
    position: relative;
    text-align: center;
    padding-top: var(--space-3);
    cursor: default;
}

.process-step-number {
    width: 72px; height: 72px;
    background: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    position: relative;
    z-index: 1;
    transition: all var(--transition-mid);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mid-gray);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-step-number,
.process-step.active .process-step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
    transform: scale(1.1);
}

.process-step-icon {
    position: absolute;
    top: -10px; right: -5px;
    width: 26px; height: 26px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-mid);
}

.process-step:hover .process-step-icon { opacity: 1; }
.process-step-icon i { width: 12px; height: 12px; color: var(--white); }

.process-step-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
}

.process-step-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.process-step:hover .process-step-image img { transform: scale(1.05); }

.process-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    max-width: none;
    margin: 0;
}

/* 4-step icon-only process */
.process-4steps {
    padding: var(--space-4) 0 var(--space-8);
}

.p4step {
    text-align: center;
    padding: var(--space-2) var(--space-5);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-mid);
    cursor: default;
}

.p4step:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.p4step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.p4step-icon {
    width: 96px;
    height: 96px;
    background: var(--primary-ultra);
    border: 2px solid rgba(31, 122, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-mid);
}

.p4step-icon i {
    width: 44px;
    height: 44px;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.p4step:hover .p4step-icon {
    background: var(--primary);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 28px rgba(31, 122, 76, 0.35);
}

.p4step:hover .p4step-icon i {
    color: var(--white);
}

.p4step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================================
   17. CERTIFICATIONS
   ============================================================ */
.certifications-section {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-5);
}

.cert-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-5);
    text-align: center;
    transition: all var(--transition-mid);
    cursor: default;
}

.cert-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-green);
    transform: translateY(-4px);
}

.cert-icon {
    width: 60px; height: 60px;
    background: var(--primary-ultra);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    transition: background var(--transition-mid);
}

.cert-card:hover .cert-icon { background: var(--primary); }
.cert-icon i { width: 26px; height: 26px; color: var(--primary); transition: color var(--transition-mid); }
.cert-card:hover .cert-icon i { color: var(--white); }

.cert-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: var(--text-dark);
}

.cert-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    max-width: none;
    margin: 0;
}

/* ============================================================
   18. VIDEO SECTION
   ============================================================ */
.video-section {
    padding: var(--space-16) 0;
    background: var(--secondary);
}

.video-section .section-label,
.video-section .section-label i {
    color: rgba(255,255,255,0.75);
}

.video-section .section-title {
    color: var(--white);
}

.video-section .divider-line {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.video-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

.video-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--text-dark);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
    aspect-ratio: 16 / 9;
    margin: 0;
    cursor: pointer;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    background: linear-gradient(
        to top,
        rgba(10, 61, 98, 0.72) 0%,
        rgba(10, 61, 98, 0.25) 60%,
        transparent 100%
    );
    transition: opacity 0.35s ease, background 0.25s ease;
    cursor: pointer;
}

.video-overlay:hover {
    background: linear-gradient(
        to top,
        rgba(10, 61, 98, 0.55) 0%,
        rgba(10, 61, 98, 0.1) 60%,
        transparent 100%
    );
}

.video-overlay--hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 84px;
    height: 84px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
    padding-left: 5px; /* optical center for play triangle */
}

.video-overlay:hover .video-play-btn {
    transform: scale(1.13);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.45);
    background: var(--white);
}

.video-caption {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: absolute;
    bottom: var(--space-5);
    left: var(--space-5);
    margin: 0;
}

/* ============================================================
   19. CTA BANNER
   ============================================================ */
.cta-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    top: -200px; right: -180px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin: 0 auto var(--space-8);
    max-width: 600px;
}

.cta-btns {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   19. CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: var(--space-24) 0;
    background: var(--off-white);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    height: 100%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(31,122,76,0.35), transparent 70%);
    pointer-events: none;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
}

.contact-info-card p {
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-8);
    max-width: none;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.ci-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.ci-icon i { width: 18px; height: 18px; color: var(--accent); }

.contact-info-item h5 {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-info-item p, .contact-info-item a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: none;
}

.contact-info-item a:hover { color: var(--accent); }

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.form-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    max-width: none;
}

.form-group-custom {
    margin-bottom: var(--space-5);
}

.form-label-custom {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.required-mark {
    color: var(--error);
    margin-left: 2px;
}

.form-control-custom {
    display: block;
    width: 100%;
    padding: 12px var(--space-5);
    font-size: 0.925rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--off-white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 48px;
    -webkit-appearance: none;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(31,122,76,0.12);
}

.form-control-custom::placeholder { color: var(--mid-gray); }

textarea.form-control-custom { resize: vertical; min-height: 130px; }

.form-helper {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: var(--space-1);
}

.form-error {
    font-size: 0.78rem;
    color: var(--error);
    margin-top: var(--space-1);
    display: none;
}

.was-validated .form-control-custom:invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.was-validated .form-control-custom:invalid + .form-error { display: block; }

.was-validated .form-control-custom:valid { border-color: var(--success); }

#formSuccess,
#formError {
    display: none;
    align-items: center;
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
}

#formSuccess {
    background: var(--primary-ultra);
    border: 1.5px solid var(--primary);
    color: var(--primary-dark);
}

#formError {
    background: #fef2f2;
    border: 1.5px solid var(--error);
    color: #991b1b;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
    background: var(--secondary-dark);
    color: var(--white);
}

.footer-main {
    padding: var(--space-16) 0 var(--space-12);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-1);
}

.footer-brand-wrapper img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

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

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link i { width: 16px; height: 16px; }

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.footer-links li + li { margin-top: var(--space-3); }

.footer-links a, .footer-links li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition-fast);
}

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

.footer-countries li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-countries i { width: 13px; height: 13px; color: var(--primary-light); flex-shrink: 0; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-list i { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,0.7); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-contact-list span, .footer-contact-list a { max-width: none; margin: 0; }

.footer-cert-bar {
    background: rgba(0,0,0,0.2);
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cert-bar-inner {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.cert-bar-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cert-bar-badges { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 4px var(--space-4);
    border-radius: var(--radius-full);
}

.cert-badge i { width: 13px; height: 13px; color: var(--accent); }

.footer-bottom {
    padding: var(--space-5) 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    max-width: none;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-5);
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   21. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-mid);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

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

/* ============================================================
   22. WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: var(--z-overlay);
    transition: all var(--transition-mid);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1ebe5c;
    transform: scale(1.08);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-4px);
    transition: all var(--transition-fast);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================================
   23. INNER PAGE HERO
   ============================================================ */
.inner-hero {
    padding: calc(var(--navbar-height) + var(--space-16)) 0 var(--space-16);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 60%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.inner-hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

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

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.breadcrumb-custom li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.breadcrumb-custom li a { color: rgba(255,255,255,0.7); }
.breadcrumb-custom li a:hover { color: var(--accent); }
.breadcrumb-custom li.active { color: rgba(255,255,255,0.9); }
.breadcrumb-custom li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,0.35); }

.inner-hero h1 { color: var(--white); margin-bottom: var(--space-3); }
.inner-hero p  { color: rgba(255,255,255,0.82); max-width: 600px; }

/* ============================================================
   24. ABOUT PAGE SPECIFIC
   ============================================================ */
.founder-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.founder-image-wrap {
    position: relative;
    overflow: hidden;
}

.founder-image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
}

.founder-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(7,45,71,0.9), transparent);
    color: var(--white);
}

.founder-image-overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 2px; }
.founder-image-overlay span { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

.timeline {
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 19px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-8);
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 4px;
    width: 20px; height: 20px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-1);
    display: block;
}

.timeline-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: var(--space-2); }
.timeline-item p { font-size: 0.875rem; color: var(--text-secondary); max-width: none; margin: 0; }

/* ============================================================
   25. PRODUCTS PAGE SPECIFIC
   ============================================================ */
.product-filter-tabs {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px var(--space-6);
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px;
    touch-action: manipulation;
}

.filter-tab:hover, .filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.product-detail-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

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

.product-detail-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

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

.product-detail-body { padding: var(--space-6); }
.product-detail-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--space-3); }

.spec-table { width: 100%; margin-top: var(--space-4); }
.spec-table tr { border-bottom: 1px solid var(--border-color); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: var(--space-2) var(--space-3); font-size: 0.85rem; vertical-align: top; }
.spec-table td:first-child { font-weight: 600; color: var(--text-dark); width: 42%; }
.spec-table td:last-child { color: var(--text-secondary); }

/* ============================================================
   26. EXPORTS PAGE SPECIFIC
   ============================================================ */
.export-region-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-mid);
    height: 100%;
}

.export-region-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.export-region-header {
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    position: relative;
}

.export-region-header h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.region-flag { font-size: 2rem; line-height: 1; }

.export-region-body { padding: var(--space-5) var(--space-6); }

.country-list { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.country-chip {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    background: var(--secondary-ultra);
    border: 1px solid rgba(10,61,98,0.15);
    padding: 4px var(--space-3);
    border-radius: var(--radius-full);
}

/* ============================================================
   27. INFRASTRUCTURE PAGE SPECIFIC
   ============================================================ */
.infra-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-5);
}

.infra-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-mid);
}

.infra-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.infra-feature-icon {
    width: 56px; height: 56px;
    background: var(--primary-ultra);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.infra-feature-icon i { width: 24px; height: 24px; color: var(--primary); }
.infra-feature h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: var(--space-2); }
.infra-feature p { font-size: 0.825rem; color: var(--text-secondary); margin: 0; max-width: none; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.gallery-grid .gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
    aspect-ratio: 1;
}

.gallery-item-lg img { aspect-ratio: auto; height: 100%; }

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,61,98,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-mid);
}

.gallery-overlay i { width: 32px; height: 32px; color: var(--white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   28. RESPONSIVE
   ============================================================ */

/* Large desktops */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/* Tablets landscape */
@media (max-width: 1199.98px) {
    :root { --space-24: 80px; }
    .about-image-grid { height: 380px; }
    .infra-image-mosaic { grid-template-rows: 200px 160px; }
    .slick-prev { left: -14px; }
    .slick-next { right: -14px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item-lg { grid-column: span 1; grid-row: span 1; }
}

/* Tablets portrait */
@media (max-width: 991.98px) {
    :root {
        --space-24: 72px;
        --navbar-height: 68px;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .about-image-grid { height: 320px; margin-bottom: var(--space-8); }
    .about-img-main { width: 72%; }
    .about-badge-floating { display: none; }

    .process-timeline::before { display: none; }

    .infra-image-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 160px;
        margin-bottom: var(--space-8);
    }

    .infra-mosaic-img:first-child { grid-column: auto; grid-row: auto; }

    .hero-scroll-hint { display: none; }

    .cta-btns { flex-direction: column; align-items: center; }

    .contact-info-card { margin-bottom: var(--space-6); }
}

/* Mobile */
@media (max-width: 767.98px) {
    :root {
        --space-24: 64px;
        --space-20: 64px;
        --space-16: 56px;
        --navbar-height: 64px;
    }

    .section-padding { padding: 64px 0; }

    .about-image-grid { height: 360px; }
    /* .about-img-secondary { display: none; } */

    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-cta-group { flex-direction: column; gap: var(--space-3); }
    .hero-cta-group a { width: 100%; justify-content: center; }

    .stat-card { padding: var(--space-5); }
    .stat-number { font-size: 2.2rem; }

    .process-timeline { padding-bottom: var(--space-6); }
    .process-step { margin-bottom: var(--space-6); }

    .world-map-visual { padding: var(--space-8) var(--space-5); }

    .form-card { padding: var(--space-6); }
    .contact-info-card { padding: var(--space-6); }

    .back-to-top { bottom: var(--space-6); right: var(--space-4); }
    .whatsapp-float { bottom: var(--space-6); left: var(--space-4); }

    .footer-brand-wrapper img { width: 44px; height: 44px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .inner-hero { min-height: 260px; padding-bottom: var(--space-10); }

    .cert-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item-lg { grid-column: span 1; grid-row: span 1; }

    .timeline { padding-left: 36px; }
    .timeline-dot { left: -29px; }
    .timeline::before { left: 11px; }

    .infra-stat-grid { grid-template-columns: 1fr 1fr; }
    .infra-stat-num { font-size: 1.6rem; }

    .infra-mosaic-img.mobile-only { display: block; }
}

/* Small mobile */
@media (max-width: 479.98px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }

    .cert-grid { grid-template-columns: 1fr 1fr; }

    .product-filter-tabs { gap: var(--space-2); }
    .filter-tab { padding: 9px var(--space-4); font-size: 0.82rem; }

    .country-tags { gap: var(--space-2); }
    .country-tag { font-size: 0.78rem; }

    .footer-bottom-links { flex-direction: column; align-items: center; gap: var(--space-3); }

    .about-image-grid { height: 220px; }

    .hero-badge{
        font-size: 10px;
    }

    .hero-content{
        padding-top: 90px;
    }

    .stat-card{
        padding: 10px;
    }

    .stat-number{
        font-size: 28px;
    }

    .cert-card{
        padding: 10px;
    }

}
