/* =========================================
   YUVA EXIM — PROFESSIONAL REDESIGN 2026
   Clean B2B Export Company Aesthetic
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
    /* Core Palette */
    --navy:       #0f1f3d;
    --navy-light: #1a3260;
    --gold:       #c9993a;
    --gold-light: #e8b84b;
    --gold-pale:  #f5e4b8;
    
    /* Backgrounds */
    --bg-white:   #ffffff;
    --bg-cream:   #faf8f4;
    --bg-light:   #f4f1eb;
    --bg-navy:    #0f1f3d;
    --bg-dark:    #08152a;
    
    /* Text */
    --text-dark:  #0f1f3d;
    --text-body:  #3d4f6e;
    --text-muted: #6b7fa3;
    --text-white: #ffffff;
    
    /* Borders */
    --border:     rgba(15, 31, 61, 0.1);
    --border-gold: rgba(201, 153, 58, 0.3);
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --section-py: 6rem;
    --max-w:      1280px;
    --nav-h:      80px;
    
    /* Effects */
    --shadow-sm:  0 2px 8px rgba(15,31,61,0.08);
    --shadow-md:  0 8px 30px rgba(15,31,61,0.12);
    --shadow-lg:  0 20px 60px rgba(15,31,61,0.18);
    --shadow-gold: 0 8px 30px rgba(201,153,58,0.25);
    --radius:     12px;
    --radius-lg:  20px;
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.35s var(--ease);
}

/* ==========  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%; }
body { font-family: var(--font-body); background: var(--bg-white); color: var(--text-body); line-height: 1.7; overflow-x: hidden; }
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 2rem; width: 100%; }
.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); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.section-title .gold { color: var(--gold); }
.section-title.on-dark { color: var(--text-white); }
.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.8;
}
.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.6rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    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);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,153,58,0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-white {
    background: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--gold-pale);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.88rem; }

/* shine sweep on gold buttons */
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 80px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn-gold:hover::after { left: 130%; }

