/* ============================================
   OZCOAST LOGISTICS — Premium Design System v2
   Complete Redesign — Clean, Professional, Modern
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #004F63;
  --primary-hover: #006079;
  --primary-dark: #003644;
  --primary-muted: rgba(0, 79, 99, 0.08);
  --primary-muted-hover: rgba(0, 79, 99, 0.14);
  --secondary: #0A1F2E;
  --accent: #00B4D8;
  --accent-hover: #00C7ED;
  --accent-2: #00C9A7;
  --btn-primary: #00748F;
  --btn-primary-hover: #006C84;

  --bg-white: #FFFFFF;
  --bg-light: #F7FAFC;
  --bg-alt: #EBF7FA;
  --bg-dark: #071520;
  --bg-darker: #040C12;

  --text-primary: #1A2B3D;
  --text-secondary: #526879;
  --text-muted: #8A9BAD;
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255,255,255,0.7);

  --border: #E2EBF0;
  --border-hover: #C7D8E2;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.10);
  --shadow-card-hover: 0 16px 40px rgba(0, 79, 99,0.12), 0 4px 8px rgba(0,0,0,0.04);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease-in-out);
  --transition-slow: 0.4s var(--ease-out);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.2; }

/* ---------- Accessibility ---------- */
/* Global visible keyboard focus indicator */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
/* Skip link: hidden until focused, then visible top-left above the header */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  z-index: 200;
  padding: 12px 20px;
  background: var(--primary-dark);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Scroll Animations ---------- */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.anim.in-view { opacity: 1; transform: translateY(0); }
.anim-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.anim-left.in-view { opacity: 1; transform: translateX(0); }
.anim-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.anim-right.in-view { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ---------- Icon System ---------- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }

/* ---------- Section Layout ---------- */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header h2 em {
  font-style: normal;
  color: var(--primary);
}
.highlight {
  color: var(--accent);
  font-style: normal;
}
.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--btn-primary);
  color: var(--text-white);
  border-color: var(--btn-primary);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 79, 99,0.25);
}
.btn-accent {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 180, 216,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary {
  background: var(--bg-light);
  color: var(--primary);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--primary-muted);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.btn .btn-arrow {
  transition: transform var(--transition);
  width: 16px; height: 16px;
}
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-full { width: 100%; justify-content: center; }
/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 100;
  transition: all var(--transition);
  pointer-events: none;
}
.header-main {
  pointer-events: auto;
  transition: all var(--transition);
}
.header-main .container {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220,230,240,0.8);
  border-radius: 100px;
  padding: 12px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.header.is-scrolled .header-main .container {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.header-main .container { display: flex; align-items: center; justify-content: space-between; }

.logo img { height: 44px; width: auto; }
.header.is-scrolled .logo img { height: 38px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

/* Dropdown */
.has-dropdown { position: relative; }
/* Invisible hover bridge: spans the gap between the "Services" trigger and the
   dropdown so moving the cursor down to the menu never loses :hover. */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}
.dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-trigger .chevron { width: 14px; height: 14px; transition: transform var(--transition); }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 620px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transition-delay: 0.18s; /* grace period before closing, so a quick cursor slip doesn't dismiss it */
  z-index: 50;
}
/* thin accent bar across the top of the mega menu */
.dropdown::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 2;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  transition-delay: 0s; /* open immediately */
}
/* Keyboard fallback: reveal mega-menu when any descendant is focused or JS opens it */
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* ===== Services mega menu ===== */
.mega-grid { display: grid; grid-template-columns: 1.08fr 1fr; }
.mega-col { display: flex; flex-direction: column; gap: 2px; padding: 18px 14px 20px; }
.mega-col-cats { background: var(--bg-light); border-right: 1px solid var(--border); }
.mega-label {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); padding: 4px 14px 12px;
}
.mega-cat {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.92rem; font-weight: 600;
  color: var(--text-primary); white-space: nowrap;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.mega-cat .mega-arrow {
  width: 16px; height: 16px; color: var(--accent); flex-shrink: 0;
  opacity: 0; transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
}
.mega-cat:hover, .mega-cat.is-active {
  background: var(--bg-white); color: var(--primary);
  box-shadow: 0 6px 18px rgba(16,38,73,0.10);
}
.mega-cat.is-active { color: var(--accent); }
.mega-cat:hover .mega-arrow, .mega-cat.is-active .mega-arrow { opacity: 1; transform: translateX(0); }
.mega-col-subs { background: var(--bg-white); }
.mega-sub {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.mega-sub::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-hover); flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.mega-sub:hover { background: var(--primary-muted); color: var(--primary); transform: translateX(3px); }
.mega-sub:hover::before { background: var(--accent); box-shadow: 0 0 0 3px rgba(0,180,216,0.18); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.05rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--primary); }
.header-phone svg { width: 18px; height: 18px; color: var(--primary); }

.nav-cta { 
  font-size: 0.95rem !important; 
  padding: 10px 24px !important; 
  font-weight: 700 !important;
  border-radius: 100px !important;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: 12px;
  background: rgba(0, 169, 224, 0.07);
  transition: background var(--transition);
  z-index: 101;
}
.hamburger:hover, .hamburger.open { background: rgba(0, 169, 224, 0.14); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ===== Mobile Nav (premium drawer) ===== */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(7, 21, 32, 0.45);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 98;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(400px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-slow);
  box-shadow: -20px 0 50px rgba(7, 21, 32, 0.18);
}
.mobile-nav.show { right: 0; }
/* brand accent strip down the inner edge */
.mobile-nav::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0, 169, 224, 0.07), rgba(0, 169, 224, 0));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav-brand { display: inline-flex; align-items: center; }
.mobile-nav-logo { height: 34px; width: auto; }
.mobile-nav-close {
  background: rgba(7, 21, 32, 0.05);
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close:hover {
  background: rgba(0, 169, 224, 0.12);
  color: var(--primary);
  transform: rotate(90deg);
}
.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-nav-body {
  padding: 16px 14px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0; /* allow the flex item to shrink so overflow-y:auto can scroll (fixes stuck submenu) */
}
.mobile-nav-link,
.mobile-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: 12px;
  background: transparent;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
/* animated left accent bar */
.mobile-nav-link::before,
.mobile-sub-toggle::before {
  content: ""; position: absolute; left: 6px; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px; height: 22px; border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: transform 0.25s ease;
}
.mobile-nav-link:hover, .mobile-sub-toggle:hover,
.mobile-nav-link.active, .mobile-sub-toggle.active {
  color: var(--primary);
  background: rgba(0, 169, 224, 0.07);
  padding-left: 22px;
}
.mobile-nav-link.active { background: rgba(0, 169, 224, 0.1); }
.mobile-nav-link:hover::before, .mobile-sub-toggle:hover::before,
.mobile-nav-link.active::before, .mobile-sub-toggle.active::before {
  transform: translateY(-50%) scaleY(1);
}
.mobile-sub-toggle svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--transition); color: var(--text-light); }
.mobile-sub-toggle.open { color: var(--primary); background: rgba(0, 169, 224, 0.07); }
.mobile-sub-toggle.open svg { transform: rotate(180deg); color: var(--primary); }
.mobile-sub-list {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  margin: 0 4px 4px;
}
.mobile-sub-list.show { max-height: 640px; padding-bottom: 6px; }
.mobile-sub-list a {
  display: block;
  padding: 11px 16px 11px 32px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.mobile-sub-list a::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-light);
  transition: all 0.2s ease;
}
.mobile-sub-list a:hover {
  color: var(--primary);
  background: rgba(0, 169, 224, 0.05);
  padding-left: 36px;
}
.mobile-sub-list a:hover::before {
  background: var(--primary);
  transform: translateY(-50%) scale(1.6);
}
/* footer: quote CTA + one-tap contact */
.mobile-nav-footer {
  padding: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, rgba(0, 169, 224, 0.05), rgba(0, 169, 224, 0));
}
.mobile-nav-quote {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 169, 224, 0.28);
}
.mobile-nav-quote svg { width: 18px; height: 18px; }
.mobile-nav-contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 12px;
}
.mnc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600; font-size: 0.92rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  transition: all 0.2s ease;
}
.mnc-btn svg { width: 18px; height: 18px; }
.mnc-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 25, 60, 0.08); }
.mnc-wa { color: #1ebe5b; }
.mnc-wa:hover { border-color: #1ebe5b; color: #169a4a; }
/* staggered entrance */
.mobile-nav-body > *,
.mobile-nav-footer {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-nav.show .mobile-nav-body > *,
.mobile-nav.show .mobile-nav-footer { opacity: 1; transform: none; }
.mobile-nav.show .mobile-nav-body > *:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.show .mobile-nav-body > *:nth-child(2) { transition-delay: 0.11s; }
.mobile-nav.show .mobile-nav-body > *:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav.show .mobile-nav-body > *:nth-child(4) { transition-delay: 0.21s; }
.mobile-nav.show .mobile-nav-body > *:nth-child(5) { transition-delay: 0.26s; }
.mobile-nav.show .mobile-nav-body > *:nth-child(6) { transition-delay: 0.31s; }
.mobile-nav.show .mobile-nav-body > *:nth-child(7) { transition-delay: 0.36s; }
.mobile-nav.show .mobile-nav-footer { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav-body > *, .mobile-nav-footer { transition: none; opacity: 1; transform: none; }
  .mobile-nav-close:hover { transform: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
  overflow: visible;
  padding-top: 110px; /* Offset for header + breathing room */
  padding-bottom: 20px; /* Give the quote bar space */
}

/* Dynamic Abstract Background */
.hero-abstract-bg {
  position: absolute; inset: 0; z-index: 1;
  background: var(--bg-white);
  overflow: hidden;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.8;
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(0, 79, 99, 0.1);
  top: -200px; right: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: rgba(0, 180, 216, 0.1);
  bottom: -100px; left: -200px;
  opacity: 1;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.hero-container-split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding-bottom: 20px;
  margin-top: 20px;
}

/* Left: Typography */
.hero-content { max-width: 600px; }
.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-overline .line {
  width: 40px; height: 2px;
  background: var(--bg-dark);
  border-radius: 1px;
}
.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero h1 .gradient-text {
  color: var(--primary);
  display: inline-block;
}
.hero-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

/* Hero Stats */
.hero-metrics {
  display: flex; gap: 40px;
  margin-bottom: 40px; /* Space before the bottom bar */
}
.hero-metric { display: flex; flex-direction: column; gap: 4px; }
.hero-metric .metric-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero-metric .metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Right: 3D Pop-Out Image */
.hero-3d-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.truck-wrapper {
  position: relative;
  width: 130%;
  margin-right: -15%;
  z-index: 10;
}
.truck-img {
  max-height: 560px;
  width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(-10px 15px 25px rgba(0, 0, 0, 0.2));
}
.truck-shadow {
  position: absolute;
  bottom: -10%; left: 10%; right: 10%;
  height: 40px;
  background: rgba(0, 180, 216,0.3);
  filter: blur(40px);
  border-radius: 50%;
  z-index: -1;
}
.float-anim-heavy {
  animation: float-heavy 6s ease-in-out infinite;
}
@keyframes float-heavy {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Bottom: Horizontal Quote Bar */
.hero-bottom-bar-container {
  position: relative;
  width: 100%;
  z-index: 20;
}
.quote-bar-glass {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
  padding: 16px 5%;
  width: 100%;
}
.quote-bar-form {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.qb-group {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  height: 64px;
  border-radius: 12px;
  transition: background 0.2s ease;
}
.qb-group:focus-within { background: var(--primary-muted); }
.qb-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-muted);
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}
.qb-group:focus-within .qb-icon { background: var(--accent); color: #fff; }
.qb-icon svg { width: 18px; height: 18px; }
.qb-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
}
.qb-group label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.qb-group input, .qb-group select {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  padding: 0;
  cursor: pointer;
}
.qb-group input::placeholder { color: var(--text-muted); font-weight: 500; }
.qb-group select { appearance: none; -webkit-appearance: none; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%231b3a5c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') no-repeat right center; background-size: 16px; padding-right: 24px; }
.qb-group select option { background: var(--bg-white); color: var(--text-primary); }
.qb-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.qb-btn {
  height: 64px;
  padding: 0 36px;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .quote-bar-form {
    flex-direction: column;
    gap: 16px;
  }
  .qb-divider { display: none; }
  .qb-group {
    width: 100%;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }
  .qb-btn { width: 100%; margin-top: 8px; }
  .header-main .container { border-radius: 20px; padding: 12px 16px; }
}

/* ============================================
   SERVICES STRIP (Horizontal Scroll Ribbon)
   ============================================ */
.services-ribbon {
  background: var(--bg-darker);
  border-bottom: none;
  padding: 24px 0;
  overflow: hidden;
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.2);
}
.ribbon-track {
  display: flex;
  gap: 60px;
  animation: scroll-ribbon 40s linear infinite;
  width: max-content;
}
.ribbon-track:hover { animation-play-state: paused; }
.ribbon-item {
  display: flex; align-items: center; gap: 16px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  transition: opacity var(--transition);
  text-decoration: none;
}
.ribbon-item:hover { opacity: 0.8; color: var(--text-white); }
.ribbon-item .ri-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent);
}
@keyframes scroll-ribbon {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { background: var(--bg-white); }
.services-carousel-wrapper {
  position: relative;
  width: 100%;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}
.slider-btn svg { width: 24px; height: 24px; }
.slider-btn.prev { left: -24px; }
.slider-btn.next { right: -24px; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); /* Softer, larger corners */
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  flex: 1 1 320px;
  max-width: 400px;
  height: 100%;
}
.service-card:hover {
  border-color: var(--primary-muted);
  box-shadow: 0 20px 40px rgba(0, 79, 99,0.12); /* Softer colored shadow */
  transform: translateY(-8px); /* Smooth lift instead of 3d tilt */
}
.service-card-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--primary-muted) 0%, transparent 80%);
  padding: 20px;
}
.service-card-img img {
  width: auto; 
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}
.service-card:hover .service-card-img img { 
  transform: scale(1.15) translateY(-8px); 
  filter: drop-shadow(0 20px 25px rgba(0, 79, 99, 0.15));
}
.service-card-content { 
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--primary); }
.service-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .card-link svg { transform: translateX(3px); }

