/* ============================================================
   UNION LOGISTICS – Design System
   Brand colors: Orange #F47B20 + Blue #1B3E8F
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Space+Grotesk:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:        #081018;
  --navy-mid:    #0E1B2E;
  --navy-light:  #142338;

  --blue:        #1B3E8F;
  --blue-light:  #2A52B5;
  --blue-pale:   rgba(27,62,143,0.15);

  --orange:      #F47B20;
  --orange-light:#FF9540;
  --orange-pale: rgba(244,123,32,0.12);

  --white:  #F2F6FF;
  --muted:  #7A90B2;
  --border: rgba(255,255,255,0.07);
  --glass:  rgba(14,27,46,0.65);

  --font-main:    'Inter', sans-serif;
  --font-display: 'Barlow', sans-serif;
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px;
  --shadow-card:   0 4px 40px rgba(0,0,0,0.45);
  --shadow-orange: 0 0 30px rgba(244,123,32,0.25);
  --shadow-blue:   0 0 30px rgba(27,62,143,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* ══ THEME 2: Minimal / Editorial ══════════════════════════════
   Warm white canvas · Playfair Display · outlined cards · airy */
[data-theme="minimal"] {
  --navy:        #FAFAF8;
  --navy-mid:    #F2F0EC;
  --navy-light:  #E8E4DC;
  --blue:        #1B3E8F;
  --blue-light:  #2A52B5;
  --blue-pale:   rgba(27,62,143,0.08);
  --orange:      #D9620E;
  --orange-light:#F47B20;
  --orange-pale: rgba(217,98,14,0.08);
  --white:       #1A1612;
  --muted:       #6B6057;
  --border:      rgba(26,22,18,0.12);
  --glass:       rgba(255,255,255,0.9);
  --shadow-orange: 0 4px 20px rgba(217,98,14,0.12);
  --shadow-blue:   0 4px 20px rgba(27,62,143,0.1);
  --radius-sm: 3px; --radius-md: 4px; --radius-lg: 6px;
}
/* Override display font to Playfair for headings */
[data-theme="minimal"] h1,
[data-theme="minimal"] h2,
[data-theme="minimal"] h3,
[data-theme="minimal"] h4,
[data-theme="minimal"] .logo-union,
[data-theme="minimal"] .stat-num,
[data-theme="minimal"] .hero-stat-num { font-family: 'Playfair Display', serif; }

[data-theme="minimal"] body { background: var(--navy); color: var(--white); }