/* ==========  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.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 68px;
}
#header.scrolled .logo { color: var(--navy); }
#header.scrolled .logo .gold-part { color: var(--gold); }
#header.scrolled .nav-link { color: var(--text-body); }
#header.scrolled .nav-link:hover { color: var(--gold); }
#header.scrolled .nav-cta { border-color: var(--gold); color: var(--gold); }
#header.scrolled .nav-cta:hover { background: var(--gold); color: #fff; }
#header.scrolled .bar { background: var(--navy); }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo .gold-part { color: var(--gold-light); }

.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(--gold-light);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }
.nav-link:hover { color: var(--gold-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(--gold); border-color: var(--gold); 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: fixed;
    padding-top: var(--nav-h);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(8, 21, 42, 0.93) 0%,
        rgba(15, 31, 61, 0.82) 55%,
        rgba(8, 21, 42, 0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2.5rem 5rem;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,153,58,0.15);
    border: 1px solid rgba(201,153,58,0.45);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold-light); font-size: 0.85rem; }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.8rem;
    font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.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: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.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.2rem;
}

/* 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(201,153,58,0.8), transparent);
    animation: bar-pulse 2s ease-in-out infinite;
}
@keyframes bar-pulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.6)} }

/* ==========  STATS BAR  ========== */
.stats-bar {
    background: var(--bg-navy);
    padding: 0;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-block {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}
.stat-num .suffix { font-size: 2rem; margin-bottom: 2px; }
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.6rem;
    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: var(--gold);
    color: #fff;
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
    min-width: 130px;
}
.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(--gold);
    border-left: 3px solid var(--gold);
    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(201,153,58,0.12);
    border: 1px solid rgba(201,153,58,0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========  CERTIFICATIONS BAR  ========== */
.cert-strip {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.6rem 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 1.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-body);
    text-transform: uppercase;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.cert-pill:last-child { border-right: none; }
.cert-pill:hover { color: var(--gold); }
.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;
}
.infra-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.infra-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.infra-card:hover::before { transform: scaleX(1); }
.infra-icon {
    width: 58px; height: 58px;
    background: rgba(201,153,58,0.1);
    border: 1px solid rgba(201,153,58,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.infra-card:hover .infra-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.infra-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.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.88rem;
    font-weight: 700;
    border: 2px solid var(--border);
    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: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}
.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);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(201,153,58,0.4);
}
.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: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    z-index: 2;
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,21,42,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(3px);
}
.product-card:hover .product-overlay { opacity: 1; }
.inquiry-btn {
    background: var(--gold);
    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(201,153,58,0.4);
}
.inquiry-btn:hover { background: var(--gold-light); box-shadow: 0 8px 25px rgba(201,153,58,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(--gold); margin-right: 4px; }

.more-cta {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--bg-navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.more-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.4rem;
}
.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;
}
.market-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.4s var(--ease);
}
.market-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.market-card:hover::before { height: 100%; }
.market-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.8rem; }
.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.72rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    background: rgba(201,153,58,0.1);
    border: 1px solid rgba(201,153,58,0.3);
    color: var(--gold);
    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(--gold-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(201,153,58,0.5), transparent);
}
.step-dot {
    width: 44px; height: 44px;
    background: rgba(201,153,58,0.12);
    border: 2px solid rgba(201,153,58,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--gold-light);
    flex-shrink: 0;
    transition: var(--transition);
}
.process-step:hover .step-dot {
    background: var(--gold);
    border-color: var(--gold);
    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(8,21,42,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(--gold-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-radius: var(--radius-lg);
    padding: 2.4rem 2.2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: rgba(201,153,58,0.3); }
.tc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.tc-stars { display: flex; gap: 3px; }
.tc-stars i { color: var(--gold); font-size: 0.88rem; }
.tc-quote {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(201,153,58,0.15);
    margin-top: -0.5rem;
}
.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(--gold); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(201,153,58,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-card:hover .contact-card-icon { background: var(--gold); 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(--gold); }
.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(--gold); }

/* Form */
.form-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.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(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201,153,58,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(--gold); }

/* ==========  FOOTER  ========== */
footer {
    background: var(--bg-dark);
    padding-top: 5rem;
}
.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.06);
}
.footer-brand .logo { font-size: 1.5rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,0.45); 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: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    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.5);
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 1.6rem;
}
.footer-col ul li { margin-bottom: 0.9rem; }
.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.footer-col ul li a i { color: var(--gold); font-size: 0.8rem; width: 14px; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }

.footer-bottom {
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.25); }

/* ==========  RESPONSIVE  ========== */
@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; }
}

@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: 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; }
}

@media (max-width: 768px) {
    :root { --section-py: 4rem; }
    .hamburger { display: flex; }
    #nav-links {
        position: fixed;
        inset: 0;
        background: rgba(8,21,42,0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem !important;
        left: -100%;
        transition: left 0.4s var(--ease);
        backdrop-filter: blur(20px);
        z-index: 1000;
    }
    #nav-links.active { left: 0; }
    .nav-link { font-size: 1.5rem !important; color: #fff !important; }
    .nav-cta { font-size: 1.2rem !important; border-color: rgba(255,255,255,0.5) !important; color: #fff !important; }
    #header.scrolled .bar { background: var(--navy); }

    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-trust { gap: 1.5rem; }

    .products-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr 1fr; }
    .infra-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .more-cta { flex-direction: column; text-align: center; }
    .cert-inner { justify-content: flex-start; }
    .cert-pill { border-right: none; font-size: 0.76rem; padding: 0.5rem 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 { height: 220px; }
    .testimonials-wrap { grid-template-columns: 1fr; }
    .form-box { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: 1fr; }
    .floating-whatsapp { width: 52px; height: 52px; font-size: 28px; bottom: 24px; right: 20px; }
}
