/* ============================================================
   assets/css/style.css — West-land logistics Global Stylesheet
   ============================================================ */

/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1437;
  --blue:       #1A56FF;
  --blue-light: #3B76FF;
  --cyan:       #00C2FF;
  --sky:        #EEF3FF;
  --white:      #ffffff;
  --gray:       #F5F7FF;
  --text:       #1A2240;
  --muted:      #6B7699;
  --border:     #E4E9F8;
  --radius:     16px;
  --shadow:     0 4px 32px rgba(26,86,255,.10);
  --shadow-lg:  0 16px 64px rgba(26,86,255,.16);
  --header-height: 72px;
  --safe-top:    env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  /* Status badge colours */
  --st-transit:    #1A56FF; --st-transit-bg:    #EEF3FF;
  --st-shipped:    #059669; --st-shipped-bg:    #F0FDF4;
  --st-pending:    #D97706; --st-pending-bg:    #FFFBEB;
  --st-delivered:  #059669; --st-delivered-bg:  #F0FDF4;
  --st-cancelled:  #DC2626; --st-cancelled-bg:  #FFF1F2;
}

html { scroll-behavior: smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; width:100%; min-height:100vh; }
img, svg { max-width:100%; height:auto; display:block; }
h1,h2,h3,h4,.logo-text { font-family:'Syne',sans-serif; }

/* ── Shared Buttons ───────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:10px 20px; border-radius:10px; font-weight:600; font-size:.875rem; cursor:pointer; border:none; text-decoration:none; transition:all .2s; font-family:'DM Sans',sans-serif; white-space:nowrap; }
.btn-ghost { color:var(--text); background:transparent; border:1px solid transparent; }
.btn-ghost:hover { background:var(--gray); border-color:var(--border); }
.btn-primary { background:var(--blue); color:white; box-shadow:0 4px 20px rgba(26,86,255,.35); }
.btn-primary:hover { background:var(--blue-light); box-shadow:0 6px 28px rgba(26,86,255,.45); transform:translateY(-1px); }
.btn-cyan { background:var(--cyan); color:var(--navy); font-weight:700; box-shadow:0 8px 32px rgba(0,194,255,.35); }
.btn-cyan:hover { background:#33cbff; transform:translateY(-2px); }
.btn-outline-white { background:transparent; border:1.5px solid rgba(255,255,255,.35); color:white; }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.6); }

/* ── Shared Section Styles ────────────────────────────────── */
section { padding:80px 0; }
.section-inner { max-width:1280px; margin:0 auto; padding:0 24px; }
.section-label { display:inline-flex; align-items:center; gap:8px; color:var(--blue); font-weight:700; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px; }
.section-label::before { content:''; width:20px; height:2px; background:var(--blue); border-radius:2px; }
.section-title { font-family:'Syne',sans-serif; font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; letter-spacing:-.03em; color:var(--navy); line-height:1.18; margin-bottom:18px; }
.section-subtitle { color:var(--muted); font-size:1rem; line-height:1.6; max-width:560px; }
.section-header-split { display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px; }
.fade-up { opacity:0; transform:translateY(30px); transition:all .7s cubic-bezier(.23,1,.32,1); }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── Navbar ───────────────────────────────────────────────── */
nav { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(255,255,255,.96); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); border-bottom:1px solid var(--border); transition:box-shadow .3s; height:var(--header-height); padding-top:var(--safe-top); }
nav.scrolled { box-shadow:0 2px 32px rgba(26,86,255,.10); }
.nav-inner { max-width:1100px; margin:0 auto; padding:0 24px; height:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.logo { display:flex; align-items:center; gap:8px; text-decoration:none; flex-shrink:0; }
.logo-icon { width:38px; height:38px; background:var(--blue); border-radius:10px; display:flex; align-items:center; justify-content:center; color:white; }
.logo-icon svg { width:22px; height:22px; fill:none; stroke:currentColor; }
.logo-text { font-weight:700; font-size:0.8rem; color:var(--navy); letter-spacing:-.02em; white-space:nowrap; }
.logo-text span { color:var(--blue); }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; margin:0 auto 0 40px; }
.nav-links a { text-decoration:none; color:var(--muted); font-size:.9rem; font-weight:500; padding:8px 14px; border-radius:8px; transition:all .2s; white-space:nowrap; }
.nav-links a:hover, .nav-links a.active { color:var(--blue); background:rgba(26,86,255,.06); }
.nav-dropdown { position:relative; }
.dropdown-menu { position:absolute; top:calc(100% + 8px); left:0; background:white; border:1px solid var(--border); border-radius:14px; padding:8px; min-width:220px; box-shadow:var(--shadow-lg); opacity:0; pointer-events:none; transform:translateY(-6px); transition:all .2s; z-index:100; }
.nav-dropdown:hover .dropdown-menu { opacity:1; pointer-events:all; transform:translateY(0); }
.dropdown-menu a { display:flex; align-items:center; gap:12px; padding:10px 14px; border-radius:8px; font-size:.875rem; color:var(--text)!important; background:transparent!important; }
.dropdown-menu a:hover { background:var(--sky)!important; color:var(--blue)!important; }
.dropdown-menu a .di { width:28px; height:28px; border-radius:7px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.nav-cta { display:flex; align-items:center; gap:8px; flex-shrink:0; }

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-toggle { display:none; background:none; border:none; cursor:pointer; color:var(--navy); font-size:1.8rem; line-height:1; width:48px; height:48px; align-items:center; justify-content:center; border-radius:12px; transition:background .2s; -webkit-tap-highlight-color:transparent; }
.mobile-toggle:active { background:rgba(0,0,0,0.05); }
.mobile-menu-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.4); backdrop-filter:blur(3px); z-index:2000; opacity:0; visibility:hidden; transition:opacity .3s,visibility .3s; }
.mobile-menu-overlay.active { opacity:1; visibility:visible; }
.mobile-menu-panel { position:fixed; top:0; right:0; width:85%; max-width:360px; height:100%; background:white; box-shadow:-10px 0 40px rgba(0,0,0,.15); z-index:2001; transform:translateX(100%); transition:transform .3s cubic-bezier(0.2,0.9,0.3,1); display:flex; flex-direction:column; padding:calc(var(--safe-top) + 20px) 24px 24px; overflow-y:auto; -webkit-overflow-scrolling:touch; }
.mobile-menu-panel.active { transform:translateX(0); }
.mobile-menu-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; }
.mobile-menu-logo { font-family:'Syne',sans-serif; font-weight:700; font-size:0.8rem; color:var(--navy); }
.mobile-menu-logo span { color:var(--blue); }
.mobile-close { width:44px; height:44px; background:var(--gray); border:none; border-radius:12px; font-size:1.5rem; display:flex; align-items:center; justify-content:center; color:var(--muted); cursor:pointer; -webkit-tap-highlight-color:transparent; }
.mobile-close:active { background:var(--border); }
.mobile-menu-items { display:flex; flex-direction:column; gap:8px; flex:1; }
.mobile-menu-item { display:flex; align-items:center; gap:16px; padding:16px; border-radius:16px; text-decoration:none; color:var(--text); font-weight:600; font-size:1.1rem; transition:background .2s; -webkit-tap-highlight-color:transparent; }
.mobile-menu-item:active { background:var(--sky); }
.mobile-menu-item svg { width:24px; height:24px; color:var(--blue); }
.mobile-menu-divider { height:1px; background:var(--border); margin:16px 0; }
.mobile-menu-footer { margin-top:24px; padding-top:24px; border-top:1px solid var(--border); }
.mobile-menu-footer .btn { width:100%; margin-bottom:12px; padding:16px; font-size:1rem; }
body.menu-open { overflow:hidden; position:fixed; width:100%; }