/* Navbar — light bar with bottom border */
[data-theme="minimal"] .navbar.scrolled {
  background: rgba(250,250,248,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
[data-theme="minimal"] .nav-links a { color: var(--muted); }
[data-theme="minimal"] .nav-links a:hover,
[data-theme="minimal"] .nav-links a.active { color: var(--white); }
[data-theme="minimal"] .hamburger span { background: var(--white); }
[data-theme="minimal"] .mobile-menu { background: rgba(250,250,248,0.99); }

/* Hero — light overlay, dark editorial text */
[data-theme="minimal"] .hero-overlay {
  background: linear-gradient(135deg,rgba(250,250,248,0.92) 0%,rgba(250,250,248,0.7) 55%,rgba(250,250,248,0.88) 100%);
}
[data-theme="minimal"] .hero h1 { color: #1A1612; font-style: italic; }
[data-theme="minimal"] .hero-sub { color: rgba(26,22,18,0.65); }
[data-theme="minimal"] .hero-stat-num { color: #1A1612; }
[data-theme="minimal"] .hero-badge {
  background: transparent; border-color: var(--orange);
  color: var(--orange); font-style: italic;
}
[data-theme="minimal"] .scroll-line { background: linear-gradient(to bottom, var(--orange), transparent); }

/* Cards — outlined only, no fill */
[data-theme="minimal"] .service-card {
  background: transparent; backdrop-filter: none;
  border: 1.5px solid var(--border); box-shadow: none;
}
[data-theme="minimal"] .service-card:hover {
  background: #fff; border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(217,98,14,0.1); transform: translateY(-4px);
}
[data-theme="minimal"] .service-card::before { background: var(--orange); }
[data-theme="minimal"] .service-card h3 { font-family: 'Playfair Display', serif; font-style: italic; }
[data-theme="minimal"] .feature-card {
  background: transparent; backdrop-filter: none;
  border: 1px solid var(--border); box-shadow: none;
}
[data-theme="minimal"] .feature-card:hover { background: #fff; border-color: var(--orange); }
[data-theme="minimal"] .feature-icon-wrap { background: var(--orange-pale); border-radius: 3px; }
[data-theme="minimal"] .capability-item { background: transparent; backdrop-filter: none; border-color: var(--border); }
[data-theme="minimal"] .capability-item:hover { background: #fff; }
[data-theme="minimal"] .capability-item::before { background: var(--orange-pale); }
[data-theme="minimal"] .office-card { background: #fff; backdrop-filter: none; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* Sections */
[data-theme="minimal"] .services-section { background: var(--navy-mid); }
[data-theme="minimal"] .stats-bar { background: #1A1612; }
[data-theme="minimal"] .stat-num { color: var(--orange); font-style: italic; }
[data-theme="minimal"] .stat-label { color: rgba(255,255,255,0.55); }
[data-theme="minimal"] .section-label { color: var(--orange); font-style: italic; letter-spacing: 0.08em; }
[data-theme="minimal"] .cta-banner { background: #fff; border: 1.5px solid var(--border); }
[data-theme="minimal"] .cta-banner::before { display: none; }
[data-theme="minimal"] .gradient-text {
  background: none; -webkit-text-fill-color: var(--orange);
  background-clip: unset; color: var(--orange);
}

/* Footer */
[data-theme="minimal"] .footer { background: #1A1612; border-top: 1px solid rgba(255,255,255,0.08); }
[data-theme="minimal"] .footer-col h5,
[data-theme="minimal"] .footer-brand p { color: rgba(255,255,255,0.6); }
[data-theme="minimal"] .footer-links a { color: rgba(255,255,255,0.5); }
[data-theme="minimal"] .footer-links a:hover { color: var(--orange); }
[data-theme="minimal"] .footer-contact-item { color: rgba(255,255,255,0.5); }
[data-theme="minimal"] .footer-contact-icon { color: var(--orange); }
[data-theme="minimal"] .footer-bottom p { color: rgba(255,255,255,0.35); }
[data-theme="minimal"] .footer-bottom { border-top-color: rgba(255,255,255,0.08); }
[data-theme="minimal"] .social-link { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
[data-theme="minimal"] .btn-outline { border-color: rgba(26,22,18,0.2); color: #1A1612; }
[data-theme="minimal"] .logo-union { color: var(--orange); }
[data-theme="minimal"] .logo-logistics, [data-theme="minimal"] .logo-fze { color: var(--blue); }
[data-theme="minimal"] p { color: var(--muted); }

/* ══ THEME 3: Geometric / Bold ══════════════════════════════════
   Pure black · Space Grotesk · zero radius · structured grid   */
[data-theme="geo"] {
  --navy:        #080808;
  --navy-mid:    #101010;
  --navy-light:  #181818;
  --blue:        #1B3E8F;
  --blue-light:  #2A52B5;
  --blue-pale:   rgba(27,62,143,0.15);
  --orange:      #F47B20;
  --orange-light:#FF9540;
  --orange-pale: rgba(244,123,32,0.15);
  --white:       #F0F0F0;
  --muted:       #888;
  --border:      rgba(255,255,255,0.1);
  --glass:       rgba(16,16,16,0.95);
  --radius-sm: 0px; --radius-md: 0px; --radius-lg: 0px;
  --shadow-orange: 4px 4px 0 rgba(244,123,32,0.6);
  --shadow-blue:   4px 4px 0 rgba(27,62,143,0.6);
}
[data-theme="geo"] body { background: var(--navy); color: var(--white); }
[data-theme="geo"] h1, [data-theme="geo"] h2, [data-theme="geo"] h3,
[data-theme="geo"] h4, [data-theme="geo"] h5 {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase; letter-spacing: 0.04em;
}
[data-theme="geo"] .logo-union { font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.06em; }
[data-theme="geo"] .logo-logistics, [data-theme="geo"] .logo-fze { font-family: 'Space Grotesk', sans-serif; }

/* Navbar — solid black block */
[data-theme="geo"] .navbar { background: #080808; border-bottom: 2px solid var(--orange); }
[data-theme="geo"] .navbar.scrolled { background: #080808; box-shadow: none; backdrop-filter: none; }
[data-theme="geo"] .mobile-menu { background: #080808; }
[data-theme="geo"] .nav-links a.active::after { border-radius: 0; height: 3px; }

/* Hero — hard-edged text, orange underline accent */
[data-theme="geo"] .hero-overlay { background: rgba(8,8,8,0.88); }
[data-theme="geo"] .hero h1 { text-transform: uppercase; letter-spacing: -0.01em; }
[data-theme="geo"] .hero-badge {
  border-radius: 0; background: var(--orange);
  color: #fff; border-color: var(--orange); font-family: 'Space Grotesk', sans-serif;
}
[data-theme="geo"] .scroll-line { background: linear-gradient(to bottom, var(--orange), transparent); }
[data-theme="geo"] .hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; }

/* Buttons — sharp, offset shadow */
[data-theme="geo"] .btn { border-radius: 0; }
[data-theme="geo"] .btn-orange:hover,
[data-theme="geo"] .btn-gold:hover { box-shadow: var(--shadow-orange); transform: translate(-2px,-2px); }
[data-theme="geo"] .btn-outline { border-color: rgba(255,255,255,0.4); }
[data-theme="geo"] .btn-outline:hover { box-shadow: var(--shadow-orange); transform: translate(-2px,-2px); }

/* Cards — borderless fill with thick LEFT orange border */
[data-theme="geo"] .service-card {
  background: var(--navy-mid); backdrop-filter: none;
  border: none; border-left: 4px solid var(--orange); border-radius: 0;
}
[data-theme="geo"] .service-card::before { display: none; }
[data-theme="geo"] .service-card:hover {
  background: #181818; box-shadow: none;
  transform: translateX(6px) translateY(0); border-left-width: 6px;
}
[data-theme="geo"] .service-card h3 { text-transform: uppercase; letter-spacing: 0.06em; font-size: 1rem; }
[data-theme="geo"] .feature-card {
  background: var(--navy-mid); backdrop-filter: none;
  border: none; border-left: 3px solid var(--blue); border-radius: 0;
}
[data-theme="geo"] .feature-card:hover { background: #181818; transform: translateX(4px) translateY(0); }
[data-theme="geo"] .feature-icon-wrap { border-radius: 0; background: var(--orange-pale); }
[data-theme="geo"] .capability-item {
  background: var(--navy-mid); backdrop-filter: none;
  border: none; border-left: 3px solid rgba(244,123,32,0.4);
}
[data-theme="geo"] .capability-item:hover { border-left-color: var(--orange); }
[data-theme="geo"] .capability-item::before { border-radius: 0; }
[data-theme="geo"] .office-card { border-radius: 0; backdrop-filter: none; border: none; border-left: 4px solid var(--orange); }
[data-theme="geo"] .office-card:hover { background: #181818; border-left-color: var(--orange-light); }

/* Sections */
[data-theme="geo"] .services-section { background: #0C0C0C; }
[data-theme="geo"] .stats-bar { background: var(--orange); }
[data-theme="geo"] .stat-num { color: #080808; font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; }
[data-theme="geo"] .stat-label { color: rgba(8,8,8,0.65); }
[data-theme="geo"] .stat-item { border-right-color: rgba(8,8,8,0.2); }
[data-theme="geo"] .section-label {
  background: var(--orange); color: #fff; padding: 3px 10px;
  letter-spacing: 0.12em; font-size: 0.68rem; font-family: 'Space Grotesk', sans-serif;
}
[data-theme="geo"] .cta-banner { border-radius: 0; border: 2px solid var(--orange); }
[data-theme="geo"] .cta-banner::before { display: none; }
[data-theme="geo"] .about-badge { border-radius: 0; }
[data-theme="geo"] .about-image-wrap { border-radius: 0; }
[data-theme="geo"] .detail-image { border-radius: 0; }
[data-theme="geo"] .service-row-image { border-radius: 0; }

/* Footer */
[data-theme="geo"] .footer { background: #000; border-top: 3px solid var(--orange); }
[data-theme="geo"] .social-link { border-radius: 0; }
[data-theme="geo"] p { color: var(--muted); }

/* ══ THEME 4: Luxury Gold ══════════════════════════════════════
   Dark warm black · Cormorant Garamond · champagne + gold     */
[data-theme="luxury"] {
  --navy:        #0C0A06;
  --navy-mid:    #141009;
  --navy-light:  #1E180F;
  --blue:        #C9A84C;
  --blue-light:  #E0C070;
  --blue-pale:   rgba(201,168,76,0.1);
  --orange:      #C9A84C;
  --orange-light:#E0C070;
  --orange-pale: rgba(201,168,76,0.08);
  --white:       #F5EDD5;
  --muted:       #9A8A6A;
  --border:      rgba(201,168,76,0.15);
  --glass:       rgba(20,16,9,0.8);
  --radius-sm: 2px; --radius-md: 2px; --radius-lg: 4px;
  --shadow-orange: 0 4px 40px rgba(201,168,76,0.15);
  --shadow-blue:   0 4px 40px rgba(201,168,76,0.1);
}
[data-theme="luxury"] body { background: var(--navy); color: var(--white); }
[data-theme="luxury"] h1, [data-theme="luxury"] h2,
[data-theme="luxury"] h3, [data-theme="luxury"] h4 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: 0.02em;
}
[data-theme="luxury"] h1 { font-weight: 300; letter-spacing: 0.06em; }
[data-theme="luxury"] h2 { font-weight: 400; }
[data-theme="luxury"] .logo-union { color: var(--orange); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }
[data-theme="luxury"] .logo-logistics, [data-theme="luxury"] .logo-fze { color: var(--orange-light); font-family: 'Cormorant Garamond', serif; letter-spacing: 0.18em; }
[data-theme="luxury"] .logo-globe { filter: sepia(0.6) hue-rotate(-10deg) brightness(0.7); }

/* Navbar — dark with gold underline */
[data-theme="luxury"] .navbar.scrolled {
  background: rgba(12,10,6,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
[data-theme="luxury"] .mobile-menu { background: rgba(12,10,6,0.99); }
[data-theme="luxury"] .nav-links a.active::after { background: var(--orange); }

/* Hero */
[data-theme="luxury"] .hero-overlay { background: linear-gradient(135deg,rgba(12,10,6,0.95) 0%,rgba(12,10,6,0.75) 55%,rgba(12,10,6,0.92) 100%); }
[data-theme="luxury"] .hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 0.08em; }
[data-theme="luxury"] .hero-badge {
  background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.4); color: var(--orange);
}
[data-theme="luxury"] .hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; }
[data-theme="luxury"] .scroll-line { background: linear-gradient(to bottom, var(--orange), transparent); }
[data-theme="luxury"] .hero-stats { border-top-color: var(--border); }

/* Buttons — refined, thin bordered */
[data-theme="luxury"] .btn { letter-spacing: 0.08em; font-size: 0.85rem; }
[data-theme="luxury"] .btn-orange, [data-theme="luxury"] .btn-gold {
  background: transparent; color: var(--orange);
  border: 1px solid var(--orange);
}
[data-theme="luxury"] .btn-orange:hover, [data-theme="luxury"] .btn-gold:hover {
  background: var(--orange); color: #0C0A06;
  box-shadow: 0 4px 24px rgba(201,168,76,0.3); transform: translateY(-1px);
}
[data-theme="luxury"] .btn-outline { border-color: rgba(245,237,213,0.2); color: var(--white); }
[data-theme="luxury"] .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Cards — dark panels with thin gold borders */
[data-theme="luxury"] .service-card {
  background: rgba(20,16,9,0.9); backdrop-filter: none;
  border: 1px solid var(--border); box-shadow: none;
}
[data-theme="luxury"] .service-card::before { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
[data-theme="luxury"] .service-card:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.12);
}
[data-theme="luxury"] .service-card h3 { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.05em; }
[data-theme="luxury"] .service-link { color: var(--orange); }

[data-theme="luxury"] .feature-card { background: rgba(20,16,9,0.9); backdrop-filter: none; border: 1px solid var(--border); }
[data-theme="luxury"] .feature-card:hover { border-color: var(--orange); }
[data-theme="luxury"] .feature-icon-wrap { background: var(--orange-pale); }
[data-theme="luxury"] .feature-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; letter-spacing: 0.04em; }

[data-theme="luxury"] .capability-item { background: rgba(20,16,9,0.7); backdrop-filter: none; border-color: var(--border); }
[data-theme="luxury"] .capability-item:hover { border-color: rgba(201,168,76,0.4); }
[data-theme="luxury"] .capability-item::before { background: var(--orange-pale); color: var(--orange); }

[data-theme="luxury"] .office-card { background: rgba(20,16,9,0.9); backdrop-filter: none; border: 1px solid var(--border); }
[data-theme="luxury"] .office-card:hover { border-color: rgba(201,168,76,0.4); }
[data-theme="luxury"] .office-sub { color: var(--orange) !important; }
[data-theme="luxury"] .office-detail a { color: var(--orange); }

/* Sections */
[data-theme="luxury"] .services-section { background: var(--navy-mid); }
[data-theme="luxury"] .stats-bar { background: linear-gradient(135deg, #1E180F, #0C0A06); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
[data-theme="luxury"] .stat-num { color: var(--orange); font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; }
[data-theme="luxury"] .stat-label { color: var(--muted); letter-spacing: 0.08em; font-size: 0.78rem; text-transform: uppercase; }
[data-theme="luxury"] .stat-item { border-right-color: var(--border); }
[data-theme="luxury"] .section-label { color: var(--orange); font-style: italic; letter-spacing: 0.1em; }
[data-theme="luxury"] .about-badge { background: linear-gradient(135deg, #C9A84C, #E0C070); color: #0C0A06; box-shadow: 0 8px 32px rgba(201,168,76,0.25); }
[data-theme="luxury"] .about-feature::before { background: var(--orange); }

[data-theme="luxury"] .cta-banner { background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)); border: 1px solid var(--border); }
[data-theme="luxury"] .cta-banner::before { background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent 70%); }
[data-theme="luxury"] .gradient-text { background: linear-gradient(135deg, var(--orange), var(--orange-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* Form inputs */
[data-theme="luxury"] .form-group input:focus,
[data-theme="luxury"] .form-group textarea:focus,
[data-theme="luxury"] .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(201,168,76,0.1); }

/* Footer */
[data-theme="luxury"] .footer { background: #080600; border-top: 1px solid var(--border); }
[data-theme="luxury"] .footer-col h5 { color: var(--orange); font-family: 'Cormorant Garamond', serif; font-size: 1rem; letter-spacing: 0.12em; font-weight: 400; font-style: italic; }
[data-theme="luxury"] .footer-links a:hover { color: var(--orange); }
[data-theme="luxury"] .footer-contact-icon { color: var(--orange); }
[data-theme="luxury"] .footer-bottom { border-top-color: var(--border); }
[data-theme="luxury"] .social-link:hover { border-color: var(--orange); color: var(--orange); }
[data-theme="luxury"] p { color: var(--muted); }


/* ══ THEME 5: SBG / StockBridge ════════════════════════════════
   Dark teal + clean white · Inter Bold · corporate‑clean panels
   Inspired by the StockBridgeGlobal logo                       */
[data-theme="sbg"] {
  --navy:        #0B1E23;
  --navy-mid:    #102930;
  --navy-light:  #163840;
  --blue:        #00897B;
  --blue-light:  #26A69A;
  --blue-pale:   rgba(0,137,123,0.12);
  --orange:      #00BFA5;
  --orange-light:#4DD0B8;
  --orange-pale: rgba(0,191,165,0.1);
  --white:       #E8F5F0;
  --muted:       #78A09A;
  --border:      rgba(0,191,165,0.12);
  --glass:       rgba(11,30,35,0.85);
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 14px;
  --shadow-orange: 0 4px 30px rgba(0,191,165,0.2);
  --shadow-blue:   0 4px 30px rgba(0,137,123,0.2);
}
[data-theme="sbg"] body { background: var(--navy); color: var(--white); }
[data-theme="sbg"] h1, [data-theme="sbg"] h2, [data-theme="sbg"] h3,
[data-theme="sbg"] h4, [data-theme="sbg"] h5 {
  font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.01em;
}
[data-theme="sbg"] .logo-union { color: var(--orange); font-family: 'Inter', sans-serif; font-weight: 900; }
[data-theme="sbg"] .logo-logistics, [data-theme="sbg"] .logo-fze { color: var(--blue-light); font-family: 'Inter', sans-serif; }
[data-theme="sbg"] .logo-globe { filter: hue-rotate(140deg) saturate(1.2); }

[data-theme="sbg"] .navbar.scrolled {
  background: rgba(11,30,35,0.97); border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
[data-theme="sbg"] .mobile-menu { background: rgba(11,30,35,0.99); }
[data-theme="sbg"] .nav-links a.active::after { background: var(--orange); }

[data-theme="sbg"] .hero-overlay { background: linear-gradient(135deg,rgba(11,30,35,0.94) 0%,rgba(11,30,35,0.72) 55%,rgba(11,30,35,0.9) 100%); }
[data-theme="sbg"] .hero-badge { background: rgba(0,191,165,0.08); border-color: rgba(0,191,165,0.35); color: var(--orange); }
[data-theme="sbg"] .scroll-line { background: linear-gradient(to bottom, var(--orange), transparent); }
[data-theme="sbg"] .hero-stat-num { font-family: 'Inter', sans-serif; font-weight: 800; }

[data-theme="sbg"] .btn-orange, [data-theme="sbg"] .btn-gold {
  background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff;
}
[data-theme="sbg"] .btn-orange:hover, [data-theme="sbg"] .btn-gold:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #0B1E23;
  box-shadow: 0 4px 24px rgba(0,191,165,0.35); transform: translateY(-2px);
}
[data-theme="sbg"] .btn-outline { border-color: rgba(0,191,165,0.3); color: var(--white); }
[data-theme="sbg"] .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

[data-theme="sbg"] .service-card {
  background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border);
}
[data-theme="sbg"] .service-card::before { background: linear-gradient(90deg, var(--blue), var(--orange)); }
[data-theme="sbg"] .service-card:hover { border-color: var(--orange); box-shadow: var(--shadow-orange); }
[data-theme="sbg"] .service-card h3 { font-weight: 700; }
[data-theme="sbg"] .service-link { color: var(--orange); }
[data-theme="sbg"] .feature-card { background: var(--glass); border: 1px solid var(--border); }
[data-theme="sbg"] .feature-card:hover { border-color: rgba(0,191,165,0.35); }
[data-theme="sbg"] .feature-icon-wrap { background: var(--orange-pale); }
[data-theme="sbg"] .capability-item { background: var(--glass); border: 1px solid var(--border); }
[data-theme="sbg"] .capability-item:hover { border-color: rgba(0,191,165,0.35); }
[data-theme="sbg"] .capability-item::before { background: var(--orange-pale); color: var(--orange); }
[data-theme="sbg"] .office-card { background: var(--glass); border: 1px solid var(--border); }
[data-theme="sbg"] .office-card:hover { border-color: rgba(0,191,165,0.35); }

[data-theme="sbg"] .services-section { background: var(--navy-mid); }
[data-theme="sbg"] .stats-bar { background: linear-gradient(135deg, #00695C, #003D33); }
[data-theme="sbg"] .stat-num { color: var(--orange); font-family: 'Inter', sans-serif; font-weight: 800; }
[data-theme="sbg"] .stat-label { color: rgba(232,245,240,0.55); }
[data-theme="sbg"] .section-label { color: var(--orange); letter-spacing: 0.12em; }
[data-theme="sbg"] .about-badge { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
[data-theme="sbg"] .about-feature::before { background: var(--orange); }
[data-theme="sbg"] .cta-banner { background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)); border: 1px solid var(--border); }
[data-theme="sbg"] .cta-banner::before { background: radial-gradient(ellipse, rgba(0,191,165,0.1), transparent 70%); }
[data-theme="sbg"] .gradient-text { background: linear-gradient(135deg, var(--orange), var(--orange-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
[data-theme="sbg"] .footer { background: #071518; border-top: 1px solid var(--border); }
[data-theme="sbg"] .footer-col h5 { color: var(--orange); }
[data-theme="sbg"] .footer-links a:hover { color: var(--orange); }
[data-theme="sbg"] .footer-contact-icon { color: var(--orange); }
[data-theme="sbg"] .social-link:hover { border-color: var(--orange); color: var(--orange); }
[data-theme="sbg"] p { color: var(--muted); }

/* ══ THEME 6: DHL Express ══════════════════════════════════════
   White bg · DHL yellow #FFCC00 + red #D40511 · Roboto Condensed
   Bold, clean, high-contrast — inspired by dhl.com             */
[data-theme="dhl"] {
  --navy:        #FFFFFF;
  --navy-mid:    #F7F7F7;
  --navy-light:  #EFEFEF;
  --blue:        #D40511;
  --blue-light:  #E8192C;
  --blue-pale:   rgba(212,5,17,0.08);
  --orange:      #D40511;
  --orange-light:#E8192C;
  --orange-pale: rgba(212,5,17,0.06);
  --white:       #1A1A1A;
  --muted:       #666666;
  --border:      rgba(0,0,0,0.1);
  --glass:       rgba(255,255,255,0.95);
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --shadow-orange: 0 4px 20px rgba(212,5,17,0.15);
  --shadow-blue:   0 4px 20px rgba(212,5,17,0.1);
}
[data-theme="dhl"] body { background: #fff; color: #1A1A1A; }
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;600;700;800;900&display=swap');
[data-theme="dhl"] h1, [data-theme="dhl"] h2, [data-theme="dhl"] h3,
[data-theme="dhl"] h4, [data-theme="dhl"] h5 {
  font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.02em;
}
[data-theme="dhl"] .logo-union { color: #D40511; font-family: 'Roboto Condensed', sans-serif; font-weight: 900; }
[data-theme="dhl"] .logo-logistics, [data-theme="dhl"] .logo-fze { color: #666; font-family: 'Roboto Condensed', sans-serif; }
[data-theme="dhl"] .logo-globe { box-shadow: none; }
[data-theme="dhl"] .logo-u { color: #D40511; }

/* Navbar — white with yellow bottom accent */
[data-theme="dhl"] .navbar { background: #fff; overflow: visible; }
[data-theme="dhl"] .navbar.scrolled {
  background: rgba(255,255,255,0.98); border-bottom: 3px solid #FFCC00;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); backdrop-filter: none;
}
[data-theme="dhl"] .nav-links a { color: #666; }
[data-theme="dhl"] .nav-links a:hover, [data-theme="dhl"] .nav-links a.active { color: #1A1A1A; }
[data-theme="dhl"] .nav-links a.active::after { background: #D40511; height: 3px; }
[data-theme="dhl"] .hamburger span { background: #1A1A1A; }
[data-theme="dhl"] .mobile-menu { background: rgba(255,255,255,0.99); }
[data-theme="dhl"] .mobile-menu a { color: #1A1A1A; }
[data-theme="dhl"] .mobile-menu a:hover { color: #D40511; }

/* Hero — bright overlay */
[data-theme="dhl"] .hero-overlay {
  background: linear-gradient(135deg,rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.65) 55%,rgba(255,255,255,0.85) 100%);
}
[data-theme="dhl"] .hero h1 { color: #1A1A1A; }
[data-theme="dhl"] .hero-sub { color: rgba(26,26,26,0.7); }
[data-theme="dhl"] .hero-stat-num { color: #1A1A1A; font-family: 'Roboto Condensed', sans-serif; font-weight: 900; }
[data-theme="dhl"] .hero-badge {
  background: #FFCC00; border-color: #FFCC00; color: #1A1A1A;
  border-radius: 4px; font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
}
[data-theme="dhl"] .hero-badge span { background: #D40511; }
[data-theme="dhl"] .hero-stats { border-top-color: rgba(0,0,0,0.1); }
[data-theme="dhl"] .scroll-line { background: linear-gradient(to bottom, #D40511, transparent); }

/* Buttons — DHL red with yellow hover */
[data-theme="dhl"] .btn-orange, [data-theme="dhl"] .btn-gold {
  background: #D40511; color: #fff; border-radius: 4px;
  font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.06em;
}
[data-theme="dhl"] .btn-orange:hover, [data-theme="dhl"] .btn-gold:hover {
  background: #FFCC00; color: #1A1A1A;
  box-shadow: 0 4px 16px rgba(255,204,0,0.35); transform: translateY(-2px);
}
[data-theme="dhl"] .btn-outline { border-color: rgba(0,0,0,0.2); color: #1A1A1A; border-radius: 4px; }
[data-theme="dhl"] .btn-outline:hover { border-color: #D40511; color: #D40511; }

/* Cards — white with yellow top strip on hover */
[data-theme="dhl"] .service-card {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
[data-theme="dhl"] .service-card::before { background: #FFCC00; height: 4px; }
[data-theme="dhl"] .service-card:hover {
  border-color: rgba(0,0,0,0.12); box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
[data-theme="dhl"] .service-card:hover::before { opacity: 1; }
[data-theme="dhl"] .service-card h3 { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; }
[data-theme="dhl"] .service-link { color: #D40511; }

[data-theme="dhl"] .feature-card {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="dhl"] .feature-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.12); }
[data-theme="dhl"] .feature-icon-wrap { background: #FFCC00; border-radius: 4px; color: #D40511; }
[data-theme="dhl"] .feature-card h4 { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; }

[data-theme="dhl"] .capability-item {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08);
}
[data-theme="dhl"] .capability-item:hover { border-color: #FFCC00; }
[data-theme="dhl"] .capability-item::before { background: #FFCC00; color: #1A1A1A; }

[data-theme="dhl"] .office-card {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
[data-theme="dhl"] .office-card:hover { border-color: #FFCC00; box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
[data-theme="dhl"] .office-sub { color: #D40511 !important; }
[data-theme="dhl"] .office-detail a { color: #D40511; }

/* Sections */
[data-theme="dhl"] .services-section { background: #F7F7F7; }
[data-theme="dhl"] .stats-bar { background: #FFCC00; }
[data-theme="dhl"] .stat-num { color: #1A1A1A; font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: 3.4rem; }
[data-theme="dhl"] .stat-label { color: rgba(26,26,26,0.6); font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; }
[data-theme="dhl"] .stat-item { border-right-color: rgba(26,26,26,0.15); }
[data-theme="dhl"] .section-label {
  color: #D40511; font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em;
}
[data-theme="dhl"] .about-badge { background: #D40511; box-shadow: 0 4px 20px rgba(212,5,17,0.2); }
[data-theme="dhl"] .about-feature::before { background: #FFCC00; }
[data-theme="dhl"] .about-image-wrap::before { background: linear-gradient(135deg, rgba(255,204,0,0.15), rgba(212,5,17,0.05)); }

[data-theme="dhl"] .cta-banner { background: #F7F7F7; border: 1px solid rgba(0,0,0,0.08); }
[data-theme="dhl"] .cta-banner::before { background: radial-gradient(ellipse, rgba(255,204,0,0.15), transparent 70%); }
[data-theme="dhl"] .gradient-text {
  background: none; -webkit-text-fill-color: #D40511; color: #D40511;
}

/* Form */
[data-theme="dhl"] .form-group input, [data-theme="dhl"] .form-group textarea, [data-theme="dhl"] .form-group select {
  background: #fff; color: #1A1A1A; border-color: rgba(0,0,0,0.15); backdrop-filter: none;
}
[data-theme="dhl"] .form-group input:focus, [data-theme="dhl"] .form-group textarea:focus,
[data-theme="dhl"] .form-group select:focus { border-color: #FFCC00; box-shadow: 0 0 0 3px rgba(255,204,0,0.2); }
[data-theme="dhl"] .form-group label { color: #1A1A1A; }
[data-theme="dhl"] .form-group input::placeholder, [data-theme="dhl"] .form-group textarea::placeholder { color: #999; }

/* Footer — DHL red band */
[data-theme="dhl"] .footer { background: #1A1A1A; border-top: 4px solid #FFCC00; }
[data-theme="dhl"] .footer-col h5 { color: #FFCC00; font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; }
[data-theme="dhl"] .footer-brand p { color: rgba(255,255,255,0.55); }
[data-theme="dhl"] .footer-links a { color: rgba(255,255,255,0.6); }
[data-theme="dhl"] .footer-links a:hover { color: #FFCC00; }
[data-theme="dhl"] .footer-contact-item { color: rgba(255,255,255,0.6); }
[data-theme="dhl"] .footer-contact-icon { color: #FFCC00; }
[data-theme="dhl"] .footer-contact-item a { color: rgba(255,255,255,0.6); }
[data-theme="dhl"] .footer-contact-item a:hover { color: #FFCC00; }
[data-theme="dhl"] .footer-bottom { border-top-color: rgba(255,255,255,0.1); }
[data-theme="dhl"] .footer-bottom p { color: rgba(255,255,255,0.35); }
[data-theme="dhl"] .social-link { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
[data-theme="dhl"] .social-link:hover { border-color: #FFCC00; color: #FFCC00; }
[data-theme="dhl"] p { color: var(--muted); }

/* ══ THEME 7: Express ══════════════════════════════════════════
   DHL layout · orange #F47B20 replaces red · blue #1B4FD8 replaces yellow
   Bold, clean, high-contrast — same Roboto Condensed typeface   */
[data-theme="express"] {
  --navy:        #FFFFFF;
  --navy-mid:    #F7F7F7;
  --navy-light:  #EFEFEF;
  --blue:        #F47B20;
  --blue-light:  #F99A4A;
  --blue-pale:   rgba(244,123,32,0.08);
  --orange:      #F47B20;
  --orange-light:#F99A4A;
  --orange-pale: rgba(244,123,32,0.06);
  --white:       #1A1A1A;
  --muted:       #666666;
  --border:      rgba(0,0,0,0.1);
  --glass:       rgba(255,255,255,0.95);
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --shadow-orange: 0 4px 20px rgba(244,123,32,0.15);
  --shadow-blue:   0 4px 20px rgba(27,79,216,0.1);
}
[data-theme="express"] body { background: #fff; color: #1A1A1A; }
[data-theme="express"] h1, [data-theme="express"] h2, [data-theme="express"] h3,
[data-theme="express"] h4, [data-theme="express"] h5 {
  font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.02em;
}
[data-theme="express"] .logo-union { color: #F47B20; font-family: 'Roboto Condensed', sans-serif; font-weight: 900; }
[data-theme="express"] .logo-logistics, [data-theme="express"] .logo-fze { color: #666; font-family: 'Roboto Condensed', sans-serif; }
[data-theme="express"] .logo-globe { box-shadow: none; }
[data-theme="express"] .logo-u { color: #fff; }

/* Navbar — white with blue bottom accent */
[data-theme="express"] .navbar { background: #fff; overflow: visible; }
[data-theme="express"] .navbar.scrolled {
  background: rgba(255,255,255,0.98); border-bottom: 3px solid #1B4FD8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); backdrop-filter: none;
}
[data-theme="express"] .nav-links a { color: #666; }
[data-theme="express"] .nav-links a:hover, [data-theme="express"] .nav-links a.active { color: #1A1A1A; }
[data-theme="express"] .nav-links a.active::after { background: #F47B20; height: 3px; }
[data-theme="express"] .hamburger span { background: #1A1A1A; }
[data-theme="express"] .mobile-menu { background: rgba(255,255,255,0.99); }
[data-theme="express"] .mobile-menu a { color: #1A1A1A; }
[data-theme="express"] .mobile-menu a:hover { color: #F47B20; }

/* Hero — bright overlay */
[data-theme="express"] .hero-overlay {
  background: linear-gradient(135deg,rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.65) 55%,rgba(255,255,255,0.85) 100%);
}
[data-theme="express"] .hero h1 { color: #1A1A1A; }
[data-theme="express"] .hero-sub { color: rgba(26,26,26,0.7); }
[data-theme="express"] .hero-stat-num { color: #1A1A1A; font-family: 'Roboto Condensed', sans-serif; font-weight: 900; }
[data-theme="express"] .hero-badge {
  background: #1B4FD8; border-color: #1B4FD8; color: #fff;
  border-radius: 4px; font-family: 'Roboto Condensed', sans-serif; font-weight: 700;
}
[data-theme="express"] .hero-badge span { background: #F47B20; }
[data-theme="express"] .hero-stats { border-top-color: rgba(0,0,0,0.1); }
[data-theme="express"] .scroll-line { background: linear-gradient(to bottom, #F47B20, transparent); }

/* Buttons — orange with blue hover */
[data-theme="express"] .btn-orange, [data-theme="express"] .btn-gold {
  background: #F47B20; color: #fff; border-radius: 4px;
  font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.06em;
}
[data-theme="express"] .btn-orange:hover, [data-theme="express"] .btn-gold:hover {
  background: #1B4FD8; color: #fff;
  box-shadow: 0 4px 16px rgba(27,79,216,0.35); transform: translateY(-2px);
}
[data-theme="express"] .btn-outline { border-color: rgba(0,0,0,0.2); color: #1A1A1A; border-radius: 4px; }
[data-theme="express"] .btn-outline:hover { border-color: #F47B20; color: #F47B20; }

/* Cards — white with blue top strip on hover */
[data-theme="express"] .service-card {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
[data-theme="express"] .service-card::before { background: #1B4FD8; height: 4px; }
[data-theme="express"] .service-card:hover {
  border-color: rgba(0,0,0,0.12); box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
[data-theme="express"] .service-card:hover::before { opacity: 1; }
[data-theme="express"] .service-card h3 { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; }
[data-theme="express"] .service-link { color: #F47B20; }

[data-theme="express"] .feature-card {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="express"] .feature-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.12); }
[data-theme="express"] .feature-icon-wrap { background: #1B4FD8; border-radius: 4px; color: #fff; }
[data-theme="express"] .feature-card h4 { font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; }

[data-theme="express"] .capability-item {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08);
}
[data-theme="express"] .capability-item:hover { border-color: #1B4FD8; }
[data-theme="express"] .capability-item::before { background: #1B4FD8; color: #fff; }

[data-theme="express"] .office-card {
  background: #fff; backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
[data-theme="express"] .office-card:hover { border-color: #1B4FD8; box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
[data-theme="express"] .office-sub { color: #F47B20 !important; }
[data-theme="express"] .office-detail a { color: #F47B20; }

/* Sections */
[data-theme="express"] .services-section { background: #F7F7F7; }
[data-theme="express"] .stats-bar { background: #1B4FD8; }
[data-theme="express"] .stat-num { color: #fff; font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: 3.4rem; }
[data-theme="express"] .stat-label { color: rgba(255,255,255,0.7); font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; }
[data-theme="express"] .stat-item { border-right-color: rgba(255,255,255,0.2); }
[data-theme="express"] .section-label {
  color: #F47B20; font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em;
}
[data-theme="express"] .about-badge { background: #F47B20; box-shadow: 0 4px 20px rgba(244,123,32,0.2); }
[data-theme="express"] .about-feature::before { background: #1B4FD8; }
[data-theme="express"] .about-image-wrap::before { background: linear-gradient(135deg, rgba(27,79,216,0.15), rgba(244,123,32,0.05)); }

[data-theme="express"] .cta-banner { background: #F7F7F7; border: 1px solid rgba(0,0,0,0.08); }
[data-theme="express"] .cta-banner::before { background: radial-gradient(ellipse, rgba(27,79,216,0.15), transparent 70%); }
[data-theme="express"] .gradient-text {
  background: none; -webkit-text-fill-color: #F47B20; color: #F47B20;
}

/* Form */
[data-theme="express"] .form-group input, [data-theme="express"] .form-group textarea, [data-theme="express"] .form-group select {
  background: #fff; color: #1A1A1A; border-color: rgba(0,0,0,0.15); backdrop-filter: none;
}
[data-theme="express"] .form-group input:focus, [data-theme="express"] .form-group textarea:focus,
[data-theme="express"] .form-group select:focus { border-color: #1B4FD8; box-shadow: 0 0 0 3px rgba(27,79,216,0.2); }
[data-theme="express"] .form-group label { color: #1A1A1A; }
[data-theme="express"] .form-group input::placeholder, [data-theme="express"] .form-group textarea::placeholder { color: #999; }

/* Footer */
[data-theme="express"] .footer { background: #1A1A1A; border-top: 4px solid #1B4FD8; }
[data-theme="express"] .footer-col h5 { color: #1B4FD8; font-family: 'Roboto Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; }
[data-theme="express"] .footer-brand p { color: rgba(255,255,255,0.55); }
[data-theme="express"] .footer-links a { color: rgba(255,255,255,0.6); }
[data-theme="express"] .footer-links a:hover { color: #F47B20; }
[data-theme="express"] .footer-contact-item { color: rgba(255,255,255,0.6); }
[data-theme="express"] .footer-contact-icon { color: #1B4FD8; }
[data-theme="express"] .footer-contact-item a { color: rgba(255,255,255,0.6); }
[data-theme="express"] .footer-contact-item a:hover { color: #F47B20; }
[data-theme="express"] .footer-bottom { border-top-color: rgba(255,255,255,0.1); }
[data-theme="express"] .footer-bottom p { color: rgba(255,255,255,0.35); }
[data-theme="express"] .social-link { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
[data-theme="express"] .social-link:hover { border-color: #1B4FD8; color: #1B4FD8; }
[data-theme="express"] p { color: var(--muted); }

/* ── Theme Switcher UI ──────────────────────────────────────── */
.theme-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 6px 20px; height: 36px;
}
.theme-bar-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-right: 4px;
}
.theme-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: var(--transition); color: rgba(255,255,255,0.55);
  background: transparent;
}
.theme-btn:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.theme-btn.active { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.08); }
.theme-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.theme-dot-dark    { background: linear-gradient(135deg, #0E1B2E, #F47B20); }
.theme-dot-minimal { background: linear-gradient(135deg, #FAFAF8, #D9620E); border-color: rgba(0,0,0,0.3); }
.theme-dot-geo     { background: linear-gradient(135deg, #080808, #F47B20); }
.theme-dot-luxury  { background: linear-gradient(135deg, #0C0A06, #C9A84C); }
.theme-dot-sbg     { background: linear-gradient(135deg, #0B1E23, #00BFA5); }
.theme-dot-dhl     { background: linear-gradient(135deg, #FFCC00, #D40511); border-color: rgba(0,0,0,0.3); }
.theme-dot-express { background: linear-gradient(135deg, #F47B20, #1B4FD8); border-color: rgba(0,0,0,0.3); }

/* Push everything below the theme bar (36px) + navbar (72px) */
.page-hero { padding-top: 196px; }

/* Smooth theme transitions */
body, .navbar, .footer, .service-card, .feature-card, .office-card,
.capability-item, .about-image-wrap, .stats-bar, .services-section,
.cta-banner, .mobile-menu {
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0 !important;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-main); }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blue-text {
  background: linear-gradient(135deg, var(--blue-light), #4A72D5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--muted); font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title    { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; max-width: 560px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition);
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* Keep btn-gold as alias for orange for compatibility */
.btn-gold { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  overflow: visible;
}
.navbar.scrolled {
  background: rgba(8,16,24,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  height: 72px; gap: 32px;
  overflow: visible;
}

/* CSS-replicated logo — matches brand exactly */
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  overflow: visible;
}
.logo-globe {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
  background: url('../images/globe.svg') center/cover no-repeat;
  box-shadow: inset -2px -2px 6px rgba(0,0,0,0.3), 0 2px 8px rgba(13,71,161,0.3);
  animation: globeSpin 60s linear infinite;
}
@keyframes globeSpin {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
/* Sun/moon orbit */
.globe-celestial {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  filter: drop-shadow(0 0 3px currentColor);
}
.globe-sun {
  background: radial-gradient(circle, #FFD54F, #FF8F00);
  color: #FFD54F;
}
.globe-moon {
  background: radial-gradient(circle at 65% 35%, #E0E0E0, #9E9E9E);
  color: #E0E0E0;
  box-shadow: inset -2px -1px 0 0 rgba(0,0,0,0.15);
}
.logo-globe::before { display: none; }
.logo-globe::after { display: none; }
.logo-u {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative; z-index: 2;
}
.logo-wordmark { display: flex; align-items: baseline; gap: 4px; }
.logo-union {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.03em;
  line-height: 1;
}
.logo-logistics {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; white-space: nowrap;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Language toggle */
.lang-toggle {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: auto;
}
.lang-toggle:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* RTL support — text direction only, no layout flipping */
[dir="rtl"] { direction: rtl; }
[dir="rtl"] p,
[dir="rtl"] .hero-sub,
[dir="rtl"] .service-card,
[dir="rtl"] .feature-card,
[dir="rtl"] .office-card,
[dir="rtl"] .about-features,
[dir="rtl"] .about-feature,
[dir="rtl"] .capability-item,
[dir="rtl"] .stat-label,
[dir="rtl"] .hero-stat-label,
[dir="rtl"] .breadcrumb,
[dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .text-center,
[dir="rtl"] .hero-content,
[dir="rtl"] .cta-banner,
[dir="rtl"] .hero-stats { text-align: center; }
/* Keep all layouts LTR — no flipping images, grids, or navbar */
[dir="rtl"] .navbar-inner,
[dir="rtl"] .nav-links,
[dir="rtl"] .services-grid,
[dir="rtl"] .features-grid,
[dir="rtl"] .footer-grid,
[dir="rtl"] .stats-grid,
[dir="rtl"] .about-grid,
[dir="rtl"] .detail-grid,
[dir="rtl"] .service-row,
[dir="rtl"] .hero-actions { direction: ltr; }
/* Keep logo on the left, untouched */
[dir="rtl"] .logo,
[dir="rtl"] .logo-wordmark { direction: ltr; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px; border-radius: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,16,24,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--white); transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover; background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,16,24,0.93) 0%, rgba(8,16,24,0.72) 55%, rgba(8,16,24,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; padding-top: 136px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,123,32,0.1);
  border: 1px solid rgba(244,123,32,0.35);
  border-radius: 50px; padding: 7px 18px;
  font-size: 0.8rem; font-weight: 600; color: var(--orange);
  margin-bottom: 24px;
}
.hero-badge span {
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 { max-width: 680px; margin-bottom: 20px; }
.hero-sub {
  font-size: 1.1rem; max-width: 540px; margin-bottom: 40px;
  color: rgba(242,246,255,0.7);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 72px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--white);
}
.hero-stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2.5s ease-in-out infinite; opacity: 0.55;
  transition: opacity 0.5s ease;
}
.scroll-indicator span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--orange), transparent); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.about-image-wrap img { width: 100%; height: 380px; object-fit: cover; }
.about-image-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,62,143,0.25), rgba(244,123,32,0.08));
  z-index: 1; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; padding: 20px 28px;
  border-radius: var(--radius-md); text-align: center; z-index: 2;
  box-shadow: var(--shadow-orange);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: 0.78rem; font-weight: 600; margin-top: 2px; opacity: 0.9; }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--white);
}
.about-feature::before {
  content: ''; width: 8px; height: 8px; flex-shrink: 0;
  background: var(--orange); border-radius: 50%;
}

/* ── Services Grid ──────────────────────────────────────────── */
.services-section { background: var(--navy-mid); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: rgba(244,123,32,0.3); transform: translateY(-6px); box-shadow: var(--shadow-orange); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  border: 2px solid currentColor;
  background: transparent;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(255,255,255,0.05);
  transform: scale(1.08);
}
.service-icon-bg-blue   { color: var(--orange); }
.service-icon-bg-orange { color: var(--orange); }
.service-icon-bg-cyan   { color: #22d3ee; }
.service-icon-bg-teal   { color: #14b8a6; }
.service-icon-bg-green  { color: #10b981; }
.service-icon-bg-purple { color: #8b5cf6; }
.service-icon-bg-gold   { color: #f59e0b; }
.service-icon-bg-slate  { color: #64748b; }

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--orange); transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar { background: linear-gradient(135deg, var(--blue) 0%, #0E2560 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--orange); line-height: 1;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ── Features ───────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 60px;
}
.feature-card {
  display: flex; gap: 20px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(244,123,32,0.25); transform: translateY(-3px); }
.feature-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.feature-card h4 { margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(244,123,32,0.15), transparent 70%);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 500px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Page Hero (sub-pages) ──────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(27,62,143,0.2), transparent 70%);
}
.page-hero-icon {
  font-size: 3.5rem; margin-bottom: 20px; display: inline-block;
  filter: drop-shadow(0 0 20px rgba(244,123,32,0.4));
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 580px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--border); }

/* ── Detail Layout ──────────────────────────────────────────── */
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.detail-image {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  position: relative;
}
.detail-image img { width: 100%; height: 420px; object-fit: cover; }

/* Logo watermark on all images */
.detail-image::after,
.service-row-image::after,
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  background: url('../images/globe.svg') center/cover no-repeat;
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.service-row-image,
.about-image-wrap {
  position: relative;
}

.capability-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.capability-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.9rem;
  transition: var(--transition); backdrop-filter: blur(8px);
}
.capability-item:hover { border-color: rgba(244,123,32,0.3); }
.capability-item::before {
  content: '✓'; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--orange-pale); color: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-layout {
  display: flex; flex-direction: column; gap: 48px;
}
.contact-layout .contact-form { max-width: 640px; margin: 0 auto; width: 100%; }
.offices-grid-main {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px;
}
.offices-grid-main .office-card { margin-bottom: 0; }
.warehouse-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px;
}
.warehouse-grid .office-card { margin-bottom: 0; }
.office-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 36px; margin-bottom: 24px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: var(--transition); text-align: left;
}
.office-card:hover { border-color: rgba(244,123,32,0.3); }
.office-flag { font-size: 2rem; margin-bottom: 16px; }
.office-card h3 { margin-bottom: 4px; }
.office-card .office-sub { font-size: 0.85rem; color: var(--orange); margin-bottom: 20px; }
.office-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; font-size: 0.9rem;
}
.office-detail-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.office-detail a { color: var(--orange); }
.office-detail a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  color: var(--white); font-family: var(--font-main); font-size: 0.9rem;
  transition: var(--transition); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,123,32,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--navy-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Services Full Page ─────────────────────────────────────── */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 80px;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-image {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
}
.service-row-image img { width: 100%; height: 300px; object-fit: cover; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border); padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .logo {
  margin-bottom: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-brand {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-brand .logo-globe {
  width: 160px; height: 160px;
  margin: 0 auto;
}
.footer-brand .logo-u { font-size: 5rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; text-align: center; margin: 0 auto; }

.footer-col h5 {
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem; color: var(--muted);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 0.87rem; color: var(--muted);
}
.footer-contact-icon { flex-shrink: 0; color: var(--orange); }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  margin-top: 56px; padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ── Animations ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { gap: 32px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .features-grid  { grid-template-columns: 1fr; }
  .service-row    { grid-template-columns: 1fr; }
  .service-row.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { padding: 32px 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .hero-stats    { gap: 24px; }
  .cta-banner    { padding: 48px 24px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .warehouse-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .about-badge   { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .hero-actions  { flex-direction: column; }
  .cta-actions   { flex-direction: column; align-items: center; }
}
