/* =========================================
   YUVA EXIM — PREMIUM REDESIGN 2026
   Luxury B2B Export Aesthetic
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
    /* Brand Colors */
    --primary:        #15803d;
    --primary-light:  #22c55e;
    --primary-dark:   #064e3b;
    --primary-glow:   rgba(21,128,61,0.25);

    /* Gold Accent */
    --gold:           #d97706;
    --gold-light:     #f59e0b;
    --gold-pale:      rgba(217,119,6,0.12);

    /* Backgrounds */
    --bg-body:    #ffffff;
    --bg-white:   #ffffff;
    --bg-cream:   #f0fdf4;
    --bg-light:   #dcfce7;
    --bg-dark:    #011c15;
    --bg-navy:    #052e1c;

    /* Text */
    --text-dark:  #052e1c;
    --text-body:  #1e293b;
    --text-muted: #64748b;
    --text-white: #f8fafc;

    /* Borders */
    --border:        rgba(21,128,61,0.12);
    --border-strong: rgba(21,128,61,0.25);

    /* Shadows */
    --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:      0 24px 64px rgba(0,0,0,0.14);
    --shadow-primary: 0 8px 28px rgba(21,128,61,0.35);
    --shadow-gold:    0 8px 28px rgba(217,119,6,0.30);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Layout */
    --section-py: 6rem;
    --max-w:      1280px;
    --nav-h:      80px;
    --radius:     14px;
    --radius-lg:  22px;
    --radius-xl:  32px;
    --transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"], @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        /* DARK THEME */
        --bg-body:    #064e3b;
        --bg-white:   #064e3b;
        --bg-cream:   #022c22;
        --bg-light:   #115e59;
        --bg-dark:    #042f2e;
        --bg-navy:    #022c22;
        
        --text-dark:  #F7F7F7;
        --text-body:  #B0B7C0;
        --text-muted: #7A848D;
        
        --border:     rgba(255, 255, 255, 0.08);
        --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
        --shadow-md:  0 8px 30px rgba(0,0,0,0.4);
        --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
    }
}

/* Global Background */
body {
    background: var(--bg-body);
    color: var(--text-body);
}




/* ==========  RESET  ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg-white); color: var(--text-body); line-height: 1.7; overflow-x: hidden; max-width: 100vw; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ==========  UTILITY  ========== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; width: 100%; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
.section-py { padding: var(--section-py) 0; }
.bg-cream  { background: var(--bg-cream); }
.bg-light  { background: var(--bg-light); }
.bg-navy   { background: var(--bg-navy); }
.bg-dark   { background: var(--bg-dark); }
.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.hidden { display: none !important; }

/* Section subtle pattern overlay */
.bg-cream { position: relative; }
.bg-cream::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(21,128,61,0.04) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(217,119,6,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated section separator */
.section-sep {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 3px;
    margin: 1rem 0 1.5rem;
    display: block;
}
.section-header.center .section-sep { margin-left: auto; margin-right: auto; }

/* Gold label pill */
.pill-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-pale);
    border: 1px solid rgba(217,119,6,0.3);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    line-height: 1.13;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-title .primary {
    color: var(--primary);
    position: relative;
}
.section-title.on-dark { color: #fff; }
.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.85;
    font-weight: 400;
}
.section-lead.on-dark { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin: 0 auto; }

/* ==========  BUTTONS  ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 2.1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #16a34a 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, var(--primary-light) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(21,128,61,0.45);
}

/* Gold CTA button variant */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(217,119,6,0.45);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-outline-white {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-lg { padding: 1.15rem 2.6rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* Shine sweep */
.btn-primary::after, .btn-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 80px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn-primary:hover::after, .btn-gold:hover::after { left: 140%; }

/* ==========  FLOATING WHATSAPP  ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
    z-index: 1000;
    transition: var(--transition);
}
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.5;
    animation: wa-ring 2s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.55); }
@keyframes wa-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.35); opacity: 0; }
}

/* ==========  HEADER / NAV  ========== */
#header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-h);
    z-index: 900;
    transition: var(--transition);
    background: transparent;
}
#header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(21,128,61,0.12);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    height: 68px;
}
#header.scrolled .logo { color: var(--text-dark); }
#header.scrolled .logo .primary-part { color: var(--primary); }
#header.scrolled .nav-link { color: var(--text-body); }
#header.scrolled .nav-link:hover { color: var(--primary); }
#header.scrolled .nav-cta { border-color: var(--primary); color: var(--primary); }
#header.scrolled .nav-cta:hover { background: var(--primary); color: #fff; }
#header.scrolled .bar { background: var(--primary); }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
}
.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
#header.scrolled .logo img {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) invert(1) brightness(0.2) sepia(1) hue-rotate(180deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.3rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }
.nav-link:hover { color: var(--primary-light); }