.services-footer { text-align: center; margin-top: 40px; }

/* ============================================
   SUB-SERVICES GRID + CARDS (base / desktop)
   ============================================ */
.sub-services-section { padding: 100px 0; }
.bg-light { background: var(--bg-light); }
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
  align-items: stretch;
}
.sub-services-grid > .service-card { max-width: none; }

/* ============================================
   WOW SERVICE CARDS — vibrant gradients + FX
   ============================================ */
.service-card {
  position: relative;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

/* Per-card accent palette (cycles every 6 cards) */
.service-card:nth-child(6n+1) { --gca:#0098C7; --gc1:#004F63; --gc2:#00B4D8; }
.service-card:nth-child(6n+2) { --gca:#2E86C1; --gc1:#0A2A43; --gc2:#3D9BE0; }
.service-card:nth-child(6n+3) { --gca:#11B5A4; --gc1:#00708A; --gc2:#1FD0BC; }
.service-card:nth-child(6n+4) { --gca:#5B8DEF; --gc1:#1B2F5B; --gc2:#6E9BF5; }
.service-card:nth-child(6n+5) { --gca:#2BA8DA; --gc1:#045D75; --gc2:#46C2EA; }
.service-card:nth-child(6n+6) { --gca:#37C9B8; --gc1:#0B5563; --gc2:#43D8C6; }

/* Uniform, ultra-premium white card body */
.service-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0,0,0,0.02);
}

/* Bigger, vibrant gradient image area with premium grid lines & aurora blooms */
.service-card-img {
  height: 250px;
  padding: 14px;
  overflow: hidden;
  background: 
    radial-gradient(at 0% 0%, rgba(0, 169, 224, 0.12) 0px, transparent 60%),
    radial-gradient(at 100% 0%, rgba(255, 255, 255, 0.9) 0px, transparent 60%),
    radial-gradient(at 100% 100%, rgba(31, 208, 188, 0.1) 0px, transparent 60%),
    radial-gradient(at 0% 100%, rgba(0, 79, 99, 0.06) 0px, transparent 60%),
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    #f4f7fb;
  background-size: 150% 150%, 150% 150%, 150% 150%, 150% 150%, 30px 30px, 30px 30px, 100%;
  background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, center center, center center, 0% 0%;
  transition: all 0.8s var(--ease-out);
}
.service-card:hover .service-card-img { 
  background-position: 100% 100%, -50% 100%, 0% 0%, 100% 0%, center center, center center, 0% 0%;
  box-shadow: inset 0 -15px 30px -15px rgba(0, 169, 224, 0.15);
}

/* Glossy highlight blob at top of image */
.service-card-img::before {
  content: '';
  position: absolute;
  top: -45%;
  left: 50%;
  width: 85%;
  height: 85%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.38), rgba(255,255,255,0) 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* Diagonal shine sweep on hover */
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.55) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease-out);
}
.service-card:hover .service-card-img::after { transform: translateX(130%); }

/* Make the product image bigger + punchier */
.service-card-img img {
  position: relative;
  z-index: 2;
  height: 108%;
  max-width: 92%;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.28));
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
  filter: drop-shadow(0 26px 36px rgba(0,0,0,0.36));
}

/* Coloured glow + lift on hover */
.service-card:hover {
  border-color: var(--gca, var(--primary));
  box-shadow:
    0 28px 55px -14px color-mix(in srgb, var(--gca, #00B4D8) 60%, transparent),
    0 10px 22px rgba(0,0,0,0.08);
}
.service-card:not(.js-tilt):hover { transform: none; }

/* Heading colour matches the card accent on hover */
.service-card:hover .service-card-content h3 { color: var(--gca, var(--primary)); }

@media (prefers-reduced-motion: reduce) {
  .service-card, .service-card-img, .service-card-img img, .service-card-img::after { transition: none !important; }
  .service-card:not(.js-tilt):hover { transform: none; }
  .service-card:hover .service-card-img::after { transform: translateX(-130%); }
  .service-card:hover .service-card-img img { transform: none; }
}

/* Full-width button (used inside cards) */
.btn-full { width: 100%; justify-content: center; }

/* Card bullet list with arrow icons */
.src-bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.src-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.src-bullets li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ============================================
   HOW IT WORKS / PROCESS (base / desktop)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary-muted-hover), var(--border));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 79, 99, 0.18);
}
.step-card h4, .step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   GENERAL FREIGHT OVERVIEW (intro section)
   ============================================ */
