/* ================================================================
   MORETON BAY AIRCONDITIONING — styles.css
   Theme: Engineering Authority
   Fonts: Big Shoulders Display (headings) · Space Mono (labels/data) · Barlow (body)
   ================================================================ */

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

/* ----------------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  --navy-deep:    #0a1628;
  --navy-mid:     #1e3a5f;
  --navy-card:    #0d1d35;
  --navy-border:  rgba(255, 255, 255, 0.08);
  --blue-accent:  #38ace1;
  --blue-light:   #7cc8e8;
  --blue-dim:     #1e8ab5;
  --blue-glow:    rgba(56, 172, 225, 0.15);
  --orange-accent: #f15922;
  --orange-dim:   #c94a1a;
  --orange-glow:  rgba(241, 89, 34, 0.18);
  --white:        #ffffff;
  --off-white:    #f0f4f8;
  --text-light:   #b0c4d8;
  --text-muted:   #7a9cbc;
  --error:        #ef5350;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'Barlow', sans-serif;

  --section-py:   120px;
  --container:    1320px;
  --gap:          24px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius:       2px;
}

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

/* ----------------------------------------------------------------
   Utility
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* Dot grid background texture */
.dot-grid {
  background-image: radial-gradient(circle, rgba(56, 172, 225, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Section Labels — Space Mono with code comment prefix */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '// ';
  opacity: 0.5;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-top: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* Rule separator */
.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--navy-border);
}
.rule-accent { background: var(--blue-accent); opacity: 0.3; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-accent);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--blue-accent);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--blue-dim);
  border-color: var(--blue-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(56, 172, 225, 0.35);
}
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange-accent);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--orange-accent);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-orange:hover {
  background: var(--orange-dim);
  border-color: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(241, 89, 34, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--white);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.30s; }
.stagger-6 { transition-delay: 0.36s; }
.stagger-7  { transition-delay: 0.42s; }
.stagger-8  { transition-delay: 0.48s; }
.stagger-9  { transition-delay: 0.54s; }
.stagger-10 { transition-delay: 0.60s; }

/* ================================================================
   NAVIGATION
   ================================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  min-height: 56px;
}
/* Scroll progress bar */
#nav-progress {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--blue-accent);
  transition: width 0.1s linear;
  z-index: 1001;
}
#nav.scrolled {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
/* Banner logo — full-width, sets the height of #nav */
.nav-logo {
  display: block;
  line-height: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
/* Nav links float over the left side of the banner */
.nav-inner {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 var(--gap);
}
.nav-logo .logo-accent { color: var(--blue-accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blue-accent);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-accent);
  border: 1px solid var(--blue-accent);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-cta-btn:hover { background: var(--blue-accent); color: var(--white); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  margin-left: auto;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5rem);
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
  line-height: 1.05;
  transition: color 0.2s;
  padding: 6px 0;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile-sub {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-mobile-sub a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-mobile-sub a:hover { color: var(--blue-accent); }
.nav-mobile-sub span { color: rgba(255,255,255,0.15); font-size: 0.8rem; }
.nav-mobile-close {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.nav-mobile-close:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/commercial-service-contracts.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.10) 0%,
    rgba(10,22,40,0.42) 45%,
    rgba(10,22,40,0.82) 100%
  );
  z-index: 1;
}
/* Dot grid over hero */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(56, 172, 225,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin: 0 0 0 auto;
  padding: 0 var(--gap) 80px;
  width: 52%;
  padding-top: clamp(170px, 15vw, 280px);
}
/* Metadata strip above H1 */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  opacity: 0;
  animation: aFadeIn 0.6s 0.3s ease forwards;
}
.hero-meta-item {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-meta-item.accent { color: var(--blue-accent); }
.hero-meta-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}
/* The H1 */
h1.hero-tagline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  max-width: 100%;
  margin: 0 0 20px;
  opacity: 0;
  animation: aReveal 0.9s 0.5s var(--ease-out) forwards;
}
.hero-sub-block {
  max-width: 520px;
  opacity: 0;
  animation: aFadeIn 0.7s 0.9s ease forwards;
}
.hero-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  opacity: 0;
  animation: aFadeIn 0.7s 1.25s ease forwards;
}
/* Right side: vertical scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  right: var(--gap);
  bottom: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: aFadeIn 0.8s 1.6s ease forwards;
}
.hero-scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}
.hero-scroll-track {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero-scroll-track::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue-accent);
  animation: scrollDot 2.2s 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -100%; opacity: 1; }
  80%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes aReveal {
  from { opacity: 0; transform: translateY(32px) skewY(1deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
@keyframes aFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
   TRUST BAR — large Space Mono numbers
   ================================================================ */
#trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(56, 172, 225,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(56, 172, 225,0.05); }
.trust-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--blue-accent);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(56, 172, 225,0.35);
}
.trust-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ================================================================
   SERVICES GRID — Full-bleed image mosaic
   ================================================================ */
#services {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
}
#services .section-header { padding: 0; }
/* Mosaic grid: 1px blue gap lines act as borders */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(56, 172, 225,0.2);
  border: 1px solid rgba(56, 172, 225,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--navy-card);
  transition: flex 0.3s ease;
}
.svc-card-bg {
  position: absolute;
  inset: 0;
}
.svc-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s ease;
  filter: brightness(0.5) saturate(0.6);
}
.svc-card:hover .svc-card-bg img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(0.8);
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.2) 0%,
    rgba(10,22,40,0.5) 40%,
    rgba(10,22,40,0.95) 100%
  );
  transition: background 0.4s ease;
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.1) 0%,
    rgba(10,22,40,0.3) 40%,
    rgba(10,22,40,0.92) 100%
  );
}
.svc-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.svc-card-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue-accent);
  margin-bottom: 6px;
}
.svc-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
}
.svc-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s ease, margin-top 0.3s ease;
}
.svc-card:hover .svc-card-desc {
  max-height: 80px;
  opacity: 1;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s 0.1s ease, transform 0.3s 0.1s ease, gap 0.2s ease;
}
.svc-card:hover .svc-card-link {
  opacity: 1;
  transform: translateY(0);
}
.svc-card-link:hover { gap: 10px; color: var(--blue-light); }
.svc-card-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
#why-us {
  padding: var(--section-py) 0;
  background: var(--navy-mid);
  position: relative;
}
#why-us .dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(56, 172, 225,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.why-cell {
  padding: 56px 52px;
  border-right: 1px solid rgba(56, 172, 225,0.1);
  border-bottom: 1px solid rgba(56, 172, 225,0.1);
  background: rgba(10,22,40,0.45);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.why-cell:hover { background: rgba(10,22,40,0.7); }
.why-cell:nth-child(2n)  { border-right: none; }
.why-cell:nth-child(n+3) { border-bottom: none; }
/* Large decorative number in corner */
.why-cell-bg-num {
  position: absolute;
  bottom: -20px; right: -8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9rem;
  line-height: 1;
  color: rgba(56, 172, 225,0.04);
  user-select: none;
  pointer-events: none;
}
.why-cell .section-label { margin-bottom: 20px; }
.why-cell h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}
.why-cell p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.78;
  max-width: 420px;
}

/* ================================================================
   ABOUT SNAPSHOT
   ================================================================ */