.nav-cta {
    padding: 0.55rem 1.4rem;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}
.nav-cta:hover { background: var(--primary); border-color: var(--primary); color: #fff !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========  SCROLL REVEAL  ========== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.active { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========  HERO  ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero_export_background.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll; /* fixed causes iOS jank */
    padding-top: var(--nav-h);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(1, 28, 21, 0.97) 0%,
        rgba(6, 78, 59, 0.92) 40%,
        rgba(21, 128, 61, 0.75) 75%,
        rgba(22,163,74,0.55) 100%
    );
    z-index: 1;
}
/* Gold shimmer diagonal accent */
.hero::after {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 60%; height: 140%;
    background: radial-gradient(ellipse, rgba(217,119,6,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    animation: hero-glow 6s ease-in-out infinite alternate;
}
@keyframes hero-glow {
    from { opacity: 0.6; transform: translateY(0) scale(1); }
    to   { opacity: 1;   transform: translateY(-3%) scale(1.05); }
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 2.5rem 5rem;
    max-width: 880px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-badge i { color: var(--gold-light); font-size: 0.9rem; }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light) !important;
    display: block;
    -webkit-text-fill-color: var(--gold-light);
    background: none;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin-bottom: 2.8rem;
    line-height: 1.85;
}
.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.hero-trust-item i {
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(22,163,74,0.8), transparent);
    animation: bar-pulse 2s ease-in-out infinite;
    background: linear-gradient(180deg, #fff, transparent);
}
@keyframes bar-pulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.6)} }

/* ==========  STATS BAR  ========== */
.stats-bar {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-light), var(--gold));
    background-size: 200% 100%;
    animation: gold-flow 4s linear infinite;
}
@keyframes gold-flow { from { background-position: 0% 0; } to { background-position: 200% 0; } }
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-block {
    padding: 3.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: var(--transition);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(255,255,255,0.03); }
.stat-block::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}
.stat-num .suffix { font-size: 2.1rem; margin-bottom: 2px; }
.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 0.7rem;
    display: block;
}

/* ==========  ABOUT SECTION  ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-primary), 0 0 0 4px rgba(21,128,61,0.15);
    min-width: 130px;
    border: 1px solid rgba(255,255,255,0.1);
}
.badge-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.badge-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-top: 0.3rem;
    display: block;
}
.about-corner {
    position: absolute;
    top: -1rem; left: -1rem;
    width: 90px; height: 90px;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 12px 0 0 0;
    transition: all 0.5s var(--ease);
}
.about-img-wrap:hover .about-corner { top: -0.5rem; left: -0.5rem; }

.about-checks { margin: 2rem 0; }
.about-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text-body);
}
.check-icon {
    width: 22px; height: 22px;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========  CERTIFICATIONS BAR  ========== */
.cert-strip {
    background: linear-gradient(90deg, #f0fdf4 0%, #fff 50%, #f0fdf4 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 0;
}
.cert-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.cert-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-transform: uppercase;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.cert-pill:last-child { border-right: none; }
.cert-pill:hover { color: var(--primary); background: rgba(21,128,61,0.04); }
.cert-pill i { color: var(--gold); font-size: 1rem; }

/* ==========  INFRA CARDS  ========== */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.infra-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.infra-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.infra-card:hover { box-shadow: var(--shadow-md); transform: translateY(-8px); border-color: var(--border-strong); }
.infra-card:hover::before { transform: scaleX(1); }
.infra-icon {
    width: 62px; height: 62px;
    background: linear-gradient(135deg, rgba(21,128,61,0.08), rgba(22,163,74,0.15));
    border: 1.5px solid rgba(21,128,61,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.infra-card:hover .infra-icon {
    background: linear-gradient(135deg, var(--primary), #16a34a);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
    transform: scale(1.08) rotate(-3deg);
}
.infra-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.infra-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }

/* ==========  PRODUCTS  ========== */
.product-filters {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid var(--border-strong);
    background: var(--bg-white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary), #16a34a);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 2px var(--primary);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 3;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: transparent;
}
.product-card:hover::after { opacity: 1; }
.product-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}
.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.08); }