/* ── Hero Slider ──────────────────────────────────────────── */
.hero-slider { margin-top:var(--header-height); position:relative; overflow:hidden; height:calc(100vh - var(--header-height)); min-height:560px; max-height:900px; }
.slides { display:flex; height:100%; transition:transform .75s cubic-bezier(.77,0,.175,1); }
.slide { min-width:100%; height:100%; position:relative; display:flex; align-items:center; overflow:hidden; }
.slide-1 { background:linear-gradient(135deg,#0B1437 0%,#1A2D6E 50%,#1A56FF 100%); }
.slide-2 { background:linear-gradient(135deg,#05112A 0%,#0B2260 50%,#0047B8 100%); }
.slide-3 { background:linear-gradient(135deg,#030C1E 0%,#091A45 50%,#00367A 100%); }
.slide::before { content:''; position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-illustration { position:absolute; right:2%; bottom:10%; width:48%; max-width:620px; pointer-events:none; }
.hero-card { position:absolute; background:rgba(255,255,255,.12); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,.2); border-radius:14px; padding:12px 16px; color:white; display:flex; align-items:center; gap:12px; font-size:.82rem; white-space:nowrap; animation:floatCard 5s ease-in-out infinite; z-index:3; }
.hero-card.card-a { top:15%; right:34%; animation-delay:0s; }
.hero-card.card-b { bottom:22%; right:2%;  animation-delay:-2s; }
.hero-card.card-c { top:36%; right:52%; animation-delay:-3.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.css-truck { width:100%; position:relative; padding-bottom:42%; }
.truck-body { position:absolute; right:0; bottom:22%; width:72%; height:52%; background:linear-gradient(180deg,#E8EEF8 0%,#C8D5EE 100%); border-radius:6px 14px 4px 4px; box-shadow:inset 0 -4px 12px rgba(0,0,0,.2),0 8px 40px rgba(0,0,0,.3); }
.truck-cab { position:absolute; right:68%; bottom:22%; width:30%; height:44%; background:linear-gradient(180deg,#2563EB 0%,#1A3FAA 100%); border-radius:14px 4px 4px 14px; box-shadow:0 8px 40px rgba(0,0,0,.3); }
.truck-cab::before { content:''; position:absolute; top:10%; right:8%; width:55%; height:40%; background:rgba(255,255,255,.25); border-radius:8px 2px 2px 8px; }
.truck-wheel { position:absolute; bottom:13%; width:11%; aspect-ratio:1; background:radial-gradient(circle,#555 30%,#222 30%,#222 45%,#555 45%,#555 70%,#333 70%); border-radius:50%; border:3px solid #111; box-shadow:0 4px 12px rgba(0,0,0,.4); }
.truck-wheel.w1{right:6%} .truck-wheel.w2{right:20%} .truck-wheel.w3{right:68%}
.truck-stripe { position:absolute; left:0; right:0; bottom:34%; height:2.5%; background:linear-gradient(90deg,var(--blue) 0%,var(--cyan) 100%); opacity:.8; }
.hero-card-icon { width:36px; height:36px; background:rgba(255,255,255,.2); border-radius:9px; display:flex; align-items:center; justify-content:center; color:white; flex-shrink:0; }
.hero-card-label { font-size:.7rem; opacity:.7; }
.hero-card-value { font-weight:700; font-size:.92rem; }
.slide-content { position:relative; z-index:2; max-width:1280px; margin:0 auto; padding:48px 24px 100px; width:100%; }
.slide-tag { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); border-radius:100px; padding:6px 14px; color:rgba(255,255,255,.9); font-size:.78rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; margin-bottom:20px; }
.slide-tag::before { content:''; width:6px; height:6px; background:var(--cyan); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.slide-heading { font-family:'Syne',sans-serif; font-size:clamp(2rem,5vw,3.4rem); font-weight:800; color:white; line-height:1.15; letter-spacing:-.03em; max-width:600px; margin-bottom:18px; }
.slide-heading .highlight { background:linear-gradient(90deg,var(--cyan),#7EB8FF); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.slide-desc { color:rgba(255,255,255,.72); font-size:1rem; line-height:1.65; max-width:480px; margin-bottom:30px; font-weight:300; }
.slide-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.slider-controls { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); z-index:10; display:flex; align-items:center; gap:20px; }
.slider-dots { display:flex; gap:8px; align-items:center; }
.dot { width:8px; height:8px; background:rgba(255,255,255,.35); border-radius:100px; cursor:pointer; transition:all .3s; border:none; padding:0; }
.dot.active { width:28px; background:var(--cyan); }
.slider-arrow { width:44px; height:44px; background:rgba(255,255,255,.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.2); border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; color:white; font-size:1.2rem; transition:all .2s; -webkit-tap-highlight-color:transparent; }
.slider-arrow:active { background:var(--blue); }

/* ── Partners Strip ───────────────────────────────────────── */
.partners-strip { background:white; padding:16px 0; border-bottom:1px solid var(--border); overflow:hidden; }
.partners-track { display:flex; align-items:center; animation:marquee 30s linear infinite; width:max-content; }
.partners-track:hover { animation-play-state:paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.partner-item { padding:0 32px; opacity:.6; filter:grayscale(1); font-weight:700; font-size:1rem; color:var(--navy); transition:all .3s; white-space:nowrap; display:flex; align-items:center; gap:8px; }
.partner-item:hover { opacity:1; filter:grayscale(0); }
.partner-sep { color:var(--border); font-size:1.5rem; }

/* ── Services ─────────────────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.service-card { background:white; border:1.5px solid var(--border); border-radius:var(--radius); padding:28px 24px; position:relative; overflow:hidden; transition:all .3s cubic-bezier(.34,1.56,.64,1); cursor:pointer; -webkit-tap-highlight-color:transparent; }
.service-card:active { transform:scale(0.98); }
.service-card::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(26,86,255,.04) 0%,transparent 100%); opacity:0; transition:opacity .3s; }
.service-card:hover { border-color:var(--blue); transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.service-card:hover::after { opacity:1; }
.service-icon { width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:transform .3s; }
.service-card:active .service-icon { transform:scale(1.1); }
.service-card h3 { font-weight:700; font-size:1.2rem; color:var(--navy); margin-bottom:10px; }
.service-card p  { color:var(--muted); font-size:.9rem; line-height:1.6; margin-bottom:20px; }
.service-link { color:var(--blue); font-weight:600; font-size:.875rem; text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:gap .2s; }
.service-link:active { gap:10px; }

/* ── Tracking Widget ──────────────────────────────────────── */
.tracking-section { background:var(--sky); }
.track-split { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.track-visual { background:white; border-radius:24px; padding:28px 24px; box-shadow:var(--shadow-lg); border:1px solid var(--border); }
.track-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; flex-wrap:wrap; gap:12px; }
.track-header h4 { font-weight:700; font-size:1rem; color:var(--navy); display:flex; align-items:center; gap:8px; }
.track-badge { background:#ECFDF5; color:#059669; border-radius:100px; padding:4px 12px; font-size:.75rem; font-weight:600; white-space:nowrap; }
.track-badge.loading { background:#EEF3FF; color:var(--blue); }
.track-badge.error   { background:#FFF1F2; color:#E11D48; }
.track-input-group { display:flex; gap:10px; margin-bottom:28px; flex-wrap:wrap; }
.track-input { flex:1 1 200px; padding:14px 18px; border:1.5px solid var(--border); border-radius:10px; font-size:.9rem; font-family:'DM Sans',sans-serif; outline:none; transition:border-color .2s; color:var(--text); min-width:0; -webkit-appearance:none; }
.track-input:focus { border-color:var(--blue); }
.track-btn { background:var(--blue); color:white; border:none; border-radius:10px; padding:14px 28px; font-weight:700; font-size:.875rem; cursor:pointer; transition:all .2s; white-space:nowrap; flex-shrink:0; -webkit-tap-highlight-color:transparent; font-family:'DM Sans',sans-serif; }
.track-btn:active { background:var(--blue-light); transform:scale(0.96); }
.track-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.timeline-steps { list-style:none; }
.tl-item { display:flex; gap:16px; align-items:flex-start; padding-bottom:20px; position:relative; }
.tl-item:last-child { padding-bottom:0; }
.tl-item:not(:last-child) .tl-line { position:absolute; left:18px; top:36px; bottom:0; width:2px; background:var(--border); }
.tl-dot { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative; z-index:1; color:white; }
.tl-dot.done    { background:#ECFDF5; color:#059669; }
.tl-dot.active  { background:var(--blue); color:white; box-shadow:0 4px 16px rgba(26,86,255,.4); }
.tl-dot.pending { background:var(--gray); color:var(--muted); }
.tl-info { padding-top:4px; flex:1; min-width:0; }
.tl-label { font-weight:600; font-size:.9rem; color:var(--navy); margin-bottom:2px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.tl-sub { font-size:.78rem; color:var(--muted); }
#trackResult { display:none; }
#trackResult.show { display:block; }
.tr-progress-wrap { margin-bottom:20px; }
.tr-jbar-ends { display:flex; justify-content:space-between; margin-bottom:8px; }
.tr-jbar-city { font-size:.82rem; font-weight:700; color:var(--navy); max-width:46%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.tr-jbar-track { position:relative; height:7px; background:#E4E9F8; border-radius:100px; }
.tr-jbar-fill { position:absolute; left:0; top:0; bottom:0; background:linear-gradient(90deg,#047857,#059669,#1A56FF); border-radius:100px; transition:width 1.2s cubic-bezier(.34,1.56,.64,1); }
.tr-jbar-thumb { position:absolute; right:-14px; top:50%; transform:translateY(-50%); width:28px; height:28px; border-radius:50%; background:var(--blue); border:3px solid white; box-shadow:0 2px 10px rgba(26,86,255,.45); display:flex; align-items:center; justify-content:center; }
.tr-jbar-thumb svg { width:13px; height:13px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; }
.tr-jbar-dot { position:absolute; top:50%; transform:translateY(-50%); width:13px; height:13px; border-radius:50%; border:2.5px solid white; }
.tr-jbar-dot-s{left:0; background:#047857;} .tr-jbar-dot-e{right:0; background:#D1D5DB;}
.tr-meta { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.tr-meta-box { flex:1; min-width:120px; background:var(--sky); border-radius:10px; padding:10px 13px; border:1px solid var(--border); }
.tr-meta-lbl { font-size:.63rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:4px; }
.tr-meta-val { font-size:.82rem; font-weight:700; color:var(--navy); font-family:'IBM Plex Mono',monospace; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.tr-status-badge { display:inline-flex; align-items:center; gap:6px; padding:4px 12px; border-radius:100px; font-size:.75rem; font-weight:700; border:1px solid; }
.tr-status-badge.transit   { background:var(--st-transit-bg);   color:var(--st-transit);   border-color:rgba(26,86,255,.2); }
.tr-status-badge.shipped   { background:var(--st-shipped-bg);   color:var(--st-shipped);   border-color:rgba(5,150,105,.2); }
.tr-status-badge.pending   { background:var(--st-pending-bg);   color:var(--st-pending);   border-color:rgba(217,119,6,.2); }
.tr-status-badge.delivered { background:var(--st-delivered-bg); color:var(--st-delivered); border-color:rgba(5,150,105,.2); }
.tr-status-badge.cancelled { background:var(--st-cancelled-bg); color:var(--st-cancelled); border-color:rgba(220,38,38,.2); }
.tr-status-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:currentColor; animation:pulse 2s infinite; }
.tr-invoice { display:flex; align-items:center; gap:10px; background:#EEF3FF; border:1px solid #C7D7FE; border-radius:11px; padding:11px 14px; margin-bottom:20px; }
.tr-invoice svg { width:16px; height:16px; stroke:var(--blue); fill:none; stroke-width:2; flex-shrink:0; }
.tr-invoice-text { flex:1; min-width:0; }
.tr-invoice-lbl { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--blue); margin-bottom:2px; }
.tr-invoice-val { font-size:.8rem; color:var(--text); font-weight:500; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.tr-invoice-link { font-size:.78rem; font-weight:700; color:var(--blue); text-decoration:none; white-space:nowrap; padding:5px 10px; background:rgba(26,86,255,.1); border-radius:7px; flex-shrink:0; }
.tr-invoice-link:hover { background:rgba(26,86,255,.18); }
.tr-open-btn { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:12px 20px; margin-top:8px; border-radius:10px; background:var(--blue); color:white; font-weight:700; font-size:.88rem; text-decoration:none; transition:all .2s; border:none; cursor:pointer; font-family:'DM Sans',sans-serif; }
.tr-open-btn:hover { background:var(--blue-light); transform:translateY(-1px); box-shadow:0 4px 16px rgba(26,86,255,.3); }
.tr-open-btn svg { width:15px; height:15px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; }
.tr-error { display:none; background:#FFF1F2; border:1px solid #FCA5A5; border-radius:10px; padding:12px 16px; color:#E11D48; font-size:.875rem; font-weight:500; margin-bottom:16px; align-items:center; gap:10px; }
.tr-error.show { display:flex; }
.tr-error svg { width:16px; height:16px; stroke:#E11D48; fill:none; stroke-width:2; flex-shrink:0; }
.features-list { display:flex; flex-direction:column; gap:16px; }
.feature-item { display:flex; gap:16px; align-items:flex-start; padding:16px; border-radius:14px; transition:background .2s; }
.feature-item:active { background:var(--sky); }
.feature-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feature-item h4 { font-weight:700; font-size:1rem; color:var(--navy); margin-bottom:4px; }
.feature-item p  { color:var(--muted); font-size:.875rem; line-height:1.55; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-section { background:var(--navy); padding:0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { text-align:center; padding:48px 16px; position:relative; }
.stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:25%; bottom:25%; width:1px; background:rgba(255,255,255,.1); }
.stat-number { font-family:'Syne',sans-serif; font-size:clamp(2rem,4vw,3rem); font-weight:800; color:white; letter-spacing:-.04em; line-height:1; margin-bottom:8px; }
.stat-number span { color:var(--cyan); }
.stat-label { color:rgba(255,255,255,.55); font-size:.85rem; }

/* ── Why Us / Globe ───────────────────────────────────────── */
.why-split { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.world-visual { position:relative; border-radius:24px; background:var(--sky); padding:24px; overflow:hidden; height:380px; display:flex; align-items:center; justify-content:center; }
.world-visual::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(26,86,255,.08) 0%,transparent 70%); }
.globe { width:240px; height:240px; border-radius:50%; background:radial-gradient(ellipse at 35% 35%,#2E6BF0,#0B3DA8 50%,#071F5C); box-shadow:0 0 0 3px rgba(26,86,255,.15),0 32px 80px rgba(26,86,255,.3),inset 0 -20px 60px rgba(0,0,0,.3); position:relative; animation:rotateSlow 30s linear infinite; }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.globe-line { position:absolute; background:rgba(255,255,255,.15); border-radius:100px; }
.globe-line.l1{top:50%;left:5%;right:5%;height:1px} .globe-line.l2{top:30%;left:10%;right:10%;height:1px} .globe-line.l3{top:70%;left:10%;right:10%;height:1px}
.globe-line.v1{left:50%;top:5%;bottom:5%;width:1px} .globe-line.v2{left:30%;top:10%;bottom:10%;width:1px} .globe-line.v3{left:70%;top:10%;bottom:10%;width:1px}
.globe-dot { position:absolute; background:var(--cyan); border-radius:50%; box-shadow:0 0 0 4px rgba(0,194,255,.25); }
.route-line { position:absolute; inset:0; pointer-events:none; }
.float-location { position:absolute; background:white; border-radius:10px; padding:8px 12px; display:flex; align-items:center; gap:6px; box-shadow:0 4px 20px rgba(0,0,0,.1); font-size:.75rem; font-weight:600; color:var(--navy); animation:floatCard 4s ease-in-out infinite; }
.float-location .loc-dot { width:8px; height:8px; border-radius:50%; }
.loc-a{top:15%;left:5%} .loc-b{bottom:20%;right:5%} .loc-c{top:10%;right:15%}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background:var(--gray); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.testimonial-card { background:white; border-radius:var(--radius); padding:28px 24px; border:1.5px solid var(--border); transition:all .3s; }
.testimonial-card:hover { border-color:var(--blue); box-shadow:var(--shadow); transform:translateY(-4px); }
.stars { color:#F59E0B; margin-bottom:16px; font-size:1rem; letter-spacing:2px; }
.testimonial-text { color:var(--muted); line-height:1.65; font-size:.9rem; margin-bottom:20px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.95rem; color:white; flex-shrink:0; }
.author-name { font-weight:600; font-size:.9rem; color:var(--navy); }
.author-role { font-size:.78rem; color:var(--muted); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section { background:linear-gradient(135deg,var(--navy) 0%,#1A3080 50%,var(--blue) 100%); text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-content { position:relative; z-index:1; }
.cta-title { font-size:clamp(2rem,5vw,3rem); font-weight:800; color:white; letter-spacing:-.03em; margin-bottom:16px; }
.cta-sub { color:rgba(255,255,255,.7); font-size:1rem; margin-bottom:32px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-actions .btn { padding:16px 32px; font-size:1rem; }

/* ── Footer ───────────────────────────────────────────────── */
footer { background:#070D24; color:rgba(255,255,255,.6); padding:60px 0 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand p { margin-top:16px; font-size:.875rem; line-height:1.65; max-width:280px; }
.footer-social { display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
.social-btn { width:40px; height:40px; background:rgba(255,255,255,.08); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:1rem; color:rgba(255,255,255,.6); text-decoration:none; transition:all .2s; }
.social-btn:hover { background:var(--blue); color:white; }
.footer-col h5 { font-weight:700; font-size:.9rem; color:white; margin-bottom:20px; }
.footer-col a { display:block; color:rgba(255,255,255,.5); text-decoration:none; font-size:.875rem; margin-bottom:10px; transition:color .2s; }
.footer-col a:hover { color:var(--cyan); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:.8rem; flex-wrap:wrap; gap:16px; }
.footer-bottom a { color:rgba(255,255,255,.4); text-decoration:none; margin-left:20px; }
.footer-bottom a:hover { color:white; }

/* ── Quote Modal ──────────────────────────────────────────── */
.qmodal-backdrop { position:fixed; inset:0; z-index:9000; background:rgba(11,20,55,.75); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; padding:16px; opacity:0; visibility:hidden; transition:opacity .28s ease,visibility .28s ease; }
.qmodal-backdrop.open { opacity:1; visibility:visible; }
body.qmodal-open { overflow:hidden; }
.qmodal { background:white; border-radius:22px; width:100%; max-width:620px; max-height:92vh; overflow-y:auto; -webkit-overflow-scrolling:touch; box-shadow:0 28px 90px rgba(11,20,55,.4); transform:translateY(36px) scale(.97); transition:transform .32s cubic-bezier(.34,1.56,.64,1); scrollbar-width:thin; scrollbar-color:var(--border) transparent; }
.qmodal-backdrop.open .qmodal { transform:translateY(0) scale(1); }
.qmodal-head { background:linear-gradient(135deg,#0B1437 0%,#1A2D6E 55%,#1A56FF 100%); border-radius:22px 22px 0 0; padding:26px 28px 22px; position:sticky; top:0; z-index:10; overflow:hidden; }
.qmodal-head::before { content:''; position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E"); }
.qmodal-head-inner { position:relative; z-index:1; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.qmodal-logo { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.qmodal-logo-icon { width:36px; height:36px; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.22); border-radius:10px; display:flex; align-items:center; justify-content:center; }
.qmodal-logo-icon svg { width:20px; height:20px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; }
.qmodal-logo-name { font-family:'Syne',sans-serif; font-weight:800; font-size:1rem; color:white; letter-spacing:-.02em; }
.qmodal-logo-name span { color:var(--cyan); }
.qmodal-head-txt h2 { font-family:'Syne',sans-serif; font-size:1.35rem; font-weight:800; color:white; letter-spacing:-.02em; margin-bottom:4px; }
.qmodal-head-txt p  { color:rgba(255,255,255,.62); font-size:.82rem; line-height:1.5; }
.qmodal-close { width:36px; height:36px; border-radius:9px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.85); font-size:1rem; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; transition:background .15s; -webkit-tap-highlight-color:transparent; }
.qmodal-close:hover { background:rgba(255,255,255,.24); color:white; }
.qmodal-trust { display:flex; gap:20px; flex-wrap:wrap; padding:12px 28px; background:#F8FAFF; border-bottom:1px solid var(--border); }
.qtrust-item { display:flex; align-items:center; gap:6px; font-size:.73rem; font-weight:600; color:var(--muted); }
.qtrust-item svg { width:13px; height:13px; stroke:var(--blue); fill:none; stroke-width:2.5; stroke-linecap:round; flex-shrink:0; }
.qmodal-body { padding:24px 28px 28px; }
.qform-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.qform-row.single { grid-template-columns:1fr; }
.qform-field { display:flex; flex-direction:column; gap:5px; }
.qform-label { font-size:.69rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--muted); }
.qform-label span { color:#E11D48; margin-left:2px; }
.qform-input,.qform-select,.qform-textarea { padding:11px 14px; border:1.5px solid var(--border); border-radius:10px; font-size:.9rem; font-family:'DM Sans',sans-serif; color:var(--text); outline:none; transition:border-color .2s,box-shadow .2s; background:white; -webkit-appearance:none; width:100%; }
.qform-input:focus,.qform-select:focus,.qform-textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(26,86,255,.1); }
.qform-input.err,.qform-select.err,.qform-textarea.err { border-color:#E11D48; box-shadow:0 0 0 3px rgba(225,29,72,.08); }
.qform-select { cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7699' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 13px center; padding-right:36px; }
.qform-textarea { resize:vertical; min-height:86px; }
.qform-alert { display:none; padding:11px 14px; border-radius:10px; font-size:.85rem; font-weight:500; margin-bottom:14px; align-items:center; gap:9px; }
.qform-alert.show { display:flex; }
.qform-alert.error { background:#FFF1F2; border:1px solid #FCA5A5; color:#E11D48; }
.qform-alert svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; flex-shrink:0; }
.qform-submit { width:100%; padding:14px 20px; margin-top:6px; background:var(--blue); color:white; border:none; border-radius:12px; font-family:'DM Sans',sans-serif; font-weight:700; font-size:.96rem; cursor:pointer; transition:all .22s; display:flex; align-items:center; justify-content:center; gap:9px; -webkit-tap-highlight-color:transparent; }
.qform-submit:hover { background:var(--blue-light); transform:translateY(-1px); box-shadow:0 6px 24px rgba(26,86,255,.36); }
.qform-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }
.qform-submit svg { width:15px; height:15px; stroke:white; fill:none; stroke-width:2.2; stroke-linecap:round; }
.qmodal-success { display:none; flex-direction:column; align-items:center; text-align:center; padding:52px 28px 44px; }
.qmodal-success.show { display:flex; }
.qsuccess-icon { width:76px; height:76px; border-radius:50%; background:linear-gradient(135deg,#059669,#10B981); display:flex; align-items:center; justify-content:center; margin-bottom:24px; box-shadow:0 10px 32px rgba(5,150,105,.35); animation:qPop .44s cubic-bezier(.34,1.56,.64,1); }
@keyframes qPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.qsuccess-icon svg { width:36px; height:36px; stroke:white; fill:none; stroke-width:2.5; stroke-linecap:round; }
.qsuccess-title { font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.qsuccess-sub { color:var(--muted); font-size:.9rem; line-height:1.65; max-width:360px; margin-bottom:28px; }
.qsuccess-close { padding:12px 32px; background:var(--blue); color:white; border:none; border-radius:11px; font-family:'DM Sans',sans-serif; font-weight:700; font-size:.9rem; cursor:pointer; transition:background .2s; }
.qsuccess-close:hover { background:var(--blue-light); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes spin { to { transform:rotate(360deg) } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width:1024px) {
  .nav-links { margin-left:20px; }
  .nav-links a { padding:8px 10px; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-split { grid-template-columns:1fr; }
  .track-split { grid-template-columns:1fr; gap:48px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display:none; }
  .testimonials-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .hero-illustration { width:46%; }
  .hero-card.card-c { display:none; }
}
@media (max-width:768px) {
  :root { --header-height:64px; }
  .nav-links, .nav-cta .btn-ghost { display:none; }
  .nav-cta .btn-primary { padding:8px 16px; font-size:.8rem; }
  .mobile-toggle { display:flex; }
  .hero-slider { height:auto; min-height:500px; }
  .slide { align-items:flex-start; }
  .slide-content { padding-top:40px; padding-bottom:100px; }
  .slide-heading { font-size:2rem; max-width:100%; }
  .slide-desc { font-size:.9rem; }
  .hero-illustration,.hero-card { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .track-input-group { flex-direction:column; }
  .track-btn { width:100%; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { padding:32px 12px; }
  .stat-item:nth-child(2)::after { display:none; }
  .testimonials-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  section { padding:60px 0; }
  .section-inner { padding:0 20px; }
  .world-visual { height:300px; }
  .globe { width:200px; height:200px; }
  .cta-actions .btn { width:100%; max-width:320px; }
  .tr-meta { flex-direction:column; }
  .qmodal-head { padding:20px 18px 18px; position:relative; }
  .qmodal-body { padding:20px 18px 24px; }
  .qmodal-trust { padding:10px 18px; gap:12px; }
  .qform-row { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .nav-inner { padding:0 16px; }
  .logo-text { font-size:1rem; }
  .logo-icon { width:34px; height:34px; }
  .slide-heading { font-size:1.8rem; }
  .slide-actions { flex-direction:column; align-items:stretch; }
  .slider-controls { gap:12px; }
  .slider-arrow { width:38px; height:38px; }
  .partner-item { padding:0 16px; font-size:.9rem; }
  .service-card { padding:24px 20px; }
  .stat-number { font-size:2rem; }
  .stat-label { font-size:.75rem; }
  .mobile-menu-panel { width:90%; }
}
@media (max-width:360px) {
  .logo-text { display:none; }
  .nav-cta .btn-primary { padding:6px 12px; font-size:.75rem; }
}


/* ═══════════════════════════════════════════════════════════
   HERO PHOTO SLIDER
═══════════════════════════════════════════════════════════ */

/* Each slide is now position:relative with a real background photo */
.slide-photo {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* The background photo — covers the entire slide */
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Subtle Ken Burns zoom on the active slide (handled via JS class) */
  transform: scale(1.04);
  transition: transform 8s ease-out;
  will-change: transform;
}
.slide-photo.zoom-in .slide-bg-img {
  transform: scale(1);
}

/* Dark gradient overlay — ensures all text is always legible */
.slide-overlay {
  position: absolute;
  inset: 0;
  /* Strong left-to-right gradient: dark on left (text side), fade to right */
  background: linear-gradient(
    105deg,
    rgba(7, 13, 36, 0.88) 0%,
    rgba(11, 20, 55, 0.78) 35%,
    rgba(11, 20, 55, 0.40) 65%,
    rgba(11, 20, 55, 0.25) 100%
  );
  z-index: 1;
}

/* Content sits above overlay */
.slide-photo .slide-content {
  position: relative;
  z-index: 2;
}

/* Hero cards sit above overlay */
.slide-photo .hero-card {
  z-index: 3;
}

@media (max-width: 768px) {
  .slide-overlay {
    background: rgba(7, 13, 36, 0.75);
  }
}


/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS WITH PHOTOS
═══════════════════════════════════════════════════════════ */

/* Reset service card to work with photo layout */
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Photo thumbnail at top of each card */
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

/* Subtle colour tint over the photo matching the service colour */
.service-card-img-tint {
  position: absolute;
  inset: 0;
  background: var(--svc-color, #1A56FF);
  opacity: 0.18;
  transition: opacity 0.3s;
}
.service-card:hover .service-card-img-tint {
  opacity: 0.28;
}

/* Icon badge floating in bottom-left corner of the photo */
.service-card-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.service-card:hover .service-card-badge {
  transform: translateY(-3px) scale(1.08);
}

/* Card text body below the photo */
.service-card-body {
  padding: 32px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card-body p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}


/* ═══════════════════════════════════════════════════════════
   WHY US — PHOTO COLLAGE
═══════════════════════════════════════════════════════════ */

.why-photo-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 200px;
  gap: 14px;
  border-radius: 20px;
  overflow: visible;  /* allow badge to overflow */
}

/* All photos share these base styles */
.why-photo-main,
.why-photo-top,
.why-photo-bottom {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,86,255,.12);
}
.why-photo-main img,
.why-photo-top img,
.why-photo-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.why-photo-main:hover img,
.why-photo-top:hover img,
.why-photo-bottom:hover img { transform: scale(1.04); }

/* Tall main photo — spans both rows on the left */
.why-photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Right column split */
.why-photo-stack {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-photo-top    { flex: 1; }
.why-photo-bottom { flex: 1; position: relative; }

/* "15+ Years" badge over the bottom-right photo */
.why-badge {
  position: absolute;
  bottom: 16px;
  right: 14px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-badge-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.why-badge-number span { font-size: 1.2rem; }
.why-badge-text {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Floating deliveries pill — anchored bottom-left outside the collage */
.why-stat-pill {
  position: absolute;
  bottom: -22px;
  left: -16px;
  background: var(--blue);
  color: white;
  border-radius: 100px;
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(26,86,255,.40);
  z-index: 5;
  white-space: nowrap;
  animation: floatCard 5s ease-in-out infinite;
}
.why-stat-pill svg { width: 20px; height: 20px; color: white; flex-shrink: 0; }
.why-stat-num { font-family:'Syne',sans-serif; font-weight:800; font-size:.95rem; line-height:1; }
.why-stat-lbl { font-size:.68rem; opacity:.8; margin-top:1px; }

@media (max-width: 1024px) {
  .why-split { grid-template-columns: 1fr; }
  .why-photo-collage { grid-template-rows: 200px 180px; max-width:520px; margin:0 auto; }
  .why-stat-pill { bottom: -18px; left: 10px; }
}
@media (max-width: 640px) {
  .why-photo-collage { grid-template-columns: 1fr; grid-template-rows: 220px 140px 140px; }
  .why-photo-main { grid-column:1; grid-row:1; }
  .why-photo-stack { grid-column:1; grid-row:2/4; grid-template-columns:1fr 1fr; flex-direction:row; }
  .why-badge { bottom:10px; right:8px; padding:8px 10px; }
  .why-badge-number { font-size:1.3rem; }
}


/* ═══════════════════════════════════════════════════════════
   OPERATIONS GALLERY SECTION
═══════════════════════════════════════════════════════════ */

.gallery-section {
  background: var(--navy);
  padding: 80px 0 0;
  overflow: hidden;
}
.gallery-header {
  padding-bottom: 48px;
}
.gallery-header .section-title {
  color: white;
  margin: 0 auto 12px;
}
.gallery-header .section-subtitle {
  color: rgba(255,255,255,.6);
}
.gallery-header .section-label {
  color: var(--cyan);
  justify-content: center;
}
.gallery-header .section-label::before {
  background: var(--cyan);
}

/* 4-column horizontal photo strip */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.82) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

/* Dark overlay + label */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,13,36,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 1;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(0deg, rgba(26,86,255,.55) 0%, transparent 60%);
}

.gallery-label {
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

/* Divider line between photos */
.gallery-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,.1);
  z-index: 2;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 260px; }
}
@media (max-width: 640px) {
  .gallery-section { padding-top: 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .gallery-label { font-size:.8rem; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
}