#about-snapshot {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  position: relative;
}
.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-snap-text .section-heading { margin-bottom: 24px; }
.about-snap-text p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-snap-text p:last-of-type { margin-bottom: 40px; }
/* Accent bar left */
.about-snap-text-inner {
  border-left: 3px solid var(--blue-accent);
  padding-left: 28px;
  margin-top: 8px;
}
.about-snap-img { position: relative; }
.about-snap-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
/* Corner accent brackets on image */
.img-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--blue-accent);
  border-style: solid;
  opacity: 0.6;
}
.img-corner.tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.img-corner.tr { top: -8px; right: -8px; border-width: 2px 2px 0 0; }
.img-corner.bl { bottom: -8px; left: -8px; border-width: 0 0 2px 2px; }
.img-corner.br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
.about-snap-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10,22,40,0.9);
  border: 1px solid var(--blue-accent);
  padding: 16px 20px;
  backdrop-filter: blur(12px);
}
.about-snap-badge strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--blue-accent);
  line-height: 1;
  text-shadow: 0 0 20px rgba(56, 172, 225,0.4);
}
.about-snap-badge span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--navy-mid);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.testi-card {
  background: var(--navy-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.testi-card:hover { background: rgba(15,30,53,0.9); }
/* Large opening quote */
.testi-qdeco {
  position: absolute;
  top: -8px; left: 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11rem;
  line-height: 1;
  color: rgba(56, 172, 225,0.06);
  user-select: none;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--blue-accent);
}
.testi-stars svg { width: 14px; height: 14px; fill: currentColor; }
.testi-quote {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 28px;
}
.testi-rule { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 20px; }
.testi-author strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.testi-author span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ================================================================
   CONTACT STRIP — hard 50/50 split
   ================================================================ */
#contact-strip {
  position: relative;
  overflow: hidden;
}
.cstrip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cstrip-left {
  background: var(--navy-deep);
  padding: 72px var(--gap) 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc((100vw - var(--container)) / 2 + var(--gap));
  min-height: 280px;
  position: relative;
}
/* Dot grid texture on dark side */
.cstrip-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(56, 172, 225,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cstrip-left-inner { position: relative; z-index: 1; }
.cstrip-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  max-width: 460px;
}
.cstrip-right {
  background: var(--blue-accent);
  padding: 72px var(--gap) 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: calc((100vw - var(--container)) / 2 + var(--gap));
  position: relative;
  overflow: hidden;
}
.cstrip-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cstrip-right-inner { position: relative; z-index: 1; }
.cstrip-phone-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.cstrip-phone {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 28px;
}

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(56, 172, 225,0.12);
  padding: 72px 0 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 250px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 20px;
}
.footer-col h4::before { content: '// '; opacity: 0.5; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}
.footer-contact-row svg {
  width: 14px; height: 14px;
  color: var(--blue-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-row a { transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ================================================================
   FLOATING CTA — angular clipped corner
   ================================================================ */
#float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-accent);
  padding: 13px 22px;
  clip-path: polygon(12px 0%, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 4px 20px rgba(56, 172, 225,0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.25s ease;
}
#float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(56, 172, 225,0.55);
}
#float-cta svg { width: 14px; height: 14px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--navy-mid);
  padding: clamp(180px, 20vw, 320px) 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(56, 172, 225,0.12);
}
.page-hero .dot-grid {
  position: absolute; inset: 0;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; margin-left: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  opacity: 0.7;
}
.breadcrumb a { color: var(--blue-accent); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 10px; height: 10px; opacity: 0.5; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 0.90;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.svc-anchor-nav {
  background: var(--navy-card);
  border-bottom: 1px solid rgba(56, 172, 225,0.1);
  position: sticky;
  top: 55px;
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-anchor-nav::-webkit-scrollbar { display: none; }
.anchor-inner {
  display: flex;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  min-width: max-content;
}
.anchor-inner a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 18px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.anchor-inner a:hover { color: var(--white); }
.anchor-inner a.active-anchor { color: var(--blue-accent); border-bottom-color: var(--blue-accent); }

.svc-detail-section {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.svc-detail-section:nth-child(even) { background: rgba(30,58,95,0.18); }
.svc-detail-section:last-child { border-bottom: none; }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-detail-img { position: relative; }
.svc-detail-img img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
/* Corner brackets on service images */
.svc-img-bracket {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--blue-accent);
  border-style: solid;
  opacity: 0.4;
}
.svc-img-bracket.tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.svc-img-bracket.tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; }
.svc-img-bracket.bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; }
.svc-img-bracket.br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }
.svc-detail-content .section-label { margin-bottom: 10px; }
.svc-detail-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
}
.svc-detail-content p {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 16px;
}
.svc-detail-content p:last-of-type { margin-bottom: 36px; }