.product-ribbon {
    position: absolute;
    top: 1rem; left: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(217,119,6,0.4);
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(1,28,21,0.85) 0%, rgba(21,128,61,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}
.product-card:hover .product-overlay { opacity: 1; }
.inquiry-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(22,163,74,0.4);
}
.inquiry-btn:hover { background: var(--primary-light); box-shadow: 0 8px 25px rgba(22,163,74,0.5); }

.product-body {
    padding: 1.5rem 1.6rem 1.8rem;
}
.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.product-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.65;
    min-height: 44px;
}
.product-specs {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 0.3px;
}
.product-specs i { color: var(--primary); margin-right: 4px; }

.more-cta {
    margin-top: 3rem;
    background: linear-gradient(125deg, var(--bg-dark) 0%, #0a4a2a 50%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-lg);
}
.more-cta::before {
    content: '';
    position: absolute;
    top: -40%; right: -5%;
    width: 50%; height: 200%;
    background: radial-gradient(ellipse, rgba(217,119,6,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.more-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.more-cta-text p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ==========  MARKETS  ========== */
.markets-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.market-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.market-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(180deg, var(--primary), var(--gold));
    transition: height 0.4s var(--ease);
}
.market-card:hover { box-shadow: var(--shadow-md); transform: translateX(5px); border-color: var(--border-strong); }
.market-card:hover::before { height: 100%; }
.market-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.8rem; transition: var(--transition); }
.market-card:hover .market-icon { color: var(--gold); transform: scale(1.1); }
.market-card h4 { font-size: 1rem; color: var(--text-dark); font-weight: 700; margin-bottom: 0.3rem; }
.market-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.market-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(21,128,61,0.1), rgba(22,163,74,0.08));
    border: 1px solid rgba(21,128,61,0.25);
    color: var(--primary);
    letter-spacing: 0.3px;
}

/* Process panel */
.process-panel {
    background: var(--bg-navy);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
}
.process-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 2.5rem;
}
.process-panel h3 span { color: var(--primary-light); }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
    display: flex;
    gap: 1.4rem;
    position: relative;
    padding-bottom: 2rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 46px;
    width: 2px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(22,163,74,0.5), transparent);
}
.step-dot {
    width: 44px; height: 44px;
    background: rgba(22,163,74,0.12);
    border: 2px solid rgba(22,163,74,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--primary-light);
    flex-shrink: 0;
    transition: var(--transition);
}
.process-step:hover .step-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.step-txt h4 { font-size: 0.95rem; color: #fff; font-weight: 700; margin-bottom: 0.3rem; }
.step-txt p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ==========  GALLERY  ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--bg-light);
}
.gi-1 { grid-column: span 5; grid-row: span 2; }
.gi-2 { grid-column: span 4; }
.gi-3 { grid-column: span 3; }
.gi-4 { grid-column: span 3; }
.gi-5 { grid-column: span 4; }
.gi-6 { grid-column: span 5; grid-row: span 1; }


.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    border-radius: 0;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(2,44,34,0.88) 0%, transparent 100%);
    padding: 2rem 1.4rem 1.2rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption span {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.gallery-caption span i { color: var(--primary-light); font-size: 0.8rem; }

/* ==========  TESTIMONIALS  ========== */
.testimonials-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-lg);
    padding: 2.4rem 2.2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    border-color: transparent;
    border-left-color: var(--gold);
}
.tc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.tc-stars { display: flex; gap: 4px; }
.tc-stars i { color: var(--gold); font-size: 0.9rem; }
.tc-quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.8;
    color: rgba(217,119,6,0.12);
    margin-top: -0.3rem;
    font-weight: 900;
}
.tc-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 2rem;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.tc-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); font-weight: 700; }
.tc-author span { font-size: 0.82rem; color: var(--text-muted); display: block; margin-top: 0.15rem; }

