/* ============================================================
   IMPERION ENTERPRISES — GLOBAL STYLESHEET
   Custom CSS only. No frameworks.
   Design direction: "Trade Corridor" — navy & gold, maritime,
   editorial spacing, one signature (the sea-lane route map).
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    /* Brand core (locked) */
    --primary-blue: #1A365D;
    --primary-blue-dark: #132A4A;
    --secondary-gold: #D69E2E;
    --secondary-gold-dark: #B7831F;
    --light-bg: #F7FAFC;
    --pure-white: #FFFFFF;
    --dark-text: #2D3748;
    --muted-text: #718096;
    --border-color: #E2E8F0;

    /* Derived depth + tints */
    --ink: #0E1F35;                 /* deepest navy for signature panels */
    --navy-line: rgba(255,255,255,.10);
    --gold-soft: rgba(214,158,46,.12);
    --gold-line: rgba(214,158,46,.35);
    --surface-alt: #F2F6FA;         /* cool light alt */

    /* Elevation — softer, layered */
    --shadow-xs: 0 1px 2px rgba(15,33,53,.05);
    --shadow-sm: 0 2px 10px rgba(15,33,53,.06);
    --shadow-md: 0 10px 30px rgba(15,33,53,.08);
    --shadow-lg: 0 24px 60px rgba(15,33,53,.14);

    /* Geometry */
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;

    /* Rhythm */
    --section-y: clamp(4rem, 8vw, 7rem);
    --gutter: 1.5rem;

    --transition: .3s cubic-bezier(.4,0,.2,1);
    --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.7;
    background: var(--pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.15rem, 4.4vw, 3.35rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary-gold); }

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

ul { list-style: none; }

:focus-visible {
    outline: 3px solid var(--secondary-gold);
    outline-offset: 2px;
    border-radius: 3px;
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: var(--section-y) 0; }
.bg-light { background: var(--light-bg); }
.bg-ink { background: var(--ink); color: rgba(255,255,255,.86); }

/* Eyebrow — editorial label with leading rule */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--secondary-gold-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--secondary-gold);
    display: inline-block;
}
.section-header .eyebrow::before { display: none; }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}
.section-header .eyebrow { justify-content: center; }
.section-header p {
    color: var(--muted-text);
    font-size: 1.08rem;
    margin-top: .65rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .9rem 1.85rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--secondary-gold); color: #fff; border-color: var(--secondary-gold); }
.btn-gold:hover {
    background: var(--secondary-gold-dark);
    border-color: var(--secondary-gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(214,158,46,.32);
}

.btn-primary { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }
.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26,54,93,.3);
}

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: #fff; color: var(--primary-blue); border-color: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.9);
    backdrop-filter: saturate(1.4) blur(10px);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-color);
    background: rgba(255,255,255,.96);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem var(--gutter);
    gap: 2rem;
}

.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img {
    max-height: 58px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(26,54,93,.12));
}

.main-nav ul { display: flex; gap: 2.1rem; }
.main-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    color: var(--dark-text);
    position: relative;
    padding: .5rem 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--secondary-gold);
    transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--primary-blue); font-weight: 600; }

.header-cta { flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.hamburger span {
    width: 26px; height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--ink);
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.04);
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg, rgba(14,31,53,.94) 0%, rgba(19,42,74,.82) 46%, rgba(19,42,74,.55) 100%);
    z-index: 2;
}
/* Faint nautical chart lines over the hero */
.hero-overlay::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--navy-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 30% 50%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 30% 50%, #000 0%, transparent 72%);
    opacity: .5;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 5rem var(--gutter);
}
.hero .eyebrow { color: var(--secondary-gold); }
.hero .eyebrow::before { background: var(--secondary-gold); }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--secondary-gold); }
.hero p {
    color: rgba(255,255,255,.9);
    font-size: 1.16rem;
    margin-bottom: 2.4rem;
    max-width: 720px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   STATS / CREDENTIAL BAR
   ============================================================ */
.stats-section {
    background: var(--primary-blue);
    padding: 2.75rem 0;
    color: #fff;
    position: relative;
}
.stats-section::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: .2rem;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute; right: -.75rem; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 46px;
    background: rgba(255,255,255,.12);
}
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--secondary-gold);
    line-height: 1;
}
.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--secondary-gold);
}
.stat-label {
    width: 100%;
    font-size: .9rem;
    color: rgba(255,255,255,.82);
    margin-top: .55rem;
    letter-spacing: .04em;
}