.gf-overview { padding: 100px 0; background: var(--bg-white); }
.gf-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gf-overview-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.gf-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gf-stat {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.gf-stat .gf-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.gf-stat .gf-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
@media (max-width: 991px) {
  .gf-overview-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   VALUE PROPS (Why Choose Us) - STICKY SCROLL
   ============================================ */
.value-props { background: var(--bg-light); overflow: visible; padding: 120px 0; }
.vp-sticky-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.vp-sticky-left {
  flex: 0 0 45%;
  position: sticky;
  top: 120px;
}
.vp-sticky-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.1;
}
.vp-sticky-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.vp-sticky-image {
  margin-top: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vp-sticky-image img { width: 100%; height: auto; display: block; }
.mt-8 { margin-top: 32px; }
.vp-sticky-content .btn { width: 100%; justify-content: center; }

.vp-scrollable-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vp-scroll-item {
  display: flex;
  gap: 24px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.vp-scroll-item:hover {
  transform: translateX(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.vp-scroll-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  padding-top: 4px;
}
.vp-scroll-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.vp-scroll-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   COVERAGE SHOWCASE (Replaced About Section)
   ============================================ */
.coverage-showcase { background: var(--bg-white); padding: 100px 0; }
.coverage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cs-content .overline {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.cs-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.cs-title em { font-style: normal; color: var(--text-primary); }
.cs-content .tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.cs-content .body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.coverage-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.cov-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.cf-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cf-icon svg { width: 24px; height: 24px; }
.cf-text h4, .cf-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cf-text p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }

/* Image Side with Overlap */
.coverage-visual {
  position: relative;
  padding: 40px 0;
}
.cov-shape {
  position: absolute;
  top: 0; right: 20px; bottom: 0; left: 15%;
  background: var(--primary-muted);
  border-radius: var(--radius-xl);
  z-index: 1;
}
.cov-image-box {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateX(-30px);
}
.cov-image-box img { width: 100%; height: auto; display: block; }
.cov-floating-badge {
  position: absolute;
  bottom: 24px; right: -10px;
  background: var(--bg-white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}
.cfb-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cfb-icon svg { width: 20px; height: 20px; }
.cfb-text strong { display: block; font-size: 1.1rem; color: var(--text-primary); }
.cfb-text span { font-size: 0.85rem; color: var(--text-secondary); }

.about-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   QUOTE CTA BANNER
   ============================================ */
.quote-cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.quote-bg-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.quote-bg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 21, 32,0.85) 0%, rgba(0, 79, 99,0.7) 100%);
}
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.glass-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.glass-content .overline {
  display: inline-block;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.glass-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.glass-content h2 em { font-style: normal; color: var(--accent); }
.glass-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 90%;
}
.glass-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.glass-check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.glass-check:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.gc-icon {
  width: 40px; height: 40px;
  background: rgba(0, 180, 216,0.2);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gc-icon svg { width: 20px; height: 20px; }
.gc-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.gc-text span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   BLOG
   ============================================ */
.blog { background: var(--bg-light); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.blog-card-img {
  height: 200px; overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body { padding: 24px; }
.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.blog-date svg { width: 14px; height: 14px; }
.blog-card-body h3 {
  font-size: 1.02rem; font-weight: 700;
  margin-bottom: 10px; line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover h3 { color: var(--primary); }
.blog-card-body h3 a { color: inherit; }
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.85rem;
  color: var(--primary);
}
.read-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.blog-card:hover .read-more svg { transform: translateX(3px); }

/* ============================================
   COVERAGE MAP
   ============================================ */
.coverage {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coverage-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.coverage-content h2 em { font-style: normal; color: var(--accent); }
.coverage-content > p {
  font-size: 1.02rem;
  color: var(--text-white-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.cov-stat {
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  text-align: center;
}
.cov-stat .cs-val {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.cov-stat .cs-label { font-size: 0.78rem; color: var(--text-white-muted); }

.coverage-contacts { display: flex; flex-direction: column; gap: 14px; }
.cov-contact {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
}
.cov-contact a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.cov-contact a:hover { color: var(--accent); }
.cov-contact .cc-icon {
  width: 36px; height: 36px;
  background: rgba(0, 180, 216,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.cov-contact .cc-icon svg { width: 16px; height: 16px; }

/* Australia Map SVG */
.coverage-map { display: flex; align-items: center; justify-content: center; }
.australia-map { width: 100%; max-width: 460px; opacity: 0.95; }
.map-city {
  animation: pulse-city 2.5s ease-in-out infinite;
}
.map-city:nth-child(2) { animation-delay: 0.4s; }
.map-city:nth-child(3) { animation-delay: 0.8s; }
.map-city:nth-child(4) { animation-delay: 1.2s; }
.map-city:nth-child(5) { animation-delay: 1.6s; }
@keyframes pulse-city {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ============================================
   PRE-FOOTER CTA
   ============================================ */
.pre-footer-cta {
  background: transparent;
  color: var(--text-white);
  position: relative;
  z-index: 10;
  padding: 40px 0 0 0;
  margin-bottom: -80px; /* Overlaps the footer */
}
.pre-footer-cta > .container {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pre-footer-cta > .container::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-centered h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.cta-centered h2 em { font-style: normal; color: var(--accent); }
.cta-centered p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-light);
  color: var(--text-secondary);
  position: relative;
  /* subtle radial glow top right and bottom left */
  background-image: radial-gradient(circle at top right, rgba(0, 180, 216,0.03) 0%, transparent 40%),
                    radial-gradient(circle at bottom left, rgba(0, 79, 99,0.02) 0%, transparent 40%);
}
.footer-main { padding: 160px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .footer-logo { margin-bottom: 24px; }
.footer-brand .footer-logo img { height: 64px; width: auto; max-width: 100%; object-fit: contain; } 
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}
.footer-social::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.footer-social:hover { 
  color: var(--text-white); 
  transform: translateY(-5px) scale(1.08); 
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.25);
}
.footer-social:hover::before {
  opacity: 1;
}
.footer-social svg { width: 18px; height: 18px; transition: transform 0.4s ease; }
.footer-social:hover svg { transform: rotate(8deg) scale(1.1); }

.footer-col h4, .footer-col h3 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--accent); transform: translateX(4px); }

.footer-contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item a { color: var(--text-primary); font-weight: 600; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.fci-icon {
  width: 36px; height: 36px;
  background: rgba(0, 180, 216,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.fci-icon svg { width: 16px; height: 16px; }

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: var(--bg-white);
}
.footer-bar .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bar p { font-size: 0.9rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px; /* More top padding for nav */
  background: var(--secondary);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center; /* Center content vertically */
  width: 100%;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7, 21, 32,0.92) 0%, rgba(0, 79, 99,0.7) 100%);
}
.page-hero .container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.page-hero .breadcrumb, .pillar-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.page-hero .breadcrumb a, .pillar-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover, .pillar-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb svg, .pillar-hero .breadcrumb svg {
  width: 12px; height: 12px;
  color: rgba(255,255,255,0.35);
}
.page-hero .breadcrumb span, .pillar-hero .breadcrumb span {
  color: var(--accent);
  font-weight: 500;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.page-hero-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ============================================
   ABOUT INTRO
   ============================================ */
.about-intro { background: var(--bg-white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-content .overline {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.about-intro-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.about-intro-content h2 em { font-style: normal; color: var(--primary); }
.about-intro-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-intro-image img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.floating-badge {
  position: absolute;
  bottom: -20px; left: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.floating-badge .fb-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
}
.floating-badge .fb-icon svg { width: 20px; height: 20px; }
.floating-badge strong { font-family: var(--font-heading); font-size: 0.95rem; display: block; }
.floating-badge small { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   MISSION
   ============================================ */
.mission { background: var(--bg-light); }
.mission-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}
.mission-icon {
  width: 56px; height: 56px;
  background: var(--primary-muted);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.mission-icon svg { width: 28px; height: 28px; }
.mission-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.mission-content h2 em { font-style: normal; color: var(--primary); }
.mission-content p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   TRAITS
   ============================================ */
.traits { background: var(--bg-white); }
.traits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trait-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.trait-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px) scale(1.02);
}
.trait-icon {
  width: 52px; height: 52px;
  background: var(--primary-muted);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.trait-card:hover .trait-icon {
  background: var(--primary);
  color: var(--text-white);
}
.trait-icon svg { width: 24px; height: 24px; }
.trait-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.trait-card:hover h3 { color: var(--primary); }
.trait-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   ABOUT SERVICES
   ============================================ */
.about-services { background: var(--bg-light); }
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.as-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}
.as-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px) scale(1.02);
}

.as-icon {
  width: 44px; height: 44px;
  background: var(--primary-muted);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.as-card:hover .as-icon {
  background: var(--primary);
  color: var(--text-white);
}
.as-icon svg { width: 22px; height: 22px; }
.as-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.as-card:hover h3 { color: var(--primary); }
.as-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   CLIENTS
   ============================================ */
.clients { background: var(--bg-white); }
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.clients-content .overline {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.clients-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.clients-content h2 em { font-style: normal; color: var(--primary); }
.clients-content > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.clients-list { display: flex; flex-direction: column; gap: 16px; }
.client-item {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.client-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.client-item .ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-muted);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.client-item:hover .ci-icon {
  background: var(--primary);
  color: var(--text-white);
}
.ci-icon svg { width: 20px; height: 20px; }
.client-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.client-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

.clients-industries {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.clients-industries h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 20px;
}
.industry-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.industry-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition);
}
.industry-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.industry-tag svg { width: 16px; height: 16px; color: var(--primary); }

/* ============================================
   WHY ABOUT
   ============================================ */
.why-about { background: var(--bg-light); }
.why-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-about-image img { width: 100%; height: auto; }
.why-about-content .overline {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.why-about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.why-about-content h2 em { font-style: normal; color: var(--primary); }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; perspective: 1000px; }
.why-card-premium {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(0, 169, 224, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.why-card-premium:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 169, 224, 0.08);
  border-color: rgba(0, 169, 224, 0.3);
  background: #ffffff;
}
.why-icon-box {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(0,169,224,0.05), rgba(0,169,224,0.01));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(0,169,224,0.1);
  transition: all 0.4s var(--ease-out);
}
.why-card-premium:hover .why-icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0,169,224,0.3);
}
.why-card-text h3 {
  color: var(--primary); font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 6px;
  transition: color 0.4s;
}
.why-card-text p {
  color: var(--text-secondary); margin: 0; transition: color 0.4s; line-height: 1.6; font-size: 0.95rem;
}

/* ============================================
   VISION
   ============================================ */
.vision { background: var(--bg-white); }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vision-content .overline {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.vision-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.vision-content h2 em { font-style: normal; color: var(--primary); }
.vision-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.vision-content .btn { margin-top: 12px; }
.vision-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vision-image img { width: 100%; height: auto; }

/* ============================================
   CENTERED CTA (About Page)
   ============================================ */
.cta-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-centered h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-centered h2 em { font-style: normal; color: var(--accent); }
.cta-centered p {
  font-size: 1.05rem;
  color: var(--text-white-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 50;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--primary-hover); transform: translateY(-2px); }
.back-top svg { width: 18px; height: 18px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav, .header-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; } /* keep flex column so the body scrolls when submenu is open */
  .mobile-overlay { display: block; }
  .dropdown { display: none; }

  .hero .container { grid-template-columns: 1fr; padding-top: 20px; padding-bottom: 0px; }
  .hero-visual { display: none; }

  /* Hero split stacks to one column; truck must not overflow */
  .hero-container-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { max-width: 100%; }
  .hero-3d-visual { justify-content: center; height: auto; order: 2; }
  .truck-wrapper { width: 100%; max-width: 520px; margin: 0 auto; }
  .truck-img { max-height: 420px; margin: 0 auto; }

  .services-grid { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 24px;
    margin: 0; 
  }
  .footer-main { padding: 60px 0 30px; }
  .services-grid .service-card {
    max-width: none;
  }
  .services-carousel-wrapper .services-grid {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 10px);
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .services-carousel-wrapper .services-grid::-webkit-scrollbar { display: none; }
  .slider-btn { display: flex; }
  .slider-btn.prev { left: -16px; }
  .slider-btn.next { right: -16px; }
  .vp-sticky-wrapper { flex-direction: column; gap: 48px; }
  .vp-sticky-left, .vp-scrollable-right { flex: none; width: 100%; }
  .vp-sticky-left { position: relative; top: 0; }
  .vp-scrollable-right { gap: 24px; }
  .coverage-wrapper { grid-template-columns: 1fr; gap: 64px; }
  .cov-image-box { transform: translateX(0); }
  .cov-shape { display: none; }
  .glass-grid { grid-template-columns: 1fr; gap: 48px; }
  .glass-card { padding: 48px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .coverage-map { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* About page */
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-image { max-width: 540px; }
  .traits-grid { grid-template-columns: repeat(3, 1fr); }
  .about-services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-about-image { max-width: 540px; }
  .vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-image { max-width: 540px; }
  
  /* Blog Carousel */
  .blog-carousel-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    max-width: none;
  }
  .blog-carousel-wrapper .blog-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 12px);
    gap: 24px;
    padding-bottom: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .blog-carousel-wrapper .blog-grid::-webkit-scrollbar { display: none; }
  .blog-carousel-wrapper .blog-card {
    scroll-snap-align: start;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .mission-card { flex-direction: column; padding: 28px; gap: 20px; text-align: center; }
  .mission-icon { margin: 0 auto; }
  .clients-content, .why-about-content, .vision-content { text-align: center; }
  .clients-list { align-items: stretch; text-align: left; }
  .why-list { align-items: center; text-align: left; }
  .vision-content .btn { margin: 12px auto 0; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  /* Stat strip: allow wrapping, hide vertical dividers when stacked */
  .hero-metrics { flex-wrap: wrap; gap: 20px 16px; }
  .hero-content .hero-metric { flex: 1 1 30%; padding: 0; min-width: 90px; }
  .hero-content .hero-metric + .hero-metric { padding-left: 0; }
  .hero-content .hero-metric:not(:last-child)::after { display: none; }

  .services-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .services-carousel-wrapper .services-grid { grid-template-columns: none; grid-auto-columns: calc(50% - 6px); }
  .service-card-img { height: 140px; }
  .service-card-content { padding: 16px; }
  .service-card-content h3 { font-size: 0.95rem; }
  .service-card-content p { font-size: 0.8rem; line-height: 1.4; margin-bottom: 8px; }

  .vp-scroll-item { flex-direction: column; gap: 16px; padding: 24px; }
  .blog-carousel-wrapper .blog-grid { grid-template-columns: none; grid-auto-columns: calc(85% - 12px); }
  .coverage-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar .container { flex-direction: column; text-align: center; }

  .about-buttons { flex-direction: column; }
  .about-buttons .btn { width: 100%; justify-content: center; }
  .cov-floating-badge { position: relative; right: auto; bottom: auto; margin-top: -20px; z-index: 5; flex-direction: column; text-align: center; }
  .cov-feat { flex-direction: column; align-items: center; text-align: center; }

  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  
  .glass-card { padding: 32px 24px; border-radius: var(--radius-lg); }
  .glass-content h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }

  /* About page */
  .page-hero { padding: 100px 0 40px; min-height: 240px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .traits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-services-grid { grid-template-columns: 1fr; }
  .mission-card { flex-direction: column; padding: 28px; gap: 20px; }
  .floating-badge { position: relative; bottom: auto; left: auto; margin-top: 16px; display: inline-flex; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  /* Inherits the 2-row 4-card grid from 768px */
  .hero-metrics .hero-metric { padding: 0; }
  .hero-metric .metric-value { font-size: 1.5rem; }
  .hero-kicker { letter-spacing: 1.4px; font-size: 0.72rem; }
  .truck-img { max-height: 320px; }
  .coverage-stats { grid-template-columns: 1fr; }

  /* About page */
  .traits-grid { grid-template-columns: 1fr; }
  .industry-tags { gap: 8px; }
  .industry-tag { padding: 8px 14px; font-size: 0.82rem; }
}

/* ============================================
   3D EFFECTS & ENHANCED HERO STYLES
   ============================================ */

/* 3D Glassmorphism Hero Elements */
.hero-card, .glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
  transform-style: preserve-3d;
}

/* Base Image 3D Depth */
.js-tilt img, .js-tilt, .service-card.js-tilt {
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

/* Dynamic Animated Gradient Background for Hero Sections */
.hero-bg::after, .page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(-45deg, rgba(7, 21, 32,0.9), rgba(0, 79, 99,0.8), rgba(0, 180, 216,0.6), rgba(27,58,92,0.9));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Animation for Hero Content */
.float-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.js-tilt > * {
  transform: translateZ(40px);
}
@keyframes radar-spin { 
  0% { transform: rotate(0deg); } 
  100% { transform: rotate(360deg); } 
}
@keyframes radar-ripple {
  0% { transform: scale(0.1); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin-slow-rev {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
/* Full width CTAs */
@media (max-width: 768px) {
  .hero-buttons .btn,
  .about-buttons .btn,
  .cta-buttons .btn,
  .vision-content .btn,
  .vp-sticky-content .btn {
    width: 100%;
    justify-content: center;
  }
}

.text-center { text-align: center !important; }

/* Contact Intro Text Enhancement */
.contact-intro-header {
  margin-bottom: 40px;
}
.overline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-muted);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.overline-badge svg {
  width: 16px;
  height: 16px;
}
.contact-intro-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.contact-intro-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 4px;
}
.contact-intro-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 90%;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* Contact Methods UI Update */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.contact-method-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}
.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0, 79, 99, 0.1);
}
.contact-method-card:hover::before {
  opacity: 1;
}
.contact-method-card .cmc-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-muted);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.contact-method-card:hover .cmc-icon {
  background: var(--primary);
  color: var(--text-white);
  transform: scale(1.05);
}
.contact-method-card .cmc-icon svg {
  width: 24px;
  height: 24px;
}
.contact-method-card .cmc-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-method-card .cmc-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.contact-method-card .cmc-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  margin-top: auto;
}
.contact-method-card .cmc-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.contact-method-card:hover .cmc-link svg {
  transform: translateX(4px);
  color: var(--accent);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-card img {
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease-out);
}
.about-image-card:hover img {
  transform: scale(1.05);
}
.about-image-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Premium Intro Typography & Structure */
.premium-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
}
.premium-intro .about-intro-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.intro-content-block {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
  margin: 0;
}
.premium-intro .about-intro-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.btn-premium {
  background: var(--secondary);
  color: var(--text-white);
  padding: 14px 28px 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(10, 25, 41, 0.15);
}
.btn-premium:hover {
  background: var(--bg-white);
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 25, 41, 0.2);
}
.btn-arrow-wrapper {
  background: var(--primary);
  color: var(--text-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-premium:hover .btn-arrow-wrapper {
  background: var(--accent);
  color: var(--secondary);
  transform: translateX(4px);
}
.btn-arrow-wrapper svg {
  width: 16px;
  height: 16px;
}
.our-mission-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}
.mission-wrapper-bright {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.our-mission-section::before {
  content: '""';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 500px;
  font-family: var(--font-heading), serif;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}
.overline-badge.light {
  background: rgba(255,255,255,0.2);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.mission-statement-bright {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 32px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.mission-subtext-bright {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

@media (max-width: 992px) {
  .about-intro-wrapper, .mission-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-visual {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Bento Grid for Traits */
.traits-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.bento-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 137, 123, 0.04);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  transition: all var(--transition);
  z-index: 0;
}
.bento-card:hover .bento-number {
  color: rgba(0, 137, 123, 0.12);
  transform: scale(1.1);
}
.bento-card h3, .bento-card p {
  position: relative;
  z-index: 2;
}
.bento-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.bento-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .traits-bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .traits-bento-grid { grid-template-columns: 1fr; }
}

/* Services Bento Grid */
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-bento-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  border-left: 4px solid var(--bg-white);
}
.service-bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  border-left-color: var(--primary);
}
.sbi-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.sbi-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Serve Grid Layout */
.serve-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.serve-bento-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.serve-bento-card.highlight {
  background: var(--primary);
  color: var(--text-white);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.serve-card-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.serve-card-title.text-white { color: var(--text-white); }
.premium-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.premium-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.list-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Optional fade mask */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}
.marquee-track.reverse {
  animation-direction: reverse;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 6px)); }
}
.ind-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .serve-bento-grid { grid-template-columns: 1fr; }
}

/* Why Choose Premium Layout */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.image-stack { position: relative; }
.image-stack .img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  cursor: default;
  position: relative;
}
.feature-row::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
  opacity: 0;
}
.feature-row:hover::before {
  transform: scaleY(1);
  opacity: 1;
}
.feature-row:last-child {
  border-bottom: none;
}
.feature-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--font-mono), monospace;
  transition: color 0.4s ease;
  margin-top: 2px;
}
.feature-row:hover .feature-number {
  color: var(--primary);
}
.feature-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 20px;
}
.feature-text {
  flex: 1;
}
.feature-text h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color 0.4s ease;
}
.feature-row:hover .feature-text h4 {
  color: var(--primary);
}
.feature-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1.05rem;
}
.feature-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.feature-arrow svg {
  width: 20px;
  height: 20px;
}
.feature-row:hover .feature-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--primary);
  color: var(--text-white);
}
@media (max-width: 992px) {
  .why-choose-layout { grid-template-columns: 1fr; gap: 80px; }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
  padding: 80px 0 120px;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}