/* ==========  CONTACT  ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: start;
}
.contact-lhs .section-title { color: var(--text-dark); }
.contact-lhs .section-lead { margin-bottom: 2.5rem; }

.contact-cards { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(22,163,74,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-card:hover .contact-card-icon { background: var(--primary); color: #fff; }
.contact-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
.contact-card a, .contact-card p { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.contact-card a:hover { color: var(--primary); }
.contact-card.wa .contact-card-icon { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-card.wa:hover .contact-card-icon { background: #25D366; color: #fff; }
.contact-card.wa a { color: #128C7E; }

.hours-note {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hours-note i { color: var(--primary); }

/* Form */
.form-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-light));
    background-size: 200% 100%;
    animation: gold-flow 4s linear infinite;
}
.form-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,127,163,0.55); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; }
.submit-btn { width: 100%; padding: 1.1rem; font-size: 1rem; border-radius: 10px; margin-top: 0.5rem; }
.submit-btn i { font-size: 1.1rem; }
.form-secure {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.form-secure i { color: var(--primary); }

/* Auth Banner */
.form-auth-banner {
    margin: -3rem -3rem 2rem -3rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}
.auth-banner-locked {
    display: flex; align-items: center; gap: 0.7rem;
    background: linear-gradient(135deg, rgba(217,119,6,0.08), rgba(217,119,6,0.04));
    border: 1px solid rgba(217,119,6,0.15);
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem; font-weight: 600;
    color: var(--gold);
}
.auth-banner-locked i { font-size: 1rem; }
.auth-banner-locked span { flex: 1; }
.auth-banner-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, var(--primary), #16a34a);
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.78rem; font-weight: 700;
    box-shadow: 0 4px 12px rgba(21,128,61,0.25);
    transition: var(--transition);
    white-space: nowrap;
}
.auth-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(21,128,61,0.35); }
.auth-banner-verified {
    display: flex; align-items: center; gap: 0.7rem;
    background: rgba(21,128,61,0.06);
    border: 1px solid rgba(21,128,61,0.15);
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary-dark);
}
.auth-banner-verified i { color: var(--primary); font-size: 1.1rem; }
.auth-banner-verified span { flex: 1; }
.auth-banner-signout {
    background: none; border: 1px solid rgba(239,68,68,0.2);
    color: #dc2626; font-size: 0.75rem; font-weight: 600;
    padding: 0.35rem 0.8rem; border-radius: 6px;
    cursor: pointer; transition: var(--transition);
}
.auth-banner-signout:hover { background: #dc2626; color: #fff; }

/* Step Progress */
.form-steps {
    display: flex; align-items: center;
    margin-bottom: 2rem;
    gap: 0;
}
.form-step {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}
.form-step.active { color: var(--primary); }
.form-step.completed { color: var(--primary); }
.step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800;
    border: 2px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-cream);
    transition: var(--transition);
    flex-shrink: 0;
}
.form-step.active .step-num {
    background: linear-gradient(135deg, var(--primary), #16a34a);
    color: #fff; border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(21,128,61,0.3);
}
.form-step.completed .step-num {
    background: var(--primary); color: #fff; border-color: var(--primary);
}
.step-line {
    flex: 1; height: 2px;
    background: var(--border);
    margin: 0 0.5rem;
    position: relative;
    min-width: 20px;
}
.step-line.active { background: linear-gradient(90deg, var(--primary), var(--gold)); }

/* Step Content */
.form-step-content { display: none; animation: fadeInStep 0.4s ease; }
.form-step-content.active { display: block; }
@keyframes fadeInStep { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Form Button Row */
.form-btn-row {
    display: flex; gap: 1rem;
    margin-top: 0.5rem;
}

/* Form label icons */
.form-group label i {
    color: var(--primary);
    margin-right: 0.3rem;
    font-size: 0.72rem;
    opacity: 0.7;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 2.5rem 1rem;
    animation: fadeInStep 0.5s ease;
}
.success-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    animation: successPop 0.6s cubic-bezier(0.16,1,0.3,1);
}
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}