/* ============================================================
   ABOUT PREVIEW (home)
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}
.about-text h2 { margin-bottom: 1.35rem; }
.about-text p { color: var(--dark-text); }
.about-text .btn { margin-top: 1.25rem; }
.about-image { position: relative; }
.about-image img,
.about-image svg {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}
/* Gold frame accent behind the image */
.about-image::before {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--gold-line);
    border-radius: var(--radius);
    z-index: -1;
}

/* ============================================================
   CARD GRIDS
   ============================================================ */
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

/* Shared paragraph treatment — LEFT aligned (no justify) */
.product-card p,
.feature-card p,
.industry-card p,
.service-detailed-card p,
.reach-item p { text-align: left; }

/* --- What We Do: product cards --- */
.product-card {
    background: var(--pure-white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--secondary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-gold);
}
.product-card:hover::before { transform: scaleX(1); }

.product-icon {
    width: 58px; height: 58px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--secondary-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.35rem;
}
.product-card h3 { margin-bottom: .7rem; font-size: 1.2rem; }
.product-card p { color: var(--muted-text); font-size: .95rem; flex-grow: 1; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.35rem;
    color: var(--secondary-gold-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .88rem;
    align-self: flex-start;
    transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: .85rem; color: var(--secondary-gold-dark); }

.center-action {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* --- Why Choose: feature cards (flatter, distinct from product cards) --- */
.feature-card {
    background: var(--pure-white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--secondary-gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}
.feature-card h3 { margin-bottom: .6rem; font-size: 1.18rem; }
.feature-card p { color: var(--muted-text); font-size: .95rem; }

/* Full-width emphasis banner within the Why-Choose grid */
.feature-card.full-width {
    grid-column: span 4;
    background: linear-gradient(120deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    align-items: center;
    padding: 2.4rem 2.75rem;
    position: relative;
    overflow: hidden;
    border: none;
}
.feature-card.full-width::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 5px; height: 100%;
    background: var(--secondary-gold);
}
.feature-card.full-width::after {
    content: '';
    position: absolute; top: -60%; right: -6%;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214,158,46,.16) 0%, transparent 70%);
}
.feature-card.full-width .feature-icon {
    background: rgba(214,158,46,.2);
    color: var(--secondary-gold);
    width: 66px; height: 66px;
    font-size: 1.6rem;
    margin-bottom: 0;
    position: relative; z-index: 2;
}
.feature-card.full-width .full-width-content { position: relative; z-index: 2; }
.feature-card.full-width h3 { color: #fff; font-size: 1.4rem; margin-bottom: .45rem; }
.feature-card.full-width p { color: rgba(255,255,255,.9); font-size: 1.02rem; }
.feature-card.full-width:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* --- Industries: compact left-accent tiles (lighter, denser) --- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.industry-card {
    background: var(--pure-white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary-gold);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--primary-blue);
}
.industry-icon { font-size: 1.9rem; color: var(--primary-blue); margin-bottom: .9rem; }
.industry-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.industry-card p { font-size: .9rem; color: var(--muted-text); flex-grow: 1; }

/* ============================================================
   SIGNATURE — GLOBAL REACH / SEA-LANE ROUTES
   ============================================================ */
.reach-section {
    background: var(--ink);
    color: rgba(255,255,255,.85);
    position: relative;
    overflow: hidden;
}
/* Nautical grid backdrop */
.reach-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--navy-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 78%);
    opacity: .55;
    pointer-events: none;
}
.reach-section .container { position: relative; z-index: 1; }
.reach-section .eyebrow { color: var(--secondary-gold); justify-content: center; }
.reach-section .eyebrow::before { display: none; }
.reach-section .section-header h2 { color: #fff; }
.reach-section .section-header p { color: rgba(255,255,255,.7); }

.route-map {
    max-width: 980px;
    margin: 0 auto 2.5rem;
}
.route-map svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Animated sea lanes */
.lane {
    fill: none;
    stroke: var(--secondary-gold);
    stroke-width: 2;
    stroke-dasharray: 7 9;
    opacity: .85;
    animation: laneFlow 2.4s linear infinite;
}
.lane-2 { animation-duration: 2.9s; }
.lane-3 { animation-duration: 3.4s; }
.lane-4 { animation-duration: 2.6s; }
.lane-5 { animation-duration: 3.1s; }
@keyframes laneFlow { to { stroke-dashoffset: -160; } }

.node-dot { fill: var(--secondary-gold); }
.node-ring { fill: none; stroke: rgba(214,158,46,.5); stroke-width: 1.5; }
.origin-pulse {
    fill: none;
    stroke: var(--secondary-gold);
    stroke-width: 2;
    transform-origin: center;
    transform-box: fill-box;
    animation: originPulse 2.8s ease-out infinite;
}
@keyframes originPulse {
    0%   { transform: scale(.6); opacity: .9; }
    70%  { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
}
.route-label {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    fill: rgba(255,255,255,.92);
}
.route-label--origin { fill: var(--secondary-gold); font-size: 22px; letter-spacing: .5px; }
.route-sub { font-family: 'Inter', sans-serif; font-size: 14px; fill: rgba(255,255,255,.55); }

/* Market legend below the map */
.reach-markets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
}
.reach-market {
    padding: 1.35rem 1.1rem;
    border: 1px solid var(--navy-line);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.03);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    text-align: left;
}
.reach-market:hover {
    border-color: var(--gold-line);
    background: rgba(214,158,46,.07);
    transform: translateY(-3px);
}
.reach-market .rm-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--secondary-gold);
    display: inline-block; margin-bottom: .7rem;
    box-shadow: 0 0 0 4px var(--gold-soft);
}
.reach-market h4 { color: #fff; font-size: 1rem; margin-bottom: .4rem; }
.reach-market p { color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-carousel { position: relative; max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .55s var(--ease-out); }
.testimonial-card {
    min-width: 100%;
    padding: clamp(2rem, 4vw, 3.25rem);
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}
.quote-icon { color: var(--secondary-gold); font-size: 2.2rem; opacity: .28; margin-bottom: 1rem; }
.stars { color: var(--secondary-gold); margin-bottom: 1.35rem; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-card > p { font-size: 1.14rem; font-style: italic; color: var(--dark-text); margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-photo {
    width: 58px; height: 58px; border-radius: 50%;
    background-color: var(--primary-blue);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><rect fill='%231A365D' width='60' height='60'/><circle cx='30' cy='22' r='10' fill='%23D69E2E'/><path d='M10 55 Q30 35 50 55 Z' fill='%23D69E2E'/></svg>");
    background-size: cover; background-position: center;
    flex-shrink: 0;
    border: 3px solid var(--secondary-gold);
}
.testimonial-author h4 { margin-bottom: .1rem; font-size: 1rem; text-align: left; }
.testimonial-author span { color: var(--muted-text); font-size: .85rem; text-align: left; display: block; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2rem; }
.carousel-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--pure-white);
    border: 1.5px solid var(--border-color);
    color: var(--primary-blue);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dots .dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--border-color);
    cursor: pointer; border: none;
    transition: width var(--transition), background var(--transition);
}
.carousel-dots .dot.active { background: var(--secondary-gold); width: 26px; border-radius: 5px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(120deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: var(--section-y) 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -50%; right: -8%;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(214,158,46,.16) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; margin: 0 auto 1rem; max-width: 780px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.14rem; margin: 0 auto 2rem; max-width: 680px; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
    background: linear-gradient(120deg, var(--ink) 0%, var(--primary-blue) 100%);
    color: #fff;
    padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(3rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--navy-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
    opacity: .5;
}
.page-header h1 { color: #fff; margin-bottom: .6rem; position: relative; }
.page-subtitle { color: rgba(255,255,255,.85); font-size: 1.18rem; max-width: 680px; margin: 0 auto; position: relative; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { max-width: 820px; margin: 0 auto; }
.lead-paragraph {
    font-size: 1.24rem;
    line-height: 1.75;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 2.75rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.lead-paragraph p { font-size: inherit; line-height: inherit; }
.about-block { margin-bottom: 2.75rem; }
.about-block:last-child { margin-bottom: 0; }
.about-block h2 { margin-bottom: 1.1rem; position: relative; padding-left: 1.35rem; }
.about-block h2::before {
    content: '';
    position: absolute; left: 0; top: .35rem;
    width: 4px; height: calc(100% - .5rem); min-height: 1.6rem;
    background: var(--secondary-gold);
    border-radius: 2px;
}
.about-block p { color: var(--dark-text); }

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
    max-width: 860px;
    margin: 0 auto;
}
.team-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo {
    width: 132px; height: 132px; border-radius: 50%;
    margin: 0 auto 1.4rem;
    background-color: var(--primary-blue);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'><rect fill='%231A365D' width='140' height='140'/><circle cx='70' cy='55' r='25' fill='%23D69E2E'/><path d='M20 135 Q70 85 120 135 Z' fill='%23D69E2E'/></svg>");
    background-size: cover; background-position: center;
    border: 4px solid var(--secondary-gold);
}
.team-card h3 { margin-bottom: .2rem; }
.team-role {
    display: block;
    color: var(--secondary-gold-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}
.team-card p { color: var(--muted-text); font-size: .95rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro { max-width: 820px; margin: 0 auto; text-align: center; }
.services-intro p { font-size: 1.12rem; color: var(--muted-text); }

.services-detailed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.service-detailed-card {
    background: var(--pure-white);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.service-detailed-card::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--secondary-gold);
    transform: scaleY(0); transform-origin: top;
    transition: transform var(--transition);
}
.service-detailed-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detailed-card:hover::before { transform: scaleY(1); }
.service-icon-large {
    width: 66px; height: 66px; border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--secondary-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.4rem;
}
.service-detailed-card h2 { font-size: 1.35rem; margin-bottom: .9rem; }
.service-detailed-card p { color: var(--muted-text); font-size: .96rem; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-carousel-section { padding: clamp(2.5rem, 5vw, 3.5rem) 0; background: var(--light-bg); }
.product-carousel {
    position: relative; max-width: 1000px; margin: 0 auto;
    overflow: hidden; border-radius: var(--radius-lg);
    background: var(--primary-blue);
    box-shadow: var(--shadow-md);
}
.product-carousel-track { display: flex; transition: transform .55s var(--ease-out); }
.product-carousel-slide {
    min-width: 100%; aspect-ratio: 16 / 9;
    background-size: cover; background-position: center;
    background-color: var(--primary-blue); background-repeat: no-repeat;
    position: relative;
}
.product-carousel-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,31,53,.65) 0%, transparent 55%);
}
.product-carousel .carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; }
.product-carousel .carousel-arrow.prev { left: 1rem; }
.product-carousel .carousel-arrow.next { right: 1rem; }
.product-carousel .carousel-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 5; }
.no-products-message { text-align: center; padding: 4rem 2rem; color: var(--muted-text); }
.no-products-message i { font-size: 3rem; color: var(--secondary-gold); margin-bottom: 1rem; }

.product-category { padding: var(--section-y) 0; }
.category-grid { max-width: 1100px; }
.category-header {
    display: flex; align-items: center; gap: 1.15rem;
    margin-bottom: 2rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.category-icon {
    width: 58px; height: 58px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--secondary-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem; flex-shrink: 0;
}
.category-header h2 { margin-bottom: 0; }
.category-content { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.category-text p { color: var(--dark-text); }
.quality-note {
    background: var(--gold-soft);
    border-left: 4px solid var(--secondary-gold);
    padding: 1rem 1.25rem; margin-top: 1.5rem; border-radius: 8px;
    display: flex; gap: .75rem; align-items: flex-start;
}
.quality-note i { color: var(--secondary-gold-dark); font-size: 1.2rem; margin-top: .15rem; }
.quality-note span { color: var(--dark-text); font-size: .93rem; font-style: italic; }
.category-products {
    background: var(--pure-white); padding: 2rem;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: sticky; top: 110px;
}
.category-products h3 {
    color: var(--primary-blue); margin-bottom: 1.2rem; font-size: 1.12rem;
    padding-bottom: .75rem; border-bottom: 2px solid var(--secondary-gold);
}
.category-products li {
    padding: .65rem 0; color: var(--dark-text); font-size: .94rem;
    display: flex; align-items: flex-start; gap: .6rem;
    border-bottom: 1px solid var(--border-color);
}
.category-products li:last-child { border-bottom: none; }
.category-products li i { color: var(--secondary-gold); margin-top: .28rem; flex-shrink: 0; }
.category-products li strong { color: var(--primary-blue); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-y) 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
.contact-form-wrapper {
    background: var(--pure-white); padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.contact-form-wrapper h2 { margin-bottom: .4rem; }
.contact-form-wrapper > p { color: var(--muted-text); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; font-family: 'Poppins', sans-serif; font-weight: 500;
    font-size: .88rem; color: var(--dark-text); margin-bottom: .45rem;
}
.required { color: #E53E3E; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .85rem 1rem;
    border: 1.5px solid var(--border-color); border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: .95rem;
    color: var(--dark-text); background: var(--pure-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(214,158,46,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #E53E3E; }
.error-text { display: block; color: #E53E3E; font-size: .8rem; margin-top: .35rem; min-height: 1em; }
.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: .5rem; }
.form-message { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: .95rem; }
.form-message.success { background: #C6F6D5; color: #22543D; border-left: 4px solid #38A169; }
.form-message.error { background: #FED7D7; color: #742A2A; border-left: 4px solid #E53E3E; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
    background: linear-gradient(150deg, var(--primary-blue), var(--primary-blue-dark));
    color: #fff; padding: clamp(1.75rem, 3vw, 2.5rem) 2rem;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.info-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.info-item:last-of-type { border-bottom: none; }
.info-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(214,158,46,.2); color: var(--secondary-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.info-item h4 { color: #fff; margin-bottom: .25rem; font-size: 1rem; }
.info-item p { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.6; }
.info-item a { color: rgba(255,255,255,.85); }
.info-item a:hover { color: var(--secondary-gold); }
.contact-info-card .btn { margin-top: 1.5rem; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrapper iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.85); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3rem; }
.footer-col h3 { color: #fff; margin-bottom: .5rem; font-size: 1.3rem; }
.footer-col .tagline { color: var(--secondary-gold); font-style: italic; margin-bottom: 1rem; font-size: .95rem; }
.footer-col > p { color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: 1.5rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.2rem; font-size: 1.02rem; position: relative; padding-bottom: .7rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary-gold); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-col ul a:hover { color: var(--secondary-gold); padding-left: 5px; }
.social-icons { display: flex; gap: .7rem; margin-bottom: 1.5rem; }
.social-icons a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), transform var(--transition);
}
.social-icons a:hover { background: var(--secondary-gold); color: #fff; transform: translateY(-3px); }
.footer-contact { color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.footer-contact i { color: var(--secondary-gold); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.5); }

/* ============================================================
   SCROLL REVEAL (progressive enhancement via JS .reveal)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .feature-card.full-width { grid-column: span 2; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .services-detailed-grid { grid-template-columns: 1fr; }
    .reach-markets { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .about-grid, .contact-grid, .category-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-image::before { display: none; }
    .category-products { position: static; }
    .team-grid { grid-template-columns: 1fr; max-width: 480px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: 1 / -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--pure-white);
        box-shadow: var(--shadow-md);
        max-height: 0; overflow: hidden;
        transition: max-height .35s var(--ease-out);
        border-top: 1px solid var(--border-color);
    }
    .main-nav.active { max-height: 420px; }
    .main-nav ul { flex-direction: column; padding: .5rem 1.5rem; gap: 0; }
    .main-nav li { border-bottom: 1px solid var(--border-color); }
    .main-nav li:last-child { border-bottom: none; }
    .main-nav a { display: block; padding: 1rem 0; }
    .main-nav a::after { display: none; }
    .header-cta { display: none; }
    .logo-img { max-height: 48px; }

    .hero { min-height: 78vh; }
    .hero-buttons { flex-direction: column; align-items: stretch; }

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

    .feature-card.full-width {
        grid-column: span 2;
        grid-template-columns: 1fr;
        gap: 1rem; padding: 2rem 1.75rem; text-align: left;
    }
    .feature-card.full-width::before { width: 100%; height: 5px; }
    .feature-card.full-width .feature-icon { margin: 0; }

    .testimonial-card > p { font-size: 1.02rem; }
    .contact-form-wrapper, .contact-info-card { padding: 1.75rem; }
}

@media (max-width: 560px) {
    .card-grid-4 { grid-template-columns: 1fr; }
    .feature-card.full-width { grid-column: span 1; }
    .industries-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .reach-markets { grid-template-columns: 1fr; max-width: 340px; }
    .category-header { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .stat-item:not(:last-child)::after { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
