/* ============================================
   SWIFT REMEDIATION & CONTRACTING — LIGHT/NAVY THEME
   ============================================ */

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

:root {
  --brand-orange: #f97316;
  --brand-orange-dark: #ea6a08;
  --brand-orange-glow: rgba(249,115,22,0.25);
  --brand-orange-subtle: rgba(249,115,22,0.10);
  --brand-blue: #2563eb;
  /* Navy palette — used for dark structural sections */
  --navy-deep: #09152a;
  --navy-mid: #0d1e38;
  --navy-card: #132540;
  /* Light backgrounds — used for content sections */
  --bg-void: #f0f4f8;
  --bg-deep: #e4eaf3;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-border: rgba(15,35,70,0.12);
  --bg-border-hover: rgba(249,115,22,0.5);
  /* Text — dark on light */
  --text-primary: #0a1628;
  --text-secondary: #2d4a6e;
  --text-muted: #6b8aab;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.16);
  --shadow-orange: 0 8px 32px rgba(249,115,22,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy-deep);
  border-bottom: 1px solid var(--bg-border);
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--brand-orange); }
.topbar-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}
.badge-dot.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--brand-orange-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(9,21,42,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(9,21,42,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-link.active { color: var(--brand-orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown li a:hover, .dropdown li a.active {
  color: var(--brand-orange);
  background: var(--brand-orange-subtle);
  padding-left: 18px;
}

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-lg { padding: 14px 30px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.45);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--bg-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ── SECTION BASE ── */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.light { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.accent { color: var(--brand-orange); }
.gradient-text {
  background: linear-gradient(135deg, var(--brand-orange), #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,10,12,0.92) 0%,
    rgba(8,10,12,0.75) 50%,
    rgba(8,10,12,0.55) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.8; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120vh) scale(0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 720px;
  min-width: 80%
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: #e4eaf3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 17px;
  color: rgba(241,245,249,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  flex: 1;
  min-width: 100px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-orange);
}
.stat-label {
  font-size: 12px;
  color: #E4EAF3;
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--bg-border);
  flex-shrink: 0;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 2px;
  animation: scroll-down 1.5s ease-in-out infinite;
}
@keyframes scroll-down { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }

/* ── ANIMATIONS ── */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  animation: fade-up 0.7s forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--bg-deep);
  transition: background var(--transition);
}
.trust-item:hover { background: var(--bg-card); }
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.trust-item h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── ABOUT INTRO ── */
.about-intro { background: var(--bg-void); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-intro-text .section-label { display: inline-block; margin-bottom: 16px; }
.about-intro-text .section-title { margin-bottom: 20px; }
.about-intro-text .btn { margin-top: 12px; }

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.image-frame img {
  border-radius: var(--radius-xl);
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
.image-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.image-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.image-badge span { font-size: 12px; color: var(--text-muted); }
.image-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, var(--brand-orange), transparent 60%);
  opacity: 0.2;
  z-index: 0;
}

/* ── SERVICES ── */
.services-section { background: var(--bg-deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--bg-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 40px rgba(249,115,22,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: rgba(249,115,22,0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(249,115,22,0.12); }
.service-icon {
  width: 58px;
  height: 58px;
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-orange);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #3a1d0d 50%, var(--navy-mid) 100%);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(249,115,22,0.02) 40px,
    rgba(249,115,22,0.02) 80px
  );
}
.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner-text { flex: 1; min-width: 300px; }
.cta-banner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 12px 0;
}
.cta-banner-text p { color: var(--text-secondary); max-width: 480px; }
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ── PILLARS / WHY US ── */
.pillars-section { background: var(--bg-void); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.pillar-card:hover {
  border-color: var(--bg-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.accent-bg {
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--brand-orange);
}
.pillar-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.pillar-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── BLOG ── */
.blog-section { background: var(--bg-deep); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--bg-border-hover);
}
.blog-card-image {
  height: 200px;
  position: relative;
}
.mould-bg { background: url('../images/blog_mould.png') center/cover no-repeat; }
.structural-bg { background: url('../images/blog_structural.png') center/cover no-repeat; }
.excavation-bg { background: url('../images/blog_excavation.png') center/cover no-repeat; }
.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}
.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-body { padding: 24px; }
.blog-card-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-orange);
  transition: gap var(--transition);
}
.blog-link:hover { gap: 10px; }

/* ── AREAS SECTION ── */
.areas-section { background: var(--bg-void); }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.areas-text .section-label { display: inline-block; margin-bottom: 16px; }
.areas-text .section-title { margin-bottom: 16px; }
.areas-text p { color: var(--text-secondary); margin-bottom: 28px; }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.area-tag {
  padding: 8px 20px;
  border: 1px solid var(--bg-border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: all var(--transition);
}
.area-tag:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: var(--brand-orange-subtle);
}
.map-placeholder {
  position: relative;
  height: 380px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-pin-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249,115,22,0.1) 0%, transparent 70%);
  animation: pulse-map 3s ease-in-out infinite;
}
@keyframes pulse-map {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.map-content {
  text-align: center;
  color: var(--brand-orange);
  position: relative;
  z-index: 1;
}
.map-content svg { margin: 0 auto 12px; }
.map-content p { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text-primary); }
.map-content span { font-size: 13px; color: var(--text-muted); }

