/* ============================================================
   AIRPORT INDUSTRIA CID, Master Stylesheet v2
   Fonts: Outfit (body) + Cormorant Garamond (display)
   Palette: Teal / Greens / Orange / Deep Blue, VIBRANT
   ============================================================ */

:root {
  /* Brand Palette, VIBRANT */
  --teal: #0097a7;
  --teal-light: #b2ebf2;
  --teal-dark: #00727e;
  --green-bright: #4caf50;
  --green-dark: #2e7d32;
  --orange: #f57c00;
  --orange-light: #ffe0b2;
  --blue-deep: #1565c0;
  --blue-light: #bbdefb;
  --blue-petrol: #1a6585;
  --pink: #d6206d;
  --footer-bg: #f7f8fa;

  /* Hero shimmer palette (rotated per building) */
  --shimmer-petrol:  #1a6585;
  --shimmer-magenta: #d81b60;
  --shimmer-lime:    #b8c93a;
  --shimmer-orange:  #f57c00;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7f8fa;
  --grey-100: #f1f3f5;
  --grey-200: #e2e6ea;
  --grey-300: #cdd3da;
  --grey-500: #3a4253;
  --grey-700: #1f2937;
  --grey-900: #1a202c;
  --dark: #0f1923;

  /* Typography */
  --font-body: "Manrope", sans-serif;
  --font-display: "Manrope", sans-serif;

  /* Sizing */
  --container: 1200px;
  --header-h: 110px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.35s;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--speed) var(--ease);
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Global Icon Stroke (lucide thin-line) ---------- */
svg.lucide,
[class*="lucide-"] {
  stroke-width: 1.25;
}

/* ---------- Utility ---------- */
.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}
.center {
  text-align: center;
}
.hide-mobile {
  display: inline;
}
.show-mobile {
  display: none;
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
  .show-mobile {
    display: inline;
  }
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-petrol);
  margin-bottom: 0.75rem;
}
.section-tag.light {
  color: #5b9fe4;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--blue-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-heading.light {
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Colour bar (reused) ---------- */
.section-colour-bar {
  display: flex;
  height: 4px;
  width: 100%;
}
.section-colour-bar span {
  flex: 1;
}

/* ---------- Buttons ---------- */
.btn,
.btn-primary-light,
.btn-outline,
.btn-outline-dark,
.btn-emergency-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  transition: all var(--speed) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg,
.btn-primary-light svg,
.btn-outline svg,
.btn-outline-dark svg {
  width: 16px;
  height: 16px;
}

.btn-primary-light {
  background: var(--white);
  color: var(--grey-900);
  border-color: var(--white);
}
.btn-primary-light:hover {
  background: #5b9fe4;
  color: var(--white);
  border-color: #5b9fe4;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--grey-900);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--grey-900);
  border-color: var(--grey-300);
}
.btn-outline-dark:hover {
  background: var(--grey-900);
  color: var(--white);
  border-color: var(--grey-900);
}

.btn-emergency-lg {
  background: var(--grey-900);
  color: var(--white);
  border-color: var(--grey-900);
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}
.btn-emergency-lg:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--grey-900);
  text-decoration: none;
  transition: gap var(--speed) var(--ease);
}
.btn-text-link svg {
  width: 14px;
  height: 14px;
}
.btn-text-link:hover {
  gap: 0.6rem;
}

/* ---------- Scroll Animations ---------- */
.fade-up,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.fade-up {
  transform: translateY(30px);
}
.reveal-up {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}

.fade-up.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-img {
  height: 123px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: filter 0.4s var(--ease);
}
.logo-mark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--grey-900);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-primary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.site-header.scrolled .logo-primary {
  color: var(--grey-900);
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.4s var(--ease);
}
.site-header.scrolled .logo-sub {
  color: var(--grey-500);
}