/* ==========  FOOTER  ========== */
footer {
    background: linear-gradient(160deg, #010e0a 0%, var(--bg-dark) 50%, #021a10 100%);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-light), var(--gold));
    background-size: 200% 100%;
    animation: gold-flow 4s linear infinite;
}
footer::after {
    content: '';
    position: absolute;
    bottom: 0; right: -10%;
    width: 50%; height: 60%;
    background: radial-gradient(ellipse, rgba(21,128,61,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}
.footer-brand .logo { font-size: 1.5rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9rem; line-height: 1.9; max-width: 320px; margin-bottom: 1.8rem; }
.social-row { display: flex; gap: 0.8rem; }
.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-btn:hover { background: linear-gradient(135deg, var(--primary), #16a34a); border-color: transparent; color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-primary); }

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-light);
    margin-bottom: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 0.9rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.footer-col ul li a i { color: var(--primary); font-size: 0.78rem; width: 14px; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 5px; }
.footer-col ul li a:hover i { color: var(--gold-light); }

.footer-bottom {
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.2); }

/* ==========  RESPONSIVE  ========== */

/* --- 1200px: Large tablets / small desktops --- */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .gallery-grid { grid-template-rows: 220px 220px; }
    .infra-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 1024px: Tablets landscape --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-main { height: 380px; }
    .about-img-badge { right: 1rem; bottom: -1rem; }
    .markets-layout { grid-template-columns: 1fr; gap: 3rem; }
    .markets-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .testimonials-wrap { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
        grid-column: span 1;
        grid-row: span 1;
        height: 240px;
    }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-block { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .stat-block:nth-child(even) { border-right: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 768px: Tablets portrait & large phones --- */
@media (max-width: 768px) {
    :root {
        --section-py: 3.5rem;
        --nav-h: 64px;
    }

    /* Nav */
    .hamburger { display: flex; }
    .nav-container { padding: 0 1.25rem; }
    nav { position: static; }
    #nav-links {
        position: fixed;
        top: 0; left: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(2,44,34,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem !important;
        transition: left 0.4s ease;
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 2rem;
        text-align: center;
        overflow-y: auto;
        box-sizing: border-box;
    }
    #nav-links.active { left: 0; }
    #nav-links li { width: 100%; text-align: center; }
    .nav-link { font-size: 1.5rem !important; color: #fff !important; display: block; width: 100%; text-align: center; padding: 0.4rem 0; }
    .nav-cta {
        font-size: 1.1rem !important;
        border-color: rgba(255,255,255,0.5) !important;
        color: #fff !important;
        padding: 0.8rem 2.5rem !important;
        display: inline-block !important;
    }
    #header.scrolled .bar { background: var(--primary); }

    /* Logo */
    .logo img { height: 40px; }

    /* Hero */
    .hero { background-attachment: scroll; overflow: hidden; }
    .hero-content { padding: 3rem 1.25rem 4rem; max-width: 100%; }
    .hero h1 { font-size: clamp(1.9rem, 6vw, 2.4rem); letter-spacing: -0.3px; }
    .hero-desc { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .hero-actions .btn { width: 100%; justify-content: center; max-width: 360px; }
    .hero-trust { gap: 1rem; flex-wrap: wrap; }
    .hero-trust-item { font-size: 0.82rem; }
    .hero-badge { font-size: 0.7rem; letter-spacing: 1.5px; }

    /* Stats */
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-block { padding: 2rem 1rem; }
    .stat-num { font-size: 2.4rem; }

    /* Sections */
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-header { margin-bottom: 2.5rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-main { height: 280px; }
    .about-img-badge { right: 0.5rem; bottom: -1rem; padding: 1.2rem 1.4rem; }
    .badge-num { font-size: 2rem; }

    /* Infra */
    .infra-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .infra-card { padding: 2rem 1.6rem; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .product-filters { gap: 0.5rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.82rem; }
    .product-img { height: 200px; }
    .product-body { padding: 1.1rem 1.2rem 1.4rem; }
    .more-cta { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }

    /* Markets */
    .markets-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .market-card { padding: 1.2rem 1rem; }
    .process-panel { padding: 2rem 1.5rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 { grid-column: span 1; grid-row: span 1; height: 180px; }

    /* Testimonials */
    .testimonials-wrap { grid-template-columns: 1fr; gap: 1.2rem; }
    .testimonial-card { padding: 1.8rem 1.5rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-box { padding: 2rem 1.25rem; }

    /* Certs */
    .cert-inner { justify-content: flex-start; gap: 0; }
    .cert-pill { border-right: none; border-bottom: 1px solid var(--border); font-size: 0.76rem; padding: 0.5rem 1rem; width: 50%; }
    .cert-pill:nth-child(odd) { border-right: 1px solid var(--border); }
    .cert-pill:last-child { border-bottom: none; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
    .social-row { justify-content: flex-start; }

    /* Floating WA */
    .floating-whatsapp { width: 52px; height: 52px; font-size: 26px; bottom: 24px; right: 18px; }
}

/* --- 480px: Small phones --- */
@media (max-width: 480px) {
    :root { --section-py: 2.8rem; }

    .hero h1 { font-size: clamp(1.65rem, 7vw, 2rem); letter-spacing: 0; }
    .hero-content { padding: 2.5rem 1.25rem 3rem; }
    .hero-trust { flex-direction: column; gap: 0.8rem; }

    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-block { padding: 1.5rem 0.8rem; }
    .stat-num { font-size: 2rem; }

    .products-grid { grid-template-columns: 1fr; }
    .product-img { height: 220px; }

    .markets-grid { grid-template-columns: 1fr; }
    .market-card:hover { transform: none; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 { height: 200px; }

    .form-box { padding: 1.5rem 1rem; }
    .btn-lg { padding: 0.95rem 1.6rem; font-size: 0.95rem; }

    .cert-pill { width: 100%; border-right: none !important; border-bottom: 1px solid var(--border); }
    .cert-pill:last-child { border-bottom: none; }

    .footer-grid { gap: 1.8rem; }
    .floating-whatsapp { width: 48px; height: 48px; font-size: 24px; bottom: 20px; right: 14px; }

    .section-title { font-size: clamp(1.45rem, 7vw, 1.8rem); }
    .about-img-main { height: 240px; }
    .about-img-badge { position: static; margin-top: 1rem; border-radius: var(--radius); display: inline-block; }
    .about-corner { display: none; }
}


/* ==========  PRODUCT MODAL  ========== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0; width: 100%; height: 100%; 
    overflow: auto; 
    background-color: rgba(2, 44, 34, 0.7); 
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show {
    display: block;
    opacity: 1;
}
.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto; 
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%; 
    max-width: 900px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.modal.show .modal-content {
    transform: translateY(0);
}
.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    transition: color 0.3s;
}
.close-modal:hover { color: var(--primary); }

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}
.modal-info-col {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-specs span {
    display: flex; align-items: center; gap: 0.5rem;
}
.modal-specs i { color: var(--primary); }

@media (max-width: 768px) {
    .modal-grid { grid-template-columns: 1fr; }
    .modal-info-col { padding: 2rem 1.5rem; }
    .modal-content { margin: 10% auto; }
}

.product-card { cursor: pointer; }

/* ==========  FAQ SECTION  ========== */
.faq-grid { display:flex; flex-direction:column; gap:1rem; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
    padding: 1.4rem 1.8rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-body {
    padding: 0 1.8rem 1.4rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.96rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* ==========  BLOG PREVIEW GRID  ========== */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1024px) { .blog-preview-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .blog-preview-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
.blog-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217,119,6,0.2), transparent);
}
.blog-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat-badge {
    display: inline-block;
    background: rgba(21,128,61,0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(21,128,61,0.2);
}
.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    line-height: 1.4;
}
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.blog-card-meta a { color: var(--primary); font-weight: 700; font-size: 0.82rem; }
.blog-card-meta a:hover { text-decoration: underline; }

/* ==========  BLOG PAGE STYLES  ========== */
.blog-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 9rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero::after {
    content:'';
    position:absolute;
    top:-20%;right:-10%;
    width:60%;height:160%;
    background: radial-gradient(ellipse, rgba(217,119,6,0.12) 0%, transparent 65%);
    pointer-events:none;
}
.blog-search-wrap {
    max-width:600px;
    margin: 2rem auto 0;
    position:relative;
}
.blog-search-input {
    width:100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    backdrop-filter: blur(12px);
    outline: none;
    transition: var(--transition);
}
.blog-search-input::placeholder { color: rgba(255,255,255,0.5); }
.blog-search-input:focus { border-color: var(--primary-light); background: rgba(255,255,255,0.12); }
.blog-search-btn {
    position:absolute; right:6px; top:50%; transform:translateY(-50%);
    background: var(--primary);
    color:#fff; border:none; border-radius:50px;
    padding:0.7rem 1.4rem; cursor:pointer; font-weight:700; font-size:0.88rem;
    transition: var(--transition);
}
.blog-search-btn:hover { background: var(--primary-light); }

.blog-cats {
    display:flex; flex-wrap:wrap; gap:0.75rem; justify-content:center; margin:2.5rem 0;
}
.blog-cat-btn {
    padding:0.55rem 1.4rem;
    border-radius:50px;
    border: 2px solid var(--border-strong);
    background: var(--bg-white);
    color: var(--text-body);
    font-size:0.85rem; font-weight:600; cursor:pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.blog-cat-btn.active,
.blog-cat-btn:hover { background: var(--primary); color:#fff; border-color:var(--primary); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-pagination {
    display:flex; gap:0.5rem; justify-content:center; flex-wrap:wrap; margin-top:3rem;
}
.page-btn {
    width:42px; height:42px;
    border-radius:10px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    color: var(--text-body);
    font-weight:700; font-size:0.9rem; cursor:pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    display:flex; align-items:center; justify-content:center;
}
.page-btn.active,
.page-btn:hover { background: var(--primary); color:#fff; border-color:var(--primary); }

/* ==========  BLOG POST PAGE  ========== */
.post-hero {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark));
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.post-breadcrumb {
    display: flex; gap: 0.5rem; align-items: center;
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    margin-bottom: 2rem; flex-wrap: wrap;
}
.post-breadcrumb a { color: var(--primary-light); }
.post-breadcrumb span { color: rgba(255,255,255,0.3); }
.post-meta-row {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
}
.post-meta-row i { color: var(--gold-light); }

.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    padding: 5rem 0;
    align-items: start;
}
@media (max-width: 1024px) { .post-layout { grid-template-columns: 1fr; } }

.post-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-body);
}
.post-body h2 { font-family: var(--font-heading); font-size: 1.65rem; color: var(--text-dark); margin: 2.5rem 0 1rem; font-weight: 700; }
.post-body h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-dark); margin: 2rem 0 0.8rem; font-weight: 700; }
.post-body p { margin-bottom: 1.4rem; }
.post-body ul { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-body ul li { margin-bottom: 0.5rem; }
.post-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 1.2rem 1.8rem;
    background: rgba(21,128,61,0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-body);
}

.post-sidebar { position: sticky; top: 100px; }
.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border);
}
.related-post-item {
    display: flex; gap: 0.8rem; align-items: flex-start;
    padding: 0.8rem 0; border-bottom: 1px solid var(--border);
}
.related-post-item:last-child { border-bottom: none; }
.related-post-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(21,128,61,0.1); color: var(--primary);
    font-size: 0.8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.related-post-item a { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.related-post-item a:hover { color: var(--primary); }

/* Comments Section */
.comments-section { margin-top: 4rem; padding-top: 3rem; border-top: 2px solid var(--border); }
.comments-section h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2rem; }

.comment-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.comment-card:hover { border-color: var(--primary); }
.comment-card.reply {
    margin-left: 2.5rem;
    background: rgba(21,128,61,0.03);
    border-color: rgba(21,128,61,0.2);
}
.comment-header {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem;
}
.comment-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.comment-info strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.comment-info span { font-size: 0.78rem; color: var(--text-muted); }
.comment-text { font-size: 0.93rem; color: var(--text-body); line-height: 1.75; }

.comment-form {
    margin-top: 2.5rem;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.comment-form h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; }

/* Share row */
.share-row {
    display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 2rem 0;
}
.share-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.2rem; border-radius: 8px;
    font-size: 0.85rem; font-weight: 700; cursor: pointer;
    border: none; transition: var(--transition);
    color: #fff;
}
.share-linkedin { background: #0077B5; }
.share-linkedin:hover { background: #005582; transform: translateY(-2px); }
.share-twitter  { background: #1DA1F2; }
.share-twitter:hover  { background: #0d8fd9; transform: translateY(-2px); }
.share-whatsapp { background: #25D366; }
.share-whatsapp:hover { background: #1aab52; transform: translateY(-2px); }

@media (max-width: 768px) {
    .faq-item summary { padding: 1.1rem 1.3rem; font-size: 0.93rem; }
    .faq-body { padding: 0 1.3rem 1.1rem; padding-top: 0.8rem; }
    .post-layout { padding: 3rem 0; }
    .blog-grid, .blog-preview-grid { grid-template-columns: 1fr; }
}