.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.contact-details p {
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-details a {
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-details a:hover {
  color: var(--accent);
}

.premium-form-wrapper {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}
.premium-form-wrapper h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.premium-form-group {
  margin-bottom: 24px;
}
.premium-form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.premium-form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.2s;
}
.premium-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
  background: #fff;
}
textarea.premium-form-input {
  min-height: 150px;
  resize: vertical;
}
.premium-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.premium-form-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 201, 167, 0.3);
}
.premium-form-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .premium-form-wrapper {
    padding: 32px 24px;
  }
}

@media (max-width: 991px) {
  .services-carousel-container {
    padding: 0 40px; /* Space for buttons */
    width: 100%;
    overflow: hidden; /* Stop buttons from overflowing screen */
  }
  .services-prev-btn, .services-next-btn {
    display: flex;
  }
  .sub-services-grid {
    display: flex !important;
    gap: 30px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 20px;
    width: 100%;
  }
  .sub-services-grid::-webkit-scrollbar {
    display: none;
  }
  .sub-services-grid > .service-card {
    min-width: calc(50% - 15px) !important;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}

@media (max-width: 768px) {
  .services-carousel-container {
    padding: 0; /* Hide buttons and just use native swipe */
  }
  .services-prev-btn, .services-next-btn {
    display: none;
  }
  .sub-services-grid > .service-card {
    min-width: calc(100% - 20px) !important; /* Slightly less than 100% so the next card peeks out */
    margin: 0 10px;
  }
}


@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}



/* ============================================
   INDUSTRIES PAGE - PREMIUM UI REDESIGN
   ============================================ */

/* Spacious Sections */
.premium-section {
  padding: 120px 0;
}
.premium-section-alt {
  padding: 120px 0;
  background: var(--bg-light);
}

/* Core Industry Blocks */
.premium-industry-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.premium-industry-block:last-child {
  margin-bottom: 0;
}
.premium-industry-block:nth-child(even) .industry-content {
  order: -1;
}



.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--primary);
}
.carousel-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}
.carousel-btn svg { width: 24px; height: 24px; }
.prev-btn { left: -15px; }
.next-btn { right: -15px; }

@media (max-width: 768px) {
  .industries-carousel .industry-card {
    flex: 0 0 calc((100% - 90px) / 4);
    scroll-snap-align: start;
  }
  .carousel-btn { display: none; }
  .carousel-container { padding: 0 !important; }
}

@media (max-width: 1200px) {
  .industries-carousel .industry-card {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}


.faq-item.active .faq-answer { max-height: 500px; }

/* Services Grid Carousel for Tablet/Mobile */
.services-carousel-container {
  padding: 0;
}

@media (max-width: 991px) {
  .sub-services-grid {
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 30px;
  }
  .sub-services-grid::-webkit-scrollbar {
    display: none;
  }
  .sub-services-grid > .service-card {
    min-width: 80% !important;
    max-width: 80% !important;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .services-prev-btn, .services-next-btn {
    display: flex;
  }
}
@media (max-width: 576px) {
  .sub-services-grid > .service-card {
    min-width: 88% !important;
    max-width: 88% !important;
  }
}

@media (max-width: 991px) {
  .sub-services-grid { grid-template-columns: repeat(2, 1fr); }
  .dark-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-grid::before { display: none; }
  .step-number { width: 60px; height: 60px; font-size: 1.4rem; margin-bottom: 18px; }
}
@media (max-width: 768px) {
  .pillar-intro-grid { grid-template-columns: 1fr; }
  .sub-services-grid { grid-template-columns: 1fr; }
  .dark-benefits-grid { grid-template-columns: 1fr; }
}

/* WCOS Section */
.wcos-section { padding: 100px 0; background: var(--bg-white); }
.wcos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.wcos-content { display: flex; flex-direction: column; gap: 40px; }
.wcos-item { display: flex; gap: 24px; align-items: flex-start; }
.wcos-icon { width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; margin-top: 4px; }
.wcos-icon svg { width: 100%; height: 100%; }
.wcos-text h4 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; font-family: var(--font-heading); }
.wcos-text p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.wcos-image img { width: 100%; height: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); object-fit: cover; }
@media (max-width: 991px) { .wcos-grid { grid-template-columns: 1fr; gap: 50px; } }