.svc-page-cta {
  background: var(--navy-mid);
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid rgba(56, 172, 225,0.1);
}
.svc-page-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}
.svc-page-cta p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 32px; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-story-section {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
}
.about-story-section > .container > p,
.about-story-body p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 820px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(56, 172, 225,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}
.astat {
  padding: 36px 28px;
  border-right: 1px solid rgba(56, 172, 225,0.1);
  background: rgba(30,58,95,0.25);
  transition: background 0.2s;
}
.astat:last-child { border-right: none; }
.astat:hover { background: rgba(30,58,95,0.45); }
.astat strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--blue-accent);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(56, 172, 225,0.3);
}
.astat span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.directors-section {
  background: var(--navy-mid);
  padding: var(--section-py) 0;
}
.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(56, 172, 225,0.15);
  border: 1px solid rgba(56, 172, 225,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.director-card {
  background: var(--navy-card);
  transition: background 0.25s;
}
.director-card:hover { background: rgba(13,29,53,0.95); }
.director-photo {
  height: 280px; overflow: hidden; position: relative;
}
.director-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(30%) brightness(0.8);
  transition: filter 0.4s ease;
}
.director-card:hover .director-photo img { filter: grayscale(0%) brightness(0.9); }
.director-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy-card));
}
.director-body { padding: 24px 28px 32px; }
.director-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.director-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 18px;
}
.director-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.director-body p + p { margin-top: 12px; }

.values-section {
  background: var(--navy-deep);
  padding: var(--section-py) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(56, 172, 225,0.12);
  border: 1px solid rgba(56, 172, 225,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.value-card {
  background: var(--navy-card);
  padding: 44px 36px;
  text-align: center;
  transition: background 0.25s;
}
.value-card:hover { background: rgba(13,29,53,0.95); }
.value-icon {
  width: 60px; height: 60px;
  background: rgba(56, 172, 225,0.1);
  border: 1px solid rgba(56, 172, 225,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-accent);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.72; }

.safety-section {
  background: var(--navy-mid);
  padding: var(--section-py) 0;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.safety-img {
  position: relative;
  background: #0a1628;
  border-radius: var(--radius);
}
.safety-img img {
  width: 100%; height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}
.safety-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.safety-content p {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 16px;
}
.safety-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.safety-list-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.safety-list-item svg { width: 16px; height: 16px; color: var(--blue-accent); flex-shrink: 0; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
/* Form wrapper — left accent line only */
.contact-form-wrap { }
.contact-form-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-form-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
}
/* Form fields with bottom-border only */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-group label .req { color: var(--blue-accent); margin-left: 3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364b5f6' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
  cursor: pointer;
}
.form-group select option { background: var(--navy-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--blue-accent);
}
.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-bottom-color: var(--error);
}
.field-error { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--error); margin-top: 5px; display: none; }
.field-error.show { display: block; }
.form-footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.form-footer-row .btn-primary { padding: 14px 32px; }
.form-privacy { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.08em; color: var(--text-muted); max-width: 200px; line-height: 1.6; }
.form-success-panel { display: none; padding: 60px 0; text-align: center; }
.form-success-panel.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--blue-accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  margin: 0 auto 24px;
}
.success-icon svg { width: 30px; height: 30px; }
.form-success-panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 14px;
}
.form-success-panel p { font-size: 0.94rem; color: var(--text-light); line-height: 1.7; }