/* Nav */
.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}
.nav-list {
  display: flex;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-900);
  transition: color var(--speed) var(--ease);
}
.nav-link-toggle {
  cursor: pointer;
  user-select: none;
}
.nav-link:hover {
  color: var(--teal);
}
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--speed) var(--ease);
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--speed) var(--ease);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-700);
  transition: all var(--speed) var(--ease);
}
.dropdown li a:hover {
  color: var(--grey-900);
  background: var(--grey-100);
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-900);
  border-radius: 2px;
  transition: all var(--speed) var(--ease);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  padding: calc(var(--header-h) + 2rem) 6% 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--grey-200);
  position: relative;
}
.mobile-nav-item > a,
.mobile-nav-item > .mobile-nav-toggle {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--grey-900);
}
.mobile-nav-item > .mobile-nav-toggle {
  cursor: pointer;
  user-select: none;
}
.mobile-expand {
  position: absolute;
  right: 0;
  top: 0.7rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
}
.mobile-expand svg {
  width: 18px;
  height: 18px;
  transition: transform var(--speed) var(--ease);
}
.mobile-expand.active svg {
  transform: rotate(45deg);
}
.mobile-sub {
  display: none;
  padding: 0 0 0.5rem 1rem;
}
.mobile-sub.active {
  display: block;
}
.mobile-sub li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--grey-500);
}
.mobile-emergency {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 1rem;
  background: #ffebee;
  color: #d32f2f;
  border-radius: var(--radius);
  font-weight: 400;
  font-size: 0.9rem;
}
.mobile-emergency svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

/* Hero BG, line art cityscape on clean white */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--white);
}
.hero-cityscape {
  position: absolute;
  bottom: clamp(3rem, 5vh, 4.5rem);
  left: 0;
  width: 100%;
  height: 72%;
  opacity: 1;
}

/* Line-draw reveal, paths start hidden, JS computes length per shape */
.hero-cityscape .buildings path,
.hero-cityscape .buildings line,
.hero-cityscape .buildings rect,
.hero-cityscape .buildings ellipse {
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-cityscape.draw-ready .buildings path,
.hero-cityscape.draw-ready .buildings line,
.hero-cityscape.draw-ready .buildings rect,
.hero-cityscape.draw-ready .buildings ellipse {
  animation: drawStroke 6s ease-out forwards;
  animation-delay: var(--draw-delay, 0s);
}
@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cityscape.draw-ready .buildings path,
  .hero-cityscape.draw-ready .buildings line,
  .hero-cityscape.draw-ready .buildings rect,
  .hero-cityscape.draw-ready .buildings ellipse {
    animation: none;
    stroke-dashoffset: 0 !important;
  }
}

/* ---- Hero shimmer overlay: slow re-paint of each building in a new colour ----
   The animation itself is assigned inline by JS (per-shape duration + delay), so
   the class only needs to define the static presentation of the overlay group. */
.hero-cityscape .buildings-shimmer {
  pointer-events: none;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes shimmerOverdraw {
  from { stroke-dashoffset: var(--shimmer-len, 0); }
  to   { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cityscape .buildings-shimmer { display: none; }
}

/* Road line, animation is on the <animate> element inline in the SVG.
   For reduced-motion users the JS skips beginElement(), so the line
   stays at its default x2=1440 (fully drawn) with the dashed pattern. */
.hero-cityscape .hero-road {
  stroke-linecap: round;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 32vh 0 4rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-700);
  border: 1px solid var(--grey-200);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  color: var(--blue-deep);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.hero-accent {
  display: inline-block;
  position: relative;
  color: var(--orange);
  font-weight: 500;
}
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--grey-500);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll cue, typographic label + single chevron */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-dark);
  opacity: 0.8;
  transition: opacity var(--speed) var(--ease), color var(--speed) var(--ease);
}
.hero-scroll-cue:hover {
  opacity: 1;
  color: var(--teal);
}
.hero-scroll-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scroll-cue svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  animation: heroScrollNudge 2.2s ease-in-out infinite;
}
@keyframes heroScrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue svg {
    animation: none;
  }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}
.intro-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.intro-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.intro-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: dotPop 1.5s ease-in-out infinite;
}
.intro-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.intro-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotPop {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}
.intro-columns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2.5rem;
}
.intro-lead {
  font-size: 1.1rem;
  color: var(--grey-700);
  line-height: 1.75;
}
.intro-content p {
  font-size: 1rem;
  color: var(--grey-700);
  line-height: 1.75;
}