/* =========================================
   CRO SECTIONS: INDUSTRIES, TRUST, FAQ
   ========================================= */

/* Industries Grid */
.industries-section { padding: 100px 0; background: var(--bg-light); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.industry-card {
  background: var(--bg-white); border-radius: 20px; padding: 40px 30px;
  text-align: center; border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: all 0.3s ease;
}
.industry-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.3); }
.industry-icon {
  width: 70px; height: 70px; margin: 0 auto 24px auto; background: rgba(0,180,216,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.industry-icon svg { width: 32px; height: 32px; }
.industry-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 15px; }
.industry-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Trust Grid (Why Choose Us) - Dark Glassmorphism */
.trust-section { padding: 100px 0; background: linear-gradient(135deg, var(--secondary) 0%, #02031a 100%); color: white; position: relative; overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; position: relative; z-index: 2; }
.trust-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.3s ease;
}
.trust-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: rgba(0,180,216,0.3); }
.trust-icon { color: var(--accent); margin-bottom: 24px; }
.trust-icon svg { width: 40px; height: 40px; }
.trust-card h4 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 15px; }
.trust-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

/* FAQ Accordion */
.faq-section { padding: 100px 0; background: var(--bg-white); }
.faq-container { max-width: 800px; margin: 60px auto 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.05); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 20px; transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--primary); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.3s ease;
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer-inner { padding: 0 0 24px 0; font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 991px) {
  .industries-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .industries-grid, .trust-grid { grid-template-columns: 1fr; }
}


.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ==========================================================================
   GLOBAL INDUSTRY CAROUSEL
   ========================================================================== */