/* ── FOOTER ── */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { padding: 80px 0 48px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--brand-orange-subtle);
  border-color: rgba(249,115,22,0.3);
  color: var(--brand-orange);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--brand-orange); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-orange); }
.contact-list a { color: var(--text-muted); transition: color var(--transition); }
.contact-list a:hover { color: var(--brand-orange); }
.footer-service-areas { margin-top: 20px; }
.footer-service-areas h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-areas a {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: 4px 10px;
  border-radius: 100px;
  transition: all var(--transition);
}
.footer-areas a:hover { color: var(--brand-orange); border-color: rgba(249,115,22,0.3); }
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #2e1c15 100%);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(249,115,22,0.015) 60px,
    rgba(249,115,22,0.015) 120px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand-orange); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

/* ── ABOUT PAGE ── */
.about-pillars { background: var(--bg-deep); }
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-pillar {
  background: var(--bg-deep);
  padding: 40px 36px;
  transition: background var(--transition);
}
.about-pillar:hover { background: var(--bg-card); }
.about-pillar h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-pillar h3 span {
  width: 28px;
  height: 28px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.about-pillar p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--bg-border-hover);
  transform: translateY(-3px);
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), transparent);
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--bg-void); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.contact-info p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.65; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: var(--bg-border-hover);
}
.contact-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-orange-subtle);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.contact-info-card a:hover { color: var(--brand-orange); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.contact-form-wrapper h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px var(--brand-orange-glow);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  margin-top: 16px;
  color: #4ade80;
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .image-frame img { height: 380px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-pillars-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .areas-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .topbar-badge { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9,21,42,0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 88;
    padding: 80px 24px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 20px; padding: 12px 24px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 4px 16px; }
  .hero-content { max-width: 100%; padding: 100px 24px 60px; min-width: 80%; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-top-inner { grid-template-columns: 1fr; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { text-align: center; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   DARK SECTION OVERRIDES
   Topbar, navbar, trust strip, CTA banner, page hero,
   and footer stay dark navy — override light-theme vars
   ══════════════════════════════════════════════════ */

/* ── Topbar ── */
.topbar .topbar-link { color: rgba(203,213,225,0.8); }
.topbar .topbar-link:hover { color: var(--brand-orange); }
.topbar .topbar-badge { color: rgba(148,163,184,0.65); }

/* ── Navbar ── */
.nav-link { color: rgba(203,213,225,0.85); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--brand-orange); background: rgba(249,115,22,0.08); }
.dropdown { background: var(--navy-card); border-color: rgba(255,255,255,0.1); }
.dropdown li a { color: rgba(203,213,225,0.8); }
.dropdown li a:hover, .dropdown li a.active { color: var(--brand-orange); background: rgba(249,115,22,0.1); }
.btn-ghost { background: rgba(255,255,255,0.08); color: rgba(203,213,225,0.85); border-color: rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.25); }
.hamburger span { background: #fff; }

/* ── Trust strip ── */
.trust-section {
  background: var(--navy-mid);
  border-top-color: rgba(255,255,255,0.06);
  border-bottom-color: rgba(255,255,255,0.06);
}
.trust-grid { background: rgba(255,255,255,0.06); }
.trust-item { background: var(--navy-mid); }
.trust-item:hover { background: var(--navy-card); }
.trust-item h3 { color: #f8fafc; }
.trust-item p { color: rgba(148,163,184,0.8); }

/* ── CTA Banner ── */
.cta-banner-text h2 { color: #f8fafc; }
.cta-banner-text p { color: rgba(203,213,225,0.8); }

/* ── Page Hero (inner service pages) ── */
.page-hero h1 { color: #f8fafc; }
.page-hero p { color: rgba(203,213,225,0.85); }
.breadcrumb { color: rgba(148,163,184,0.7); }
.breadcrumb a { color: rgba(148,163,184,0.7); }
.breadcrumb a:hover { color: var(--brand-orange); }

/* ── Footer ── */
.footer .footer-brand p { color: rgba(148,163,184,0.7); }
.footer .footer-col h4 { color: #f8fafc; }
.footer .footer-col ul li a { color: rgba(148,163,184,0.7); }
.footer .footer-col ul li a:hover { color: var(--brand-orange); }
.footer .contact-list li { color: rgba(148,163,184,0.7); }
.footer .contact-list a { color: rgba(148,163,184,0.7); }
.footer .contact-list a:hover { color: var(--brand-orange); }
.footer .contact-list svg { color: var(--brand-orange); }
.footer .footer-service-areas h5 { color: rgba(148,163,184,0.55); }
.footer .footer-areas a { color: rgba(148,163,184,0.7); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.footer .footer-areas a:hover { color: var(--brand-orange); border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.08); }
.footer .social-link { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); color: rgba(148,163,184,0.7); }
.footer .social-link:hover { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.3); color: var(--brand-orange); }
.footer .footer-bottom { border-top-color: rgba(255,255,255,0.07); }
.footer .footer-bottom p { color: rgba(148,163,184,0.5); }

/* ── Light section card adjustments ── */
.service-card { box-shadow: var(--shadow-sm); }
.service-card:hover { box-shadow: var(--shadow-md), 0 0 40px rgba(249,115,22,0.06); }
.pillar-card { box-shadow: var(--shadow-sm); }
.contact-form-wrapper { box-shadow: var(--shadow-md); }
.contact-info-card { box-shadow: var(--shadow-sm); }
.image-badge { background: #fff; box-shadow: var(--shadow-md); border-color: var(--bg-border); }
.image-badge strong { color: var(--text-primary); }
.image-badge span { color: var(--text-muted); }
.map-placeholder { box-shadow: var(--shadow-sm); }
.value-card { box-shadow: var(--shadow-sm); }

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* ── OUR WORK SECTION ── */
.work-section { background: var(--bg-deep); }

.work-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.work-slider-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.work-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.work-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}
.work-slide-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.work-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.work-slide:hover .work-slide-img img { transform: scale(1.06); }
.work-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 16px;
  background: linear-gradient(to top, rgba(5,8,14,0.88) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: scale(1.08);
}
.slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.slider-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--brand-orange);
}
.slider-dot:hover:not(.active) { background: var(--text-muted); }

/* ── SERVICE PAGE PHOTO ── */
.service-photo {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.service-photo:hover img { transform: scale(1.03); }

/* Work slider responsive */
@media (max-width: 1023px) {
  .work-slide { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 639px) {
  .work-slide { flex: 0 0 100%; }
  .slider-btn { display: none; }
}