.intro-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
}
.intro-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 1.2rem 1.6rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  text-align: center;
  transition: all var(--speed) var(--ease);
}
.intro-badge:hover {
  border-color: var(--grey-300);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.badge-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--green-bright);
  line-height: 1.1;
}
.badge-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grey-700);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ============================================================
   SERVICES, 2×2 grid, numbered, colour accents
   ============================================================ */
.services {
  padding: 6rem 0 7rem;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 4px solid var(--service-color, var(--teal));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  transition:
    box-shadow var(--speed) var(--ease),
    transform var(--speed) var(--ease);
}
.service-card:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-img {
  transform: scale(1.06);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 30, 0.1) 0%, rgba(10, 17, 30, 0.5) 45%, rgba(10, 17, 30, 0.9) 100%);
  z-index: 1;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--service-color, var(--teal));
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: opacity var(--speed) var(--ease);
}
.service-card:hover::after {
  opacity: 0.55;
}
.service-body {
  position: relative;
  z-index: 2;
  padding: 1.8rem 2.2rem 2.2rem;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 1.2rem;
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  min-height: calc(0.92rem * 1.7 * 3);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition:
    color var(--speed) var(--ease),
    gap var(--speed) var(--ease);
}
.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--speed) var(--ease);
}
.service-card:hover .service-link {
  color: var(--white);
  gap: 0.7rem;
}
.service-card:hover .service-link svg {
  transform: translateX(2px);
}

/* ============================================================
   COVERAGE, Where We Operate parallax band
   ============================================================ */
.coverage-band {
  position: relative;
  padding: 10rem 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 30, 0.82) 0%, rgba(10, 17, 30, 0.68) 55%, rgba(10, 17, 30, 0.9) 100%),
    url("../images/home-images/parallax.jpg") center bottom / 100% auto no-repeat fixed #0a111e;
  text-align: center;
}
.coverage-band .section-tag {
  color: #7fdbe8;
}
.coverage-band .section-heading {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.coverage-band-sub {
  max-width: 940px;
  margin: 0 auto 2.4rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.coverage-map-link {
  margin-top: 3.6rem;
}
.coverage-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.coverage-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}
.coverage-chips svg {
  width: 16px;
  height: 16px;
  color: #7fdbe8;
}
@media (max-width: 900px) {
  /* fixed backgrounds are unreliable on mobile browsers */
  .coverage-band {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
  }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  padding: 6rem 0;
  background: var(--dark);
  overflow: hidden;
}
.stats-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 151, 167, 0.12) 0%,
    rgba(76, 175, 80, 0.08) 30%,
    rgba(245, 124, 0, 0.08) 60%,
    rgba(21, 101, 192, 0.12) 100%
  );
  animation: gradientShift 10s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.stats-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.stats-text {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  padding: 2rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.stat-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.stat-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0.7;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   SAFETY HUB
   ============================================================ */
.safety-hub {
  padding: 6rem 0;
  background: var(--dark);
  text-align: center;
}
.safety-hub .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.safety-content {
  max-width: 600px;
  margin: 0 auto;
}
.safety-contact-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.safety-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}
.safety-contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--teal-light);
}
.safety-contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.safety-contact-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}
.safety-contact-number:hover {
  color: var(--teal-light);
}

/* ============================================================
   NEWS
   ============================================================ */
.news {
  padding: 6rem 0;
  background: var(--off-white);
}
.news-footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.news-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-100);
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card-img img {
  transform: scale(1.05);
}
.news-cat {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--grey-900);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-card-body .btn-text-link {
  margin-top: auto;
}
.news-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey-500);
  margin-bottom: 0.5rem;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--grey-900);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.news-card p {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 1rem;
  min-height: calc(0.85rem * 1.7 * 3);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}
.partners .section-header {
  margin-bottom: 3.5rem;
}
.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.partners-slider {
  display: flex;
  gap: 2rem;
  animation: partnerScroll 25s linear infinite;
  width: max-content;
}
@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.partner-item {
  flex-shrink: 0;
}
.partner-logo-placeholder {
  padding: 1.2rem 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--grey-500);
  white-space: nowrap;
  background: var(--off-white);
  transition: all var(--speed) var(--ease);
}
.partner-logo-placeholder:hover {
  border-color: var(--grey-300);
  color: var(--grey-700);
}
.partner-logo {
  padding: 0 1.75rem;
  height: 160px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: all var(--speed) var(--ease);
}
.partner-logo:hover {
  border-color: var(--grey-300);
}
.partner-logo img {
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all var(--speed) var(--ease);
}
.partner-logo img[src*="ccid"],
.partner-logo img[src*="police"] {
  height: 150px;
  max-width: 300px;
  transform: scale(1.4);
  transform-origin: center;
}
.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================================
   CTA, centred layout
   ============================================================ */