.industries-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.industries-carousel-wrapper::before,
.industries-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.industries-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white, #fff) 0%, rgba(255,255,255,0) 100%);
}
.industries-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white, #fff) 0%, rgba(255,255,255,0) 100%);
}
.industries-carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollIndustries 40s linear infinite;
}
.industries-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scrollIndustries {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 20px)); }
}
.industry-carousel-item {
  width: 260px;
  flex-shrink: 0;
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 169, 224, 0.08);
  border-color: rgba(0, 169, 224, 0.15);
}
.industry-icon-box {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: rgba(0, 169, 224, 0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.industry-icon-box svg { width: 32px; height: 32px; }


/* ==========================================================================
   FLEXIBLE CARD ALIGNMENT FIX
   Ensure buttons always sit at the bottom of the card, regardless of content height
   ========================================================================== */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-content .btn,
.service-card-content .card-link {
  margin-top: auto !important;
}


/* ==========================================================================
   MINIMUM SPACING FOR CARD BUTTONS
   Guarantees at least 24px gap between the card text and the CTA button,
   forcing the tallest card in the row to grow and maintain breathing room.
   ========================================================================== */
.service-card-content > *:nth-last-child(2) {
  margin-bottom: 24px !important;
}

/* ===== WCOS BENTO GRID ===== */
.wcos-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.wcos-bento-card { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.wcos-bento-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,169,224,0.1); border-color: rgba(0,169,224,0.3); }
.wcos-bento-icon { width: 60px; height: 60px; background: rgba(0,169,224,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: background 0.3s ease, color 0.3s ease; }
.wcos-bento-card:hover .wcos-bento-icon { background: var(--primary); color: #fff; }


/* ==========================================================================
   QUOTE POPUP MODAL
   ========================================================================== */
.oz-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 12, 18, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.oz-modal-overlay.is-open { opacity: 1; visibility: visible; }
.oz-modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: none;
  border-radius: 24px;
  padding: 30px 32px 26px;
  color: #fff;
  background: linear-gradient(160deg, #16bfe8 0%, #00a0cf 42%, #00638c 100%);
  box-shadow: 0 26px 60px rgba(0, 70, 100, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
@media (max-height: 740px) {
  .oz-modal { max-height: 94vh; overflow-y: auto; }
}
.oz-modal-overlay.is-open .oz-modal { transform: translateY(0) scale(1); opacity: 1; }
.oz-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.oz-modal-close:hover { background: rgba(255, 255, 255, 0.28); }
.oz-modal-close svg { width: 18px; height: 18px; }
.oz-modal-logo {
  width: 138px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: center;
}
.oz-modal-logo img { width: 100%; height: auto; display: block; }
.oz-modal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  margin: 0 0 8px;
  color: #fff;
}
.oz-modal-sub {
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 18px;
  max-width: 400px;
}
.oz-form { display: flex; flex-direction: column; gap: 11px; }
.oz-field { position: relative; }
.oz-input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.oz-input::placeholder { color: rgba(255, 255, 255, 0.78); }
.oz-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.14);
}
.oz-input.oz-error { border-color: #ff8a8a; background: rgba(255, 120, 120, 0.12); }
.oz-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 2px;
}
.oz-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.oz-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0;
}
.oz-consent label {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.oz-consent a { color: #d6f7ff; font-weight: 600; text-decoration: underline; }
.oz-submit {
  margin-top: 6px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: #013a4d;
  background: linear-gradient(90deg, #00d2f5 0%, #8af2ff 100%);
  box-shadow: 0 14px 30px rgba(0, 210, 245, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.oz-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0, 210, 245, 0.6); }
.oz-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.oz-form-msg { font-size: 0.85rem; text-align: center; min-height: 18px; margin-top: 4px; }
.oz-form-msg.err { color: #ffb3b3; }
.oz-success { text-align: center; padding: 16px 0 8px; }
.oz-success-icon {
  width: 70px; height: 70px; margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.oz-success-icon svg { width: 34px; height: 34px; color: #6fe3ff; }
.oz-success h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin: 0 0 10px; }
.oz-success p { color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; line-height: 1.55; margin: 0; }
@media (max-width: 520px) {
  .oz-modal-overlay { padding: 12px; }
  .oz-modal { padding: 26px 20px 22px; border-radius: 20px; }
  .oz-modal-close { top: 12px; right: 12px; }
  .oz-modal h2 { font-size: 1.4rem; }
  .oz-modal-sub { font-size: 0.88rem; margin-bottom: 16px; }
  .oz-trust { gap: 8px 14px; }
  .oz-trust span { font-size: 0.74rem; }
}

/* ----- Quote popup: enhanced UI/UX ----- */
.oz-modal { max-width: 540px; }
.oz-modal-body { position: relative; z-index: 1; }
.oz-modal-glow {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 240px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(150, 240, 255, 0.85), rgba(0, 200, 240, 0) 70%);
  filter: blur(22px);
}
.oz-eyebrow {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
}
.oz-modal-logo { width: 132px; margin-bottom: 14px; }
.oz-field.oz-has-icon { position: relative; }
.oz-field.oz-has-icon .oz-ico {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
.oz-field.oz-has-icon .oz-input { padding-left: 46px; }
.oz-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.oz-arrow { width: 18px; height: 18px; transition: transform 0.2s ease; }
.oz-submit:hover .oz-arrow { transform: translateX(4px); }
.oz-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.oz-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.oz-trust svg { width: 15px; height: 15px; color: #ffffff; flex-shrink: 0; }


/* ==========================================================================
   BLOG POST: TWO-COLUMN LAYOUT WITH STICKY SIDEBAR (index + lead form)
   ========================================================================== */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
  align-items: start;
}
.blog-layout .article-wrap { max-width: none; margin: 0; }
.blog-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Sticky "on this page" index */
.blog-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 20px;
  box-shadow: var(--shadow-sm);
  max-height: 56vh;
  overflow-y: auto;
}
.blog-toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.blog-toc-title svg { width: 16px; height: 16px; color: var(--accent); }
.blog-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.blog-toc li a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-toc li a:hover { background: var(--bg-light); color: var(--primary); }
.blog-toc li a.active {
  background: var(--primary-muted);
  color: var(--primary);
  font-weight: 600;
  border-left-color: var(--accent);
}
.blog-toc li.toc-h3 a { padding-left: 24px; font-size: 0.83rem; }

/* Sticky lead form */
.blog-leadform {
  background: linear-gradient(160deg, #16bfe8 0%, #00a0cf 42%, #00638c 100%);
  border-radius: 18px;
  padding: 24px 22px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 80, 110, 0.28);
}
.blog-leadform h3 { font-family: var(--font-heading); font-size: 1.22rem; color: #fff; margin: 0 0 4px; }
.blog-leadform .blf-sub { font-size: 0.85rem; color: rgba(255, 255, 255, 0.92); margin: 0 0 16px; line-height: 1.45; }
.blog-leadform .oz-form { gap: 10px; }
.blog-leadform .oz-input { padding: 12px 16px; font-size: 0.92rem; }
.blog-leadform .oz-submit { margin-top: 4px; padding: 13px 20px; font-size: 0.96rem; }
.blog-leadform .oz-consent label { font-size: 0.74rem; }
.blog-leadform .oz-success { padding: 8px 0; }
.blog-leadform .oz-success-icon { width: 54px; height: 54px; margin-bottom: 12px; }
.blog-leadform .oz-success-icon svg { width: 26px; height: 26px; }
.blog-leadform .oz-success h3 { font-size: 1.2rem; }
.blog-leadform .oz-success p { font-size: 0.9rem; }

@media (max-width: 992px) {
  .blog-layout { grid-template-columns: 1fr; gap: 0; }
  .blog-aside { position: static; top: auto; margin-top: 44px; max-width: 480px; }
  .blog-toc { display: none; }
}

/* Ensure the popup close button sits above the body layer and is clickable */
.oz-modal-close {
  z-index: 6;
  background: rgba(255, 255, 255, 0.22);
}
.oz-modal-close:hover { background: rgba(255, 255, 255, 0.4); }


/* ==========================================================================
   RELATED SERVICES (blog) - attractive cards
   (higher specificity so it overrides the per-page scoped styles)
   ========================================================================== */
.article-section .related-block { max-width: none; margin: 56px 0 0; }
.article-section .related-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 0 22px;
  padding-top: 32px;
  border-top: 1px solid #e8edf3;
}
.article-section .related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.article-section .related-list a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 124px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(16, 38, 73, 0.05);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.article-section .related-list a::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.article-section .related-list a:hover::before { transform: scaleX(1); }
.article-section .related-list a::after {
  content: '\2192';
  align-self: flex-start;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--primary-muted);
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.article-section .related-list a:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 79, 99, 0.14);
  border-color: var(--accent);
  background: #fff;
}
.article-section .related-list a:hover::after { transform: translateX(4px); background: var(--accent); color: #fff; }
/* The "Get a Quote" card stands out */
.article-section .related-list a[href*="contact-us"] {
  background: linear-gradient(150deg, #16bfe8 0%, #00a0cf 45%, #00638c 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 130, 175, 0.32);
}
.article-section .related-list a[href*="contact-us"]::after { background: rgba(255, 255, 255, 0.22); color: #fff; }
.article-section .related-list a[href*="contact-us"]:hover { box-shadow: 0 18px 40px rgba(0, 150, 200, 0.45); }


/* ==========================================================================
   STICKY WHATSAPP BUTTON (site-wide)
   ========================================================================== */
.oz-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #1ebe5b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oz-whatsapp svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.oz-whatsapp:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.62); }
.oz-whatsapp:active { transform: scale(0.97); }
.oz-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: 1;
  animation: ozWaPulse 2.4s infinite ease-out;
}
@keyframes ozWaPulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.oz-wa-label {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: #1a2b3d;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 9px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.oz-wa-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #1a2b3d;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.oz-whatsapp:hover .oz-wa-label { opacity: 1; transform: translateX(0); }
/* Lift the back-to-top button so it stacks above WhatsApp */
.back-top { bottom: 96px; }
@media (max-width: 768px) {
  .oz-whatsapp { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .oz-whatsapp svg { width: 30px; height: 30px; }
  .oz-wa-label { display: none; }
  .back-top { bottom: 84px; right: 18px; }
}

/* Quote popup context chip (carried from the home quick-quote bar) */
.oz-context {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 16px;
  padding: 9px 16px;
  width: max-content;
  max-width: 100%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.3;
  text-align: left;
}
.oz-context svg { width: 17px; height: 17px; flex-shrink: 0; color: #d6f7ff; }
.oz-context strong { font-weight: 700; }
.oz-context span { word-break: break-word; }


/* ==========================================================================
   HERO POLISH: eyebrow badge, glass CTA, trust row, metric accent
   ========================================================================== */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.hero-kicker-bar {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Glass-effect CTA (scoped to the hero so other buttons are unchanged) */
.btn-glass {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 79, 99, 0.92) 0%, rgba(0, 128, 158, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 79, 99, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -3px 8px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}
.btn-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
}
.btn-glass:hover::after { left: 130%; }
.btn-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 79, 99, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.btn-glass .btn-arrow { position: relative; transition: transform 0.3s ease; }
.btn-glass:hover .btn-arrow { transform: translateX(4px); }

/* Single, human reassurance line under the CTA */
.hero-content .hero-buttons { margin-bottom: 18px; }
/* Hero secondary button: the base .btn-ghost is white-on-transparent for dark
   sections, which is invisible on the light hero. Give it a visible outline style. */
.hero-buttons .btn-ghost {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border-hover);
  box-shadow: 0 4px 14px rgba(16, 38, 73, 0.05);
}
.hero-buttons .btn-ghost:hover {
  background: var(--primary-muted);
  border-color: var(--primary);
  color: var(--primary);
}
.hero-buttons .btn-ghost .btn-arrow { transition: transform 0.3s ease; }
.hero-buttons .btn-ghost:hover .btn-arrow { transform: translateX(4px); }
.hero-assurance {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 90px;
  padding: 8px 24px 8px 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 169, 224, 0.15);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.hero-assurance:hover {
  box-shadow: 0 15px 40px rgba(0, 169, 224, 0.1);
  transform: translateY(-2px);
  border-color: rgba(0, 169, 224, 0.3);
}
.hero-assurance svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1dbf73 0%, #159f5c 100%);
  color: white;
  box-shadow: 0 4px 10px rgba(29, 191, 115, 0.3);
}

/* Stat strip: hairline + dividers + gradient numbers */
.hero-metrics {
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero-content .hero-metric {
  flex: 1;
  position: relative;
  padding: 2px 26px 2px 0;
}
.hero-content .hero-metric + .hero-metric { padding-left: 26px; }
.hero-content .hero-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: var(--border);
}
.hero-metric .metric-value {
  font-size: 2.1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-metric .metric-label { margin-top: 7px; }

@media (max-width: 600px) {
  .hero-content .hero-metric { padding: 0; }
  .hero-content .hero-metric + .hero-metric { padding-left: 0; }
  .hero-content .hero-metric:not(:last-child)::after { display: none; }
}

/* ==========================================================================
   HOME PAGE RESPONSIVE FIXES (inline-styled sections + overflow safety)
   ========================================================================== */

/* Coverage magnifier map must never overflow and stay square */
@media (max-width: 1024px) {
  #map-magnifier-container { max-width: 420px; }
}
@media (max-width: 768px) {
  /* Tablet -> mobile: trim large inline vertical paddings */
  .process-section { padding: 56px 0 !important; }
  .coverage-showcase { padding: 56px 0; }
  .value-props { padding: 56px 0; }
  .coverage-map { max-width: 100%; padding: 8px !important; }
  #map-magnifier-container { max-width: 340px; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  #map-magnifier-container { max-width: 88vw; }
}



/* ==========================================================================
   PREMIUM UI UPGRADES (User Requested Overhauls)
   ========================================================================== */

/* --- 1. SERVICES RIBBON MARQUEE --- */
.services-ribbon {
  background: linear-gradient(90deg, var(--primary-dark) 0%, #001224 50%, var(--primary-dark) 100%) !important;
  border-top: 1px solid rgba(0, 169, 224, 0.2) !important;
  border-bottom: 1px solid rgba(0, 169, 224, 0.2) !important;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8) !important;
  padding: 20px 0 !important;
}
.ribbon-item {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  font-size: 1.1rem;
  text-shadow: 0 0 15px rgba(0,169,224,0.4) !important;
  margin: 0 15px !important;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}
.ribbon-item:hover {
  color: var(--primary) !important;
  text-shadow: 0 0 20px rgba(0,169,224,0.8) !important;
}
.ribbon-item::after {
  content: '\2022';
  position: absolute;
  right: -45px;
  color: rgba(255,255,255,0.15);
}
.ribbon-track:hover {
  animation-play-state: paused !important;
}

/* --- 2. VALUE PROPS (Why Trust Us) --- */
.vp-cards {
  display: grid;
  gap: 28px !important;
}
.vp-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(0, 169, 224, 0.15) !important;
  border-radius: 24px !important;
  padding: 36px 32px !important;
  box-shadow: 0 15px 40px rgba(0, 30, 70, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}
.vp-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(0, 169, 224, 0.12) !important;
  border-color: rgba(0, 169, 224, 0.5) !important;
}
.vp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vp-card:hover::before {
  opacity: 1;
}
.vp-card h3 {
  font-size: 1.4rem !important;
  color: var(--primary-dark) !important;
  margin-bottom: 12px !important;
}
.vp-card p {
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
}
.vp-image img {
  border-radius: 30px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
  transition: transform 0.5s ease;
}
.vp-image:hover img {
  transform: scale(1.02);
}

/* --- 3. COVERAGE MAP SECTION --- */
.coverage-section {
  background: radial-gradient(circle at center, #0b1d36 0%, #02070e 100%) !important;
  position: relative;
  overflow: hidden;
}
.coverage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.coverage-section h2 {
  text-shadow: 0 4px 20px rgba(0,169,224,0.4) !important;
}
.coverage-list {
  position: relative;
  z-index: 2;
}
.coverage-list li {
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 18px 24px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  margin-bottom: 16px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: #fff !important;
  font-weight: 500 !important;
}
.coverage-list li:hover {
  background: rgba(0, 169, 224, 0.1) !important;
  border-color: rgba(0, 169, 224, 0.4) !important;
  transform: translateX(12px) !important;
  box-shadow: 0 10px 20px rgba(0,169,224,0.1) !important;
}
.coverage-list li svg {
  color: var(--accent) !important;
  filter: drop-shadow(0 0 8px rgba(0,169,224,0.8)) !important;
}
#map-image {
  filter: drop-shadow(0 0 40px rgba(0,169,224,0.3)) drop-shadow(0 20px 50px rgba(0,0,0,0.8)) !important;
}



/* --- VALUE PROPS (Why Choose Us) --- */
.vp-scroll-item {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(0, 169, 224, 0.15) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 15px 40px rgba(0, 30, 70, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px !important;
}
.vp-scroll-item:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(0, 169, 224, 0.12) !important;
  border-color: rgba(0, 169, 224, 0.5) !important;
  background: #ffffff !important;
}
.vp-scroll-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), #00c9a7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vp-scroll-item:hover::before {
  opacity: 1;
}
.vp-icon {
  color: var(--primary) !important;
  background: rgba(0,169,224,0.1) !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  transition: transform 0.3s ease !important;
}
.vp-scroll-item:hover .vp-icon {
  transform: rotate(10deg) scale(1.1) !important;
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(0,169,224,0.3) !important;
}
.vp-content h3 {
  font-size: 1.5rem !important;
  color: var(--primary-dark) !important;
  margin-bottom: 12px !important;
  font-weight: 800 !important;
}
.vp-sticky-image img {
  border-radius: 30px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 0 10px rgba(0,169,224,0.05) !important;
  transition: transform 0.5s ease;
}
.vp-sticky-image:hover img {
  transform: scale(1.03);
}

/* --- HOW IT WORKS (Process Steps) --- */
.process-steps {
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,169,224,0.1), var(--primary), rgba(0,169,224,0.1));
  z-index: 0;
  border-radius: 3px;
}
.step-card {
  position: relative;
  z-index: 1;
  background: #ffffff !important;
  border: 1px solid rgba(0,169,224,0.1) !important;
  border-radius: 20px !important;
  padding: 40px 24px !important;
  box-shadow: 0 15px 35px rgba(0,30,70,0.05) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin-top: 20px;
}
.step-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 50px rgba(0,169,224,0.15) !important;
  border-color: rgba(0,169,224,0.4) !important;
}
.step-number {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  color: #fff !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  margin: -75px auto 20px auto !important;
  box-shadow: 0 10px 25px rgba(0,169,224,0.4), 0 0 0 8px #ffffff !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.step-card:hover .step-number {
  transform: scale(1.15) rotate(-5deg) !important;
  box-shadow: 0 15px 30px rgba(0,169,224,0.5), 0 0 0 8px #ffffff !important;
}
.step-card h3 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  color: var(--primary-dark) !important;
}
.step-card p {
  color: var(--text-secondary) !important;
  line-height: 1.6 !important;
}



/* --- COVERAGE SECTION LIGHT BACKGROUND UPGRADE --- */
.coverage.section {
  background: #f8fafc !important; /* Bright light-grey/white background */
  color: var(--primary-dark) !important;
}
.coverage-content h2, .coverage-content .overline {
  color: var(--primary-dark) !important;
  text-shadow: none !important;
}
.coverage-content > p {
  color: #475569 !important;
  font-weight: 500;
}
.coverage-list li {
  background: #ffffff !important;
  color: var(--primary-dark) !important;
  border: 1px solid rgba(0, 169, 224, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
.coverage-list li:hover {
  background: rgba(0, 169, 224, 0.05) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 10px 25px rgba(0,169,224,0.15) !important;
}

/* --- MAGNIFYING HOVER EFFECT --- */
#map-radar-container {
  /* Keep the circle dark as requested */
  background: radial-gradient(circle at center, #0B1D2E 0%, #050D14 100%) !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2) !important;
}
#map-image {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transform-origin: center center;
}
#map-radar-container:hover #map-image {
  transform: scale(2.2) !important; /* Magnify into the map */
}