/* Contact details card */
.contact-details-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.contact-details-header {
  background: var(--navy-mid);
  padding: 24px 26px;
  border-bottom: 1px solid rgba(56, 172, 225,0.1);
}
.contact-details-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.contact-details-header p {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 6px;
}
.contact-details-body { padding: 24px 26px; }
.cdetail { display: flex; gap: 14px; margin-bottom: 20px; }
.cdetail:last-child { margin-bottom: 0; }
.cdetail-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(56, 172, 225,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  flex-shrink: 0;
}
.cdetail-icon svg { width: 16px; height: 16px; }
.cdetail-text strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.cdetail-text span,
.cdetail-text a { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; }
.cdetail-text a { display: block; transition: color 0.2s; }
.cdetail-text a:hover { color: var(--white); }
.contact-details-map {
  height: 160px;
  background: rgba(10,22,40,0.8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.contact-details-map svg { width: 26px; height: 26px; color: var(--blue-accent); opacity: 0.4; }
.contact-details-map span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ================================================================
   RESPONSIVE — TABLET DOWN
   ================================================================ */
@media (max-width: 1023px) {
  :root { --section-py: 88px; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-snap-grid      { grid-template-columns: 1fr; gap: 56px; }
  .about-snap-img       { order: -1; }
  .about-snap-img img   { height: 360px; }
  .contact-grid         { grid-template-columns: 1fr; }
  .contact-details-card { position: static; }
  .svc-detail-grid      { grid-template-columns: 1fr; gap: 48px; }
  .directors-grid       { grid-template-columns: 1fr; max-width: 420px; }
  .about-stats-row      { grid-template-columns: 1fr 1fr; }
  .safety-grid          { grid-template-columns: 1fr; gap: 48px; }
  .values-grid          { grid-template-columns: 1fr 1fr; }
  .testi-grid           { grid-template-columns: 1fr; }
  .why-grid             { grid-template-columns: 1fr; }
  .why-cell             { border-right: none; }
  .why-cell:nth-child(n+3) { border-bottom: 1px solid rgba(56, 172, 225,0.1); }
  .why-cell:last-child  { border-bottom: none; }
  .cstrip-grid          { grid-template-columns: 1fr; }
  .cstrip-left, .cstrip-right {
    padding-left: var(--gap);
    padding-right: var(--gap);
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 767px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { width: 100%; margin: 0; padding-bottom: 72px; }
  .hero-scroll-indicator { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 24px 18px; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item:nth-child(2),
  .trust-item:nth-child(4) { border-right: none; }
  .services-grid        { grid-template-columns: 1fr; }
  .svc-card             { height: 320px; }
  /* Keep desc visible on mobile (no hover) */
  .svc-card-desc        { max-height: none; opacity: 1; }
  .svc-card-link        { opacity: 1; transform: none; }
  .why-grid             { grid-template-columns: 1fr; }
  .testi-grid           { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr; }
  .about-stats-row      { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .form-footer-row      { flex-direction: column; align-items: flex-start; }
  #float-cta            { bottom: 16px; right: 16px; padding: 11px 18px; font-size: 0.6rem; }
  .page-hero            { padding-top: 130px; padding-bottom: 60px; }
  .cstrip-left h2       { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .cstrip-phone         { font-size: clamp(2rem, 7vw, 3rem); }
  .why-cell             { padding: 36px 28px; }
}

@media (max-width: 479px) {
  .trust-grid           { grid-template-columns: 1fr; }
  .trust-item           { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .trust-item:last-child { border-bottom: none !important; }
  .about-stats-row      { grid-template-columns: 1fr; }
  .directors-grid       { grid-template-columns: 1fr; }
}

/* ================================================================
   HERO VIDEO SUPPORT
   ================================================================ */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* When video loads it sits on top of background-image */
#hero .hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ================================================================
   PARTNER BADGE — used on Graphonyx & Midea service sections
   ================================================================ */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(241, 89, 34, 0.08);
  border: 1px solid rgba(241, 89, 34, 0.35);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.partner-badge-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-accent);
}
.partner-badge-link {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 1px solid rgba(241, 89, 34, 0.25);
  padding-left: 14px;
  transition: color 0.2s;
}
.partner-badge-link:hover { color: var(--orange-accent); }

/* Accent colour variant for orange-themed sections */
.svc-detail-section.partner-section { border-left: 3px solid var(--orange-accent); }
.svc-detail-section.partner-section .svc-detail-content h2 { color: var(--white); }
.svc-detail-section.partner-section .section-label { color: var(--orange-accent); }

/* ================================================================
   GOOGLE MAPS EMBED — contact page
   ================================================================ */
.contact-details-map {
  height: 220px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.contact-details-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.65) brightness(0.9);
  transition: filter 0.3s ease;
}
.contact-details-map:hover iframe {
  filter: invert(85%) hue-rotate(180deg) saturate(0.8) brightness(0.95);
}

/* ================================================================
   COUNT-UP NUMBER ANIMATION
   ================================================================ */
.count-num { display: inline; }

/* ================================================================
   FOOTER LINKEDIN LINK
   ================================================================ */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-social a:hover { color: var(--blue-accent); border-color: var(--blue-accent); }

/* ================================================================
   HERO TAGLINE ORANGE ACCENT WORD
   ================================================================ */
.hero-tagline .accent-word { color: var(--orange-accent); }

/* ================================================================
   SERVICES GRID — ensure 10 cards wrap nicely (5 per row or 2x5)
   ================================================================ */
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ================================================================
   PREFERS-REDUCED-MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