.cta {
  position: relative;
  padding: 6rem 0;
  background: #060d18;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% -10%,
    rgba(21, 101, 192, 0.2) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.cta-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue-deep) 30%,
    var(--blue-deep) 70%,
    transparent
  );
  opacity: 0.5;
  z-index: 3;
}
.cta-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.cta-radar svg {
  width: 100%;
  height: 100%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.cta-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 2rem;
}
.cta-detail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.cta-detail svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER, proper 4-column grid, centred bottom
   ============================================================ */
.site-footer {
  background:
    linear-gradient(180deg, rgba(10, 17, 30, 0.82) 0%, rgba(10, 17, 30, 0.68) 55%, rgba(10, 17, 30, 0.9) 100%),
    url("../images/footer-bg.jpg") center top / cover no-repeat var(--footer-bg);
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.82);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 4.5rem;
  padding-bottom: 3rem;
}
.footer-brand {
  padding-right: 1.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-top: 0.8rem;
}
.footer-logo .logo-img {
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.webnova-link {
  color: var(--teal);
  font-weight: 500;
  transition: color var(--speed) var(--ease);
}
.webnova-link:hover { color: var(--teal-dark); }
.site-footer .webnova-link { color: #7fdbe8; }
.site-footer .webnova-link:hover { color: #b3ecf4; }
.footer-reg {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--speed) var(--ease);
}
.footer-col ul li a:hover {
  color: #7fdbe8;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}
.footer-contact li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #7fdbe8;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--speed) var(--ease);
}
.footer-contact a:hover {
  color: #7fdbe8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom .webnova-link {
  color: #7fdbe8;
}
.footer-bottom .webnova-link:hover {
  color: #b3ecf4;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-900);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--speed) var(--ease);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal-dark);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Placeholder images */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--grey-100) 0%, var(--grey-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--grey-500);
}
.placeholder-img::after {
  content: attr(data-label);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 90px;
  }
  .logo-img {
    height: 100px;
  }
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .hero-content {
    padding: 14vh 0 3rem;
  }
  .hero-title {
    white-space: normal;
  }
  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    padding-right: 0;
  }
  .footer-brand .footer-logo {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .safety-contact-row {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    white-space: normal;
  }
  .intro-badges {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WIDE SCREENS, modest container bump only, no font scaling
   ============================================================ */
@media (min-width: 1600px) {
  :root {
    --container: 1320px;
  }
  .hero-title {
    font-size: 3.6rem;
  }
}
@media (min-width: 2200px) {
  :root {
    --container: 1400px;
  }
}

/* ============================================================
   STATS, Colour Card Version (Idea 3)
   Replaces the old .stats block entirely
   ============================================================ */
.stats {
  position: relative;
  padding: 6rem 0;
  background: var(--off-white);
  overflow: hidden;
}
.stats-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.stats-text {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.stat-item {
  background: var(--stat-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.2rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--speed) var(--ease);
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  background: var(--stat-color);
  border-color: transparent;
}
.stat-item:hover .stat-value,
.stat-item:hover .stat-label {
  color: var(--white);
}
.stat-item::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 0.8rem;
}
.stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}
.stats-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--grey-500);
  font-weight: 500;
}
.stats-footnote strong {
  color: var(--teal);
  font-weight: 700;
}

/* Remove old dark-mode stat elements */
.stats-gradient {
  display: none;
}
.stat-bar {
  display: none;
}

/* ============================================================
   SAFETY HUB, Blue Ops Version (Idea 5)
   Replaces the old .safety-hub block entirely
   ============================================================ */