/* --- REDESIGNED VALUE PROPS --- */
.vp-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.vp-new-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(0,169,224,0.08);
  box-shadow: 0 10px 30px rgba(0,25,60,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vp-new-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,169,224,0.1);
  border-color: rgba(0,169,224,0.25);
}
.vp-new-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(0,169,224,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vp-new-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vp-new-card:hover::before {
  opacity: 1;
}
.vp-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,169,224,0.1) 0%, rgba(0,201,167,0.1) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vp-icon-wrap svg {
  width: 28px; height: 28px;
}
.vp-new-card:hover .vp-icon-wrap {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,169,224,0.3);
}
.vp-new-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.vp-new-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.vp-new-image:hover img {
  transform: scale(1.05);
}



/* --- BENTO BOX DARK MODE REDESIGN --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 169, 224, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,169,224,0.15);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 50px;
  min-height: 500px;
}
.bento-large:hover img {
  transform: scale(1.05);
}

.bento-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  padding: 0;
  min-height: 250px;
}
.bento-wide-content {
  flex: 1;
  padding: 50px;
  position: relative;
  z-index: 2;
}
.bento-wide-img {
  flex: 0 0 45%;
  height: 100%;
  position: relative;
}

.vp-icon-b {
  width: 56px; height: 56px;
  background: rgba(0, 169, 224, 0.1);
  color: var(--primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 169, 224, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vp-icon-b svg { width: 28px; height: 28px; }

.bento-card:hover .vp-icon-b {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0,169,224,0.4);
  border-color: transparent;
}

/* Responsive Rules for Bento */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 400px;
  }
  .bento-wide {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-column: span 1;
  }
  .bento-wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .bento-wide-content {
    padding: 40px;
  }
  .bento-wide-img {
    width: 100%;
    height: 200px;
  }
  .bento-wide-img > div {
    background: linear-gradient(to bottom, #040d1a 0%, transparent 50%) !important;
  }
}



/* --- INTERACTIVE TABS BRIGHT REDESIGN --- */
.vp-tab {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 24px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.vp-tab.active {
  background: #ffffff;
  border-color: rgba(0, 169, 224, 0.2);
  box-shadow: 0 20px 40px rgba(0, 30, 70, 0.05);
  transform: translateX(15px);
}
.vp-tab-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vp-tab-icon svg { width: 26px; height: 26px; }
.vp-tab.active .vp-tab-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 25px rgba(0,169,224,0.3);
}
.vp-tab-content h3 {
  font-size: 1.3rem;
  color: #475569;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.vp-tab.active .vp-tab-content h3 {
  color: var(--primary-dark);
  font-weight: 800;
}
.vp-tab-content p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
  transition: color 0.3s ease;
}
.vp-tab.active .vp-tab-content p {
  color: #475569;
}

/* Image Frame */
.vp-tab-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 32px;
}
.vp-tab-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .vp-tabs-container {
    flex-direction: column;
  }
  .vp-tabs-visual {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .vp-tab.active {
    transform: translateY(-10px);
  }
}



/* --- REMOVE MAGNIFYING EFFECT --- */
#map-radar-container {
  cursor: default !important;
}
#map-image {
  transform: none !important;
  transition: none !important;
}
#map-radar-container:hover #map-image {
  transform: none !important;
}

/* ============================================
   RESPONSIVE ACCESSIBILITY / TOUCH FIXES
   ============================================ */
/* iOS input zoom fix: 16px font prevents auto-zoom on focus */
@media (max-width: 768px) {
  .oz-input,
  .premium-form-input,
  .blog-leadform .oz-input,
  .qb-group input,
  .qb-group select {
    font-size: 16px;
  }
}
/* Breadcrumb wrapping on small phones */
@media (max-width: 600px) {
  .page-hero .breadcrumb,
  .pillar-hero .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ============================================================
   RESPONSIVE HARMONISATION (added post-launch)
   Stack the main content grids at the SAME 1024px breakpoint
   where the nav switches to the mobile drawer, eliminating the
   992-1024px "dead band" (mobile header over desktop columns).
   ============================================================ */
@media (max-width: 1024px) {
  .gf-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .wcos-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .vp-tabs-container { flex-direction: column; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-grid::before { display: none; }
  .sub-services-grid { grid-template-columns: repeat(2, 1fr); }
  .dark-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .four-box-grid, .six-card-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Touch-target & small-screen robustness refinements */
.footer-social { width: 44px; height: 44px; }
.footer-col ul li { margin-bottom: 2px; }
.footer-col ul li a { display: inline-block; padding: 7px 0; }
.footer-bar .footer-links a { display: inline-block; padding: 6px 0; }
.btn { min-height: 44px; }
.oz-modal { max-height: 90vh; overflow-y: auto; }
.faq-item.active .faq-answer { max-height: 1500px; }

/* ============================================================
   HEADER & FOOTER GLOW-UP (added post-launch)
   ============================================================ */

/* ---- Header: premium CTA + phone badge + gradient underline ---- */
.nav-link::after {
  background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
  height: 2px !important;
}
.header-phone svg {
  width: 36px; height: 36px; padding: 9px;
  background: rgba(0, 169, 224, 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  transition: background 0.25s ease;
}
.header-phone:hover svg { background: rgba(0, 169, 224, 0.18); }
.nav-cta {
  background: linear-gradient(135deg, #00748f, #00566a) !important;
  box-shadow: 0 6px 18px rgba(0, 116, 143, 0.32) !important;
  border: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 11px 26px rgba(0, 116, 143, 0.45) !important;
}

/* ---- Footer: premium dark redesign ---- */
.footer {
  background: linear-gradient(180deg, #06303f 0%, #041b25 100%) !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 2;
}
.footer::after {
  content: ""; position: absolute; top: -140px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.13), transparent 70%);
  pointer-events: none; z-index: 0;
}
.footer-main { position: relative; z-index: 1; padding: 140px 0 56px; }
.footer-grid { gap: 48px; }
.footer-brand .footer-logo img { filter: brightness(0) invert(1); height: 54px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); max-width: 340px; }
.footer-social {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff !important;
  box-shadow: none !important;
}
.footer-social:hover { color: #fff !important; border-color: transparent; box-shadow: 0 12px 24px rgba(0, 180, 216, 0.35) !important; }
.footer-col h4, .footer-col h3 {
  color: #fff; font-size: 0.92rem; letter-spacing: 1px; text-transform: uppercase;
  position: relative; padding-bottom: 12px; margin-bottom: 22px;
}
.footer-col h4::after, .footer-col h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px;
}
.footer-col ul li a { color: rgba(255, 255, 255, 0.62); }
.footer-col ul li a:hover { color: #fff; transform: translateX(5px); }
.footer-contact-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.footer-contact-item { color: rgba(255, 255, 255, 0.66); }
.footer-contact-item a { color: #fff; }
.footer-contact-item a:hover { color: var(--accent); }
.fci-icon {
  background: linear-gradient(135deg, rgba(0, 169, 224, 0.22), rgba(0, 180, 216, 0.1)) !important;
  border: 1px solid rgba(0, 180, 216, 0.25);
  color: var(--accent);
}
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  position: relative; z-index: 1;
}
.footer-bar p { color: rgba(255, 255, 255, 0.5); }
.footer-links a { color: rgba(255, 255, 255, 0.55); }
.footer-links a:hover { color: #fff; }

/* ---- Footer dark: bulletproof color scoping (#footer beats any cascade) ---- */
#footer { background: linear-gradient(180deg, #06303f 0%, #04181f 100%) !important; color: rgba(255,255,255,0.72) !important; }
#footer .footer-brand p { color: rgba(255,255,255,0.62) !important; }
#footer .footer-brand .footer-logo img { filter: brightness(0) invert(1) !important; }
#footer .footer-col h4, #footer .footer-col h3 { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
#footer .footer-col ul li a { color: rgba(255,255,255,0.66) !important; -webkit-text-fill-color: rgba(255,255,255,0.66) !important; }
#footer .footer-col ul li a:hover { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
#footer .footer-contact-item { color: rgba(255,255,255,0.72) !important; }
#footer .footer-contact-item a { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
#footer .footer-contact-item a:hover { color: var(--accent) !important; -webkit-text-fill-color: var(--accent) !important; }
#footer .footer-social { color: #ffffff !important; }
#footer .footer-bar { background: #021219 !important; border-top: 1px solid rgba(255,255,255,0.1) !important; }
#footer .footer-bar p { color: rgba(255,255,255,0.55) !important; }
#footer .footer-links a { color: rgba(255,255,255,0.6) !important; -webkit-text-fill-color: rgba(255,255,255,0.6) !important; }
#footer .footer-links a:hover { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }

/* ============================================================
   HERO GLOW-UP (added post-launch) — ambient depth, gradient
   headline, grounded truck, refined kicker badge.
   ============================================================ */
.hero {
  background:
    radial-gradient(rgba(0, 79, 99, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(180deg, #f4fafc 0%, #ffffff 58%) !important;
}
.hero::before {
  content: ""; position: absolute; top: -100px; right: -80px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.16), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: 30px; left: -150px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 79, 99, 0.09), transparent 64%);
  z-index: 0; pointer-events: none;
}
/* refined kicker badge */
.hero-kicker {
  background: rgba(0, 180, 216, 0.1);
  color: #00657f;
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 180, 216, 0.18);
}
/* rich gradient headline accent (kept dark enough for legibility) */
.hero h1 .gradient-text {
  background: linear-gradient(120deg, #0a93b4 0%, #07505f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* ground the truck with a soft teal aura */
.hero-visual-home { position: relative; }
.hero-visual-home::before {
  content: ""; position: absolute; z-index: -1;
  left: 6%; right: 6%; top: 14%; bottom: 8%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.2), transparent 66%);
  filter: blur(34px); border-radius: 50%;
}

/* ============================================================
   SECTION LABELS / EYEBROWS — editorial underline accent (sitewide)
   Unifies BOTH .overline and .badge (service pages use .badge).
   !important also overrides the inline pill styles a few badges have.
   ============================================================ */
.overline, .badge {
  display: inline-block !important;
  position: relative !important;
  padding: 0 0 12px 0 !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #07627a !important;
  -webkit-text-fill-color: #07627a !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 2.2px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
}
.overline::before, .badge::before { content: none !important; }
.overline::after, .badge::after {
  content: "" !important;
  position: absolute !important;
  left: 0; bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
  border-radius: 3px;
}
/* dark-section variant (e.g. homepage coverage band) */
.overline.on-dark, .badge.on-dark { color: #8fe6f5 !important; -webkit-text-fill-color: #8fe6f5 !important; }

/* ============================================================
   QUOTE POPUP — logistics-themed two-zone redesign
   (teal branded header w/ delivery-route motif + white form).
   ============================================================ */
.oz-modal-overlay { padding: 20px; }
.oz-modal {
  background: #ffffff !important;
  color: #0c2a39 !important;
  border-radius: 22px !important;
  padding: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-width: 480px !important;
  max-height: 92vh;
  box-shadow: 0 30px 72px rgba(3, 35, 50, 0.36) !important;
}
.oz-modal-glow { display: none !important; }
.oz-modal-body { padding: 0 !important; }
.oz-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,42,58,0.34) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
}
.oz-modal-close:hover { background: rgba(10,42,58,0.52) !important; color:#fff !important; }
/* themed teal header */
.oz-modal-header {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, #0bb0db 0%, #008cb6 52%, #005c79 100%);
  color: #fff; padding: 32px 28px 40px;
}
/* soft coastal wave flowing into the white form */
.oz-modal-header::before {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: -1px; height: 26px; z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,30 V15 Q300,32 600,17 T1200,15 V30 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center / 100% 26px;
  pointer-events: none;
}
.oz-modal-header::after {
  content: ""; position: absolute; top: -70px; right: -50px; width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%); pointer-events: none;
}
.oz-modal-header .oz-modal-logo {
  position: relative; z-index: 1;
  background: none !important; padding: 0 !important; width: 150px !important; margin: 14px auto 12px !important;
}
.oz-modal-header .oz-modal-logo img { filter: brightness(0) invert(1); width: 100%; height: auto; }
.oz-eyebrow {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.16) !important; border: 1px solid rgba(255,255,255,0.3) !important;
  color: #ffffff !important; font-size: 0.68rem; margin: 0 auto 12px;
}
.oz-modal-header h2 { color: #ffffff !important; position: relative; z-index: 1; margin: 0 0 6px; }
.oz-modal-header .oz-modal-sub { color: rgba(255,255,255,0.92) !important; position: relative; z-index: 1; margin: 0 auto; }
/* white form area */
.oz-modal-form-area { padding: 22px 28px 26px; background: #fff; }
.oz-context {
  background: rgba(0,180,216,0.07); border: 1px solid rgba(0,180,216,0.18); color: #0c5066;
  border-radius: 12px; padding: 10px 14px; font-size: 0.85rem; margin: 0 0 16px;
}
.oz-input {
  background: #f1f6f9 !important; border: 1.5px solid #e2eaf0 !important; color: #0c2a39 !important;
  font-size: 1rem !important; padding: 14px 16px !important; border-radius: 12px !important;
}
.oz-field.oz-has-icon .oz-input { padding-left: 48px !important; }
.oz-input::placeholder { color: #8a9aa5 !important; }
.oz-input:focus { background: #fff !important; border-color: var(--primary) !important; box-shadow: 0 0 0 4px rgba(0,180,216,0.14) !important; }
.oz-input.oz-error { border-color: #e5484d !important; background: rgba(229,72,77,0.06) !important; }
.oz-field.oz-has-icon .oz-ico { left: 16px !important; color: var(--primary) !important; opacity: 0.85; }
.oz-consent label { color: #5a6b76 !important; }
.oz-consent a { color: var(--primary) !important; }
.oz-consent input[type="checkbox"] { accent-color: var(--primary); }
.oz-submit { color: #fff !important; background: linear-gradient(135deg, var(--primary) 0%, #0090b3 100%) !important; box-shadow: 0 12px 26px rgba(0,169,224,0.4) !important; }
.oz-submit:hover { box-shadow: 0 16px 34px rgba(0,169,224,0.5) !important; }
.oz-form-msg.err { color: #e5484d !important; }
.oz-trust { border-top: 1px solid #eef2f5 !important; }
.oz-trust span { color: #5a6b76 !important; }
.oz-trust span svg { color: var(--primary); }
.oz-success { padding: 34px 28px 30px; }
.oz-success h3 { color: #0c2a39 !important; }
.oz-success p { color: #5a6b76 !important; }
.oz-success-icon { background: rgba(0,180,216,0.12) !important; }
.oz-success-icon svg { color: var(--primary) !important; }
/* responsive */
@media (max-width: 560px) {
  .oz-modal-overlay { padding: 10px; }
  .oz-modal { border-radius: 18px !important; max-height: 94vh; }
  .oz-modal-header { padding: 26px 20px 22px; }
  .oz-modal-form-area { padding: 20px 18px 22px; }
  .oz-modal-header .oz-modal-logo { width: 132px !important; }
  .oz-input { font-size: 16px !important; }
}

/* ============================================================
   CONTACT FORM — inline validation + consent
   ============================================================ */
.contact-form .field-error { display: block; color: #e5484d; font-size: 0.82rem; font-weight: 600; margin-top: 6px; }
.contact-form .field-error:empty { display: none; }
.contact-form .premium-form-input.is-invalid { border-color: #e5484d !important; box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12) !important; }
.contact-form .optional-tag { color: var(--text-light); font-weight: 500; font-size: 0.85em; }
.premium-form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 4px; }
.premium-form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); cursor: pointer; }
.premium-form-consent label { font-size: 0.85rem; line-height: 1.5; color: var(--text-secondary); }
.premium-form-consent a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.cf-form-msg { font-size: 0.9rem; margin-top: 12px; }
.cf-form-msg:empty { display: none; }
.cf-form-msg.err { color: #e5484d; font-weight: 600; }

/* ============================================================
   CONTACT PAGE — mobile/tablet order: headline -> form -> methods
   ============================================================ */
@media (max-width: 992px) {
  #contact .why-about-grid { grid-template-columns: 1fr; gap: 36px; align-items: stretch; }
  #contact .contact-info { display: contents; }
  #contact .contact-intro-header { order: 1; }
  #contact .premium-form-wrapper { order: 2; }
  #contact .contact-methods-grid { order: 3; margin-top: 6px; }
}

/* hide the contact intro paragraph on mobile/tablet (kept on desktop) */
@media (max-width: 992px) {
  #contact .contact-intro-desc { display: none; }
}

/* Contact page mobile/tablet: tighten spacing + force form visible so it shows right after the headline */
@media (max-width: 992px) {
  #contact { padding-top: 36px; padding-bottom: 44px; }
  #contact .contact-intro-title { font-size: clamp(1.7rem, 6.5vw, 2.3rem); margin-bottom: 14px; }
  #contact .contact-intro-header { margin-bottom: 18px; }
  #contact .why-about-grid { gap: 20px; }
  #contact .premium-form-wrapper { padding: 24px 20px; opacity: 1 !important; transform: none !important; }
}

/* Popup form: optional message textarea */
.oz-form textarea.oz-input { min-height: 80px; resize: vertical; padding-top: 12px; line-height: 1.5; font-family: inherit; }
.oz-field-textarea .oz-ico { top: 14px; transform: none; }

/* ============================================================
   POPUP FORM — compact so it fits in ONE view (no scrolling)
   and scales down further on shorter screens.
   ============================================================ */
.oz-modal { max-height: 96vh; }
.oz-modal-header { padding: 22px 26px 30px !important; }
.oz-modal-header .oz-modal-logo { width: 124px !important; margin: 6px auto 10px !important; }
.oz-modal-header h2 { font-size: clamp(1.25rem, 3.6vw, 1.5rem) !important; margin: 0 0 4px !important; }
.oz-modal-header .oz-modal-sub { font-size: 0.85rem !important; margin: 0 auto !important; }
.oz-eyebrow { margin: 0 auto 10px !important; padding: 5px 14px !important; }
.oz-modal-form-area { padding: 16px 26px 20px !important; }
.oz-form { gap: 9px !important; }
.oz-input { padding: 11px 16px !important; }
.oz-field.oz-has-icon .oz-input { padding-left: 46px !important; }
.oz-form textarea.oz-input { min-height: 50px !important; }
.oz-consent { margin: 2px 0 !important; }
.oz-consent label { font-size: 0.76rem !important; line-height: 1.4 !important; }
.oz-submit { padding: 12px 24px !important; margin-top: 4px !important; }
.oz-trust { margin-top: 12px !important; padding-top: 10px !important; gap: 8px 14px !important; }
.oz-trust span { font-size: 0.74rem !important; }

/* Shorter screens (most phones in portrait, landscape) — trim more */
@media (max-height: 760px) {
  .oz-modal-header { padding: 16px 26px 26px !important; }
  .oz-modal-header .oz-modal-logo { width: 110px !important; margin: 2px auto 8px !important; }
  .oz-modal-header .oz-modal-sub { display: none !important; }
  .oz-trust { display: none !important; }
  .oz-form { gap: 8px !important; }
  .oz-input { padding: 10px 16px !important; }
}
@media (max-height: 620px) {
  .oz-eyebrow { display: none !important; }
  .oz-modal-header { padding: 12px 24px 22px !important; }
  .oz-modal-header h2 { font-size: 1.18rem !important; }
  .oz-form textarea.oz-input { min-height: 44px !important; }
}

/* ============================================================
   IN-HERO QUOTE FORM (route pages + homepage) — competitor-style
   ============================================================ */
.hero-quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  max-width: 940px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(0, 25, 60, 0.28);
  text-align: left;
  position: relative; z-index: 3;
}
.hqf-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hqf-field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text-secondary); }
.hqf-field input, .hqf-field select {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #e2eaf0; background: #fff; border-radius: 10px;
  padding: 12px 14px; font-size: 1rem; color: var(--text-primary); font-family: inherit;
}
.hqf-field input:focus, .hqf-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.14); }
.hqf-btn { white-space: nowrap; padding: 13px 26px !important; height: 48px; align-self: end; }
.hero-trust-line { color: rgba(255, 255, 255, 0.92); font-size: 0.9rem; text-align: center; margin: 14px auto 0; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); position: relative; z-index: 3; }
@media (max-width: 860px) {
  .hero-quote-form { grid-template-columns: 1fr; gap: 12px; padding: 16px; margin-top: 20px; }
  .hqf-btn { width: 100%; }
}

/* ============================================================
   FREIGHT ROUTE PAGES — rich content sections
   ============================================================ */
.route-img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 22px 50px rgba(0, 25, 60, 0.14); display: block; }
.route-img-ph { position: relative; }
.route-img-ph::after { content: "Image placeholder"; position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,0.55); color: #fff; font-size: 0.72rem; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.3px; }
.route-overview-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.route-overview-grid p { color: var(--text-secondary); line-height: 1.8; margin: 0 0 16px; }
@media (min-width: 993px) { .route-overview-grid--rev .route-img-ph { order: -1; } }
.route-goods-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 960px; margin: 0 auto; }
.route-goods-item { background: var(--bg-white); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.route-goods-item h3 { font-size: 1.05rem; margin: 0 0 6px; color: var(--text-dark); }
.route-goods-item p { margin: 0; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
.route-ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.route-ind-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.route-ind-card h3 { font-size: 1.05rem; margin: 0 0 8px; color: var(--primary); }
.route-ind-card p { margin: 0; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.route-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.route-why-item { display: flex; gap: 14px; align-items: flex-start; }
.route-why-item .rwi-num { flex: 0 0 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.route-why-item h3 { font-size: 1.02rem; margin: 2px 0 4px; color: var(--text-dark); }
.route-why-item p { margin: 0; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 992px) { .route-overview-grid { grid-template-columns: 1fr; gap: 28px; } .route-ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .route-goods-grid, .route-ind-grid, .route-why-grid { grid-template-columns: 1fr; } }