.safety-hub {
  position: relative;
  padding: 6rem 0;
  background: #060d18;
  text-align: center;
  overflow: hidden;
}
.safety-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 110%,
    rgba(21, 101, 192, 0.2) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.safety-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue-deep) 30%,
    var(--blue-deep) 70%,
    transparent
  );
  opacity: 0.5;
  z-index: 3;
}
.safety-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
@keyframes radarPing {
  0% {
    r: 15;
    opacity: 0.6;
    stroke-width: 1.5;
  }
  100% {
    r: 260;
    opacity: 0;
    stroke-width: 0.3;
  }
}
@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.radar-ping {
  fill: none;
  stroke: rgba(21, 101, 192, 0.9);
  animation: radarPing 5s ease-out infinite;
}
.radar-sweep {
  animation: radarSweep 8s linear infinite;
  transform-origin: 300px 300px;
}

@keyframes safetyBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
.safety-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b9fe4;
  border: 1px solid rgba(21, 101, 192, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.safety-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: safetyBlink 1.2s ease-in-out infinite;
}
.safety-hub .section-sub {
  color: rgba(255, 255, 255, 0.4);
}
.safety-content {
  max-width: 600px;
  margin: 0 auto;
}
.safety-contact-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.safety-contact-card {
  background: rgba(21, 101, 192, 0.07);
  border: 1px solid rgba(21, 101, 192, 0.18);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: all var(--speed) var(--ease);
  min-width: 200px;
}
.safety-contact-card:hover {
  background: rgba(21, 101, 192, 0.13);
  border-color: rgba(21, 101, 192, 0.35);
}
.safety-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.safety-card-icon svg {
  width: 18px;
  height: 18px;
  color: #5b9fe4;
}
.safety-contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.safety-contact-number {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--speed) var(--ease);
}
.safety-contact-number:hover {
  color: #5b9fe4;
}
.btn-safety {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  background: var(--blue-deep);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}
.btn-safety:hover {
  background: var(--white);
  color: var(--orange);
}
.btn-safety:hover svg {
  color: var(--orange);
}
.btn-safety svg {
  width: 19px;
  height: 19px;
}

@media (prefers-reduced-motion: reduce) {
  .radar-ping,
  .radar-sweep,
  .safety-tag-dot {
    animation: none;
  }
  .safety-tag-dot {
    opacity: 1;
  }
}

/* ============================================================
   NEWS, Coloured Badges + Gradient Tint (Idea 6)
   Only additions; the base .news-card styles stay intact
   ============================================================ */

/* Coloured category badges */
.news-cat--orange {
  background: var(--orange);
  color: var(--white);
}
.news-cat--teal {
  background: var(--teal);
  color: var(--white);
}
.news-cat--green {
  background: var(--green-bright);
  color: var(--white);
}
.news-cat--pink {
  background: var(--pink);
  color: var(--white);
}
.news-cat--blue {
  background: var(--blue-deep);
  color: var(--white);
}

/* Keep badge above the image */
.news-cat {
  z-index: 2;
}

/* ----- Extra breathing room above the grid + hover hint ----- */
.news .section-header {
  margin-bottom: 1.25rem;
}
.news-hover-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0 auto 3rem;
}
.news-hover-hint svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}
@media (hover: none) {
  .news-hover-hint {
    display: none;
  }
}

/* ----- Hover-reveal cover ----- */
.news-card {
  position: relative;
}
.news-card-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.6rem;
  color: var(--white);
  transition: transform 1.5s var(--ease-out);
  will-change: transform;
}
.news-card-cover--orange {
  background: var(--orange);
}
.news-card-cover--teal {
  background: var(--teal);
}
.news-card-cover--green {
  background: var(--green-bright);
}
.news-card-cover--pink {
  background: var(--pink);
}
.news-card-cover--blue {
  background: var(--blue-deep);
}
.news-card-cover-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 1.1rem;
}
.news-card-cover-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  stroke-width: 1.5;
}
.news-card-cover-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--white);
  max-width: 34ch;
  text-wrap: balance;
}

/* Reveal on hover/focus-within, or when JS has locked the card open */
.news-card:hover .news-card-cover,
.news-card:focus-within .news-card-cover,
.news-card.is-revealed .news-card-cover {
  transform: translateY(-100%);
}

/* On touch / small screens, keep both readable, cover slides off automatically isn't possible, so reduce its height */
@media (hover: none) {
  .news-card-cover {
    position: relative;
    inset: auto;
    padding: 1.5rem 1.2rem;
  }
}
/* Mobile: re-enable the sliding cover so tap-to-reveal works */
@media (max-width: 768px) {
  .news-hover-hint {
    display: flex;
  }
  .news-card-cover {
    position: absolute;
    inset: 0;
    padding: 2rem 1.6rem;
  }
}

/* ============================================================
   SITE LOADER, Crane Lift animation
   Lines are solid (no transparency) for clear visibility.
   ============================================================ */
.site-loader {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 9999;
  background: #0a1a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Internal page navigations skip the loader without it flashing into view. */
html.no-loader .site-loader { display: none !important; }
/* Mobile: skip the loader entirely. Site content shows immediately. */
@media (max-width: 768px) {
  .site-loader { display: none !important; }
}

.crane-stage {
  position: relative;
  width: 600px;
  height: 420px;
}

@keyframes craneArmSwing   { 0% { transform: rotate(40deg); }  100% { transform: rotate(0deg); } }
@keyframes craneCableDrop  { 0% { height: 0; } 100% { height: 140px; } }
@keyframes craneTextAttach { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes craneSubIn      { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes craneDetach     { 0% { opacity: 1; height: 140px; } 100% { opacity: 0; height: 0; } }
@keyframes craneBarIn      { 0% { width: 0; } 100% { width: 30px; } }
@keyframes craneFadeIn     { 0% { opacity: 0; } 100% { opacity: 1; } }

.crane-mast {
  position: absolute;
  right: 160px;
  bottom: 0;
  width: 2px;
  height: 380px;
  background: #ffffff;
}
.crane-base {
  position: absolute;
  right: 140px;
  bottom: 0;
  width: 42px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px 2px 0 0;
}

.crane-arm-wrap {
  position: absolute;
  right: 161px;
  top: 40px;
  transform-origin: 100% 0;   /* pivot at mast end, left tip falls into place */
  animation: craneArmSwing 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.crane-arm {
  width: 320px;
  height: 2px;
  background: #ffffff;
  position: relative;
}
.crane-arm::before {
  content: "";
  position: absolute;
  right: -1px;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #ffffff;
}

.crane-cab {
  position: absolute;
  right: 148px;
  top: 40px;
  width: 18px;
  height: 22px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0;
  animation: craneFadeIn 0.4s ease-out 0.3s forwards;
}

.crane-cable {
  position: absolute;
  left: 118px;                 /* aligns with the arm tip (free end) */
  top: 42px;
  width: 2px;
  background: #ffffff;
  height: 0;
  animation: craneCableDrop 1.2s ease-out 1.8s forwards,
             craneDetach    0.8s ease-in  4.5s forwards;
}

.crane-payload {
  position: absolute;
  top: 195px;
  left: 119px;                 /* same x as the cable, centered via translate */
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.crane-name {
  font-family: var(--font-display, "Manrope"), sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  color: #ffffff;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: craneTextAttach 0.8s ease-out 3.0s forwards;
}
.crane-sub {
  font-family: var(--font-body, "Manrope"), sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.55rem;
  opacity: 0;
  animation: craneSubIn 0.6s ease-out 3.8s forwards;
}

.crane-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
}

.crane-bar {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  opacity: 0;
  animation: craneFadeIn 0.4s ease-out 4.0s forwards;
}
.crane-seg {
  height: 3px;
  width: 0;
  border-radius: 2px;
}
.cs1 { background: var(--teal);         animation: craneBarIn 0.4s ease-out 4.2s forwards; }
.cs2 { background: var(--green-bright); animation: craneBarIn 0.4s ease-out 4.4s forwards; }
.cs3 { background: var(--orange);       animation: craneBarIn 0.4s ease-out 4.6s forwards; }
.cs4 { background: var(--blue-deep);    animation: craneBarIn 0.4s ease-out 4.8s forwards; }

@media (prefers-reduced-motion: reduce) {
  .crane-arm-wrap,
  .crane-cab,
  .crane-cable,
  .crane-name,
  .crane-sub,
  .crane-bar,
  .crane-seg {
    animation: none !important;
    opacity: 1 !important;
  }
  .crane-arm-wrap { transform: rotate(0deg); }
  .crane-cable    { height: 140px; }
  .crane-seg      { width: 30px; }
}
