/* -------------------------------------------------------------------------- */
/* TERRAMETRICS PRIVATE LIMITED — MAIN STYLESHEET                              */
/* -------------------------------------------------------------------------- */

:root {
  --navy: #0F2A43;
  --navy-2: #173F5C;
  --navy-dark: #081726;
  --teal: #1C6E6B;
  --teal-2: #2E8C86;
  --green: #4FBE8D;
  --green-soft: #7FD3B8;
  --bg: #F5F8F7;
  --paper: #FFFFFF;
  --ink: #0F2A43;
  --ink-soft: #5B6B6E;
  --line: #DEE7E4;
  --card-bg: #FFFFFF;
  --glass-bg: rgba(245, 248, 247, 0.9);
  --shadow-sm: 0 2px 8px rgba(15, 42, 67, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 42, 67, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 42, 67, 0.16);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 0.8, 0.3, 1);
}

/* Dark Theme Overrides */
[data-theme="dark"] {
  --bg: #0A1622;
  --paper: #112233;
  --ink: #E2E8F0;
  --ink-soft: #94A3B8;
  --line: #1E3A52;
  --card-bg: #13273B;
  --glass-bg: rgba(10, 22, 34, 0.9);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  overflow-x: hidden;
}


h1, h2, h3, .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3 {
  color: #F8FAFC;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--teal);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* -------------------------------------------------------------------------- */
.custom-cursor-dot, .custom-cursor-ring, .sonar-ripple {
  display: none !important;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(79, 190, 141, 0.9);
  transition: opacity 0.3s ease;
  will-change: transform;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.2px solid var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  transition: width 0.22s ease-out, height 0.22s ease-out, background 0.22s ease-out, border-color 0.22s ease-out, opacity 0.3s ease;
  will-change: transform;
}

.custom-cursor-ring .crosshair {
  position: absolute;
  background: var(--teal);
  transition: background 0.22s ease;
}
.custom-cursor-ring .ch-top { top: -4px; left: 50%; width: 1px; height: 3.5px; transform: translateX(-50%); }
.custom-cursor-ring .ch-bottom { bottom: -4px; left: 50%; width: 1px; height: 3.5px; transform: translateX(-50%); }
.custom-cursor-ring .ch-left { left: -4px; top: 50%; width: 3.5px; height: 1px; transform: translateY(-50%); }
.custom-cursor-ring .ch-right { right: -4px; top: 50%; width: 3.5px; height: 1px; transform: translateY(-50%); }

.custom-cursor-ring.is-hovering {
  width: 30px;
  height: 30px;
  border-color: var(--green);
  background: rgba(79, 190, 141, 0.15);
  box-shadow: 0 0 12px rgba(79, 190, 141, 0.35);
}

.custom-cursor-ring.is-hovering .crosshair {
  background: var(--green);
}

.custom-cursor-ring.is-clicked {
  transform: translate(-50%, -50%) scale(0.7);
}

.sonar-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  border-radius: 50%;
  border: 2px solid var(--green);
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 1;
  animation: sonarPulse 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes sonarPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    border-color: var(--green);
    box-shadow: 0 0 12px var(--green);
  }
  50% {
    opacity: 0.6;
    border-color: var(--teal);
  }
  100% {
    width: 90px;
    height: 90px;
    opacity: 0;
    border-color: transparent;
    box-shadow: none;
  }
}

@media (pointer: coarse) {
  .custom-cursor-dot, .custom-cursor-ring, .sonar-ripple {
    display: none !important;
  }
}

/* ---------- TWO-GROUP SPACE-BETWEEN NAVIGATION BAR ---------- */
header.minimal-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 136px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 12px rgba(15, 42, 67, 0.04);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

[data-theme="dark"] header.minimal-header {
  background: rgba(10, 22, 34, 0.96);
  border-bottom-color: #1E3044;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Parent Navbar Container: 48px padding left/right, space-between layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0 48px;
  max-width: 1800px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* GROUP 1 (Far Left): Logo Unit Pinned to Left Edge */
.nav-group-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 124px;
  width: auto;
  max-width: 750px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.brand-logo-foot {
  height: 120px;
  width: auto;
  max-width: 500px;
  object-fit: contain;
  display: block;
}

/* GROUP 2 (Far Right): Nav Links + Icons + Request Survey Button Unit Pinned to Right Edge */
.nav-group-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Nav Links: 32px gap between each link, 32px gap after last link */
.navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 32px; /* 32px gap between last nav link and icons */
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #0F2A43;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

[data-theme="dark"] .nav-link {
  color: #E2E8F0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: #1C6E6B;
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #1C6E6B !important;
  font-weight: 700;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #4FBE8D !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Icons Section: 12px gap between icons, 24px gap after last icon */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 24px; /* 24px gap between last icon and Request Survey button */
}

.social-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #0F2A43;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-nav-btn svg {
  stroke: #0F2A43;
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .social-nav-btn {
  color: #E2E8F0;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .social-nav-btn svg {
  stroke: #E2E8F0;
}

.social-nav-btn:hover {
  color: #1C6E6B;
  border-color: #1C6E6B;
  background: rgba(28, 110, 107, 0.08);
  transform: translateY(-2px);
}

.theme-toggle-btn {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F2A43;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .theme-toggle-btn {
  color: #E2E8F0;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle-btn:hover {
  border-color: #1C6E6B;
  color: #1C6E6B;
}

.btn-minimal-primary {
  background: #1C6E6B !important;
  color: #FFFFFF !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(28, 110, 107, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-minimal-primary:hover {
  background: #4FBE8D !important;
  color: #081726 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 190, 141, 0.5);
}
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(79, 190, 141, 0.4);
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-pop-accent:hover {
  background: linear-gradient(135deg, #2E8C86 0%, #4FBE8D 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(79, 190, 141, 0.6);
}

/* Floating Scroll-Responsive WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer !important;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  transform: translate3d(0, 0, 0);
}

.whatsapp-float-btn:hover {
  background: #20BA5A;
  transform: translate3d(0, -3px, 0) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-float-btn .wa-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-float-btn .wa-icon svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.whatsapp-float-btn .wa-ping-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #00FF66;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: waPing 1.8s infinite;
}

@keyframes waPing {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--navy);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(28, 110, 107, 0.3);
}

.btn-accent {
  background: var(--teal);
  color: #ffffff;
}

.btn-accent:hover {
  background: var(--teal-2);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
}

[data-theme="dark"] .btn-outline {
  color: #E2E8F0;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-120%);
  transition: transform var(--transition-smooth);
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.is-active {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* Mobile Nav Drawer Socials */
.mobile-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.mobile-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(15, 42, 67, 0.05);
  border: 1px solid rgba(15, 42, 67, 0.12);
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-social-btn svg {
  stroke: var(--navy);
}

[data-theme="dark"] .mobile-socials {
  border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .mobile-social-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #F8FAFC !important;
}

[data-theme="dark"] .mobile-social-btn svg {
  stroke: #F8FAFC;
}

.mobile-social-btn:hover {
  background: rgba(28, 110, 107, 0.1);
  color: var(--teal) !important;
  border-color: var(--teal);
}

.mobile-social-btn:hover svg {
  stroke: var(--teal);
}

/* ---------- ROUTE TRACER (scroll progress) ---------- */
.route-tracer {
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  height: 56vh;
  width: 20px;
  z-index: 60;
  display: flex;
  justify-content: center;
}

.route-track {
  position: relative;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(var(--ink-soft) 60%, transparent 0%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
  opacity: 0.35;
}

.route-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(var(--teal), var(--green));
  transition: height 0.08s linear;
}

.route-pin {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--teal), 0 2px 6px rgba(15, 42, 67, 0.3);
  transform: translate(-50%, -50%);
  transition: top 0.08s linear;
}

.route-waypoint {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  transform: translate(-50%, -50%);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.route-waypoint.is-reached {
  background: var(--teal);
  border-color: var(--teal);
  transform: translate(-50%, -50%) scale(1.15);
}

@media (max-width: 1100px) {
  .route-tracer {
    display: none;
  }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1), transform 0.8s cubic-bezier(0.16, 0.8, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1), transform 0.8s cubic-bezier(0.16, 0.8, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1), transform 0.8s cubic-bezier(0.16, 0.8, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 0.8, 0.3, 1), transform 0.8s cubic-bezier(0.16, 0.8, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- HERO SECTION WITH FULL-SCREEN BACKGROUND IMAGE ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background-image: url('hero page.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 23, 38, 0.92) 0%, rgba(8, 23, 38, 0.78) 55%, rgba(8, 23, 38, 0.20) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 48px;
}

/* Eyebrow Badge Pill Component */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(124, 255, 178, 0.12);
  border: 1px solid rgba(124, 255, 178, 0.35);
  color: #7CFFB2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.eyebrow-pill svg {
  color: #7CFFB2;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 22px;
  color: #FFFFFF !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: normal;
  color: #7CFFB2 !important;
  background: none;
  -webkit-background-clip: unset;
  text-shadow: 0 0 24px rgba(124, 255, 178, 0.4);
}

.hero p.lede {
  font-size: 18px;
  color: #E2E8F0 !important;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* CTA Hierarchy */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  background: #1C6E6B;
  border-color: #1C6E6B;
  color: #FFFFFF !important;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(28, 110, 107, 0.45);
  padding: 12px 26px;
}

.hero-ctas .btn-primary:hover {
  background: #4FBE8D;
  border-color: #4FBE8D;
  color: #081726 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 190, 141, 0.5);
}

.hero-ctas .btn-outline {
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 12px 26px;
}

.hero-ctas .btn-outline:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #081726 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Frosted-Glass Horizontal Stats Card Component */
.stat-glass-card {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 42, 67, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 28px;
  gap: 28px;
  box-shadow: 0 12px 32px rgba(8, 23, 38, 0.35);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF !important;
  line-height: 1.1;
}

.stat-item .label {
  font-size: 11.5px;
  color: #CBD5E1 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
}

/* ---------- CLEAN WELCOMING LOGO FADE PRELOADER ---------- */
.welcome-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.3, 1), visibility 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.welcome-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-large {
  max-width: 280px;
  width: 75vw;
  height: auto;
  object-fit: contain;
  animation: logoFadeInPop 1.2s cubic-bezier(0.16, 0.8, 0.3, 1) forwards;
}

@keyframes logoFadeInPop {
  0% { opacity: 0; transform: scale(0.85); filter: blur(4px); }
  60% { opacity: 1; transform: scale(1.02); filter: blur(0px); }
  100% { opacity: 1; transform: scale(1.0); filter: blur(0px); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
}

/* ---------- SERVICES SECTION (PERMANENTLY VISIBLE IMAGE + DETAILS) ---------- */
section {
  padding: 88px 0;
}

.sec-head {
  max-width: 600px;
  margin-bottom: 48px;
}

.sec-head h2 {
  font-size: 32px;
  margin-top: 14px;
}

.sec-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 15px;
}

.svc-group {
  margin-bottom: 36px;
}

.svc-group:last-child {
  margin-bottom: 0;
}

.svc-group-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-group-title .count {
  background: rgba(28, 110, 107, 0.1);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.svc-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-card .svc-bg-img {
  position: relative;
  height: 175px;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: none;
  z-index: 1;
  border-bottom: 1px solid var(--line);
}

.svc-card::after {
  display: none;
}

.svc-card-content {
  position: relative;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  z-index: 2;
}

.svc-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(28, 110, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

[data-theme="dark"] .svc-card .icon {
  background: rgba(79, 190, 141, 0.15);
}

.svc-card .icon i {
  color: var(--teal);
  font-style: normal;
  font-size: 16px;
}

[data-theme="dark"] .svc-card .icon i {
  color: var(--green);
}

.svc-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.35;
}

[data-theme="dark"] .svc-card h3 {
  color: #F8FAFC;
}

.svc-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.svc-card .spec {
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--teal);
  background: rgba(28, 110, 107, 0.08);
  border: 1px solid rgba(28, 110, 107, 0.2);
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 6px;
}

[data-theme="dark"] .svc-card .spec {
  color: var(--green);
  background: rgba(79, 190, 141, 0.12);
  border-color: rgba(79, 190, 141, 0.25);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- INTERACTIVE PHOTO GALLERY ---------- */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .gallery-filter-btn {
  background: var(--card-bg);
  border-color: var(--line);
  color: var(--ink-soft);
}

.gallery-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.gallery-filter-btn.active {
  background: var(--navy);
  color: #ffffff !important;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(15, 42, 67, 0.25);
}

[data-theme="dark"] .gallery-filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff !important;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.3, 1), box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 38, 0.15) 0%, rgba(8, 23, 38, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(28, 110, 107, 0.85);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.gallery-zoom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-card:hover .gallery-zoom-icon {
  transform: scale(1.15);
  background: var(--green);
  color: var(--navy-dark);
}

.gallery-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-card-location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green-soft);
  letter-spacing: 0.06em;
}

.gallery-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

/* Photo Gallery Lightbox Modal */
.photo-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(8, 23, 38, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.photo-lightbox-modal.is-open {
  display: flex;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-height: 85vh;
}

[data-theme="dark"] .lightbox-content-wrapper {
  background: #112233;
}

#lightboxImg {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: cover;
  display: block;
}

.lightbox-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.lightbox-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lightbox-location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

.lightbox-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: rgba(79, 190, 141, 0.15);
  color: var(--green);
  padding: 3px 8px;
  border-radius: 4px;
}

.lightbox-title {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--navy);
}

[data-theme="dark"] .lightbox-title {
  color: #F8FAFC;
}

.lightbox-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lightbox-equip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--teal-2);
  background: var(--bg);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--teal);
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav-btn.prev-btn { left: 24px; }
.lightbox-nav-btn.next-btn { right: 24px; }

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-content-wrapper {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  #lightboxImg {
    max-height: 260px;
  }
  .lightbox-info {
    padding: 20px;
  }
  .lightbox-nav-btn {
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .lightbox-nav-btn.prev-btn { left: 20px; }
  .lightbox-nav-btn.next-btn { right: 20px; }
}

/* ---------- OUR WORK PORTFOLIO GRID ---------- */
.our-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .our-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .our-work-grid {
    grid-template-columns: 1fr;
  }
}

.work-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-dark);
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.16, 0.8, 0.3, 1), box-shadow 0.3s ease;
}

.work-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(15, 42, 67, 0.18);
}

.work-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 38, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-card-overlay {
  opacity: 1;
}

.work-card-location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--green-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.work-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.work-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  background: rgba(79, 190, 141, 0.22);
  color: #ffffff;
  border: 1px solid rgba(79, 190, 141, 0.4);
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 25, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.video-modal.is-open {
  display: flex;
}

.video-modal video {
  max-width: min(920px, 92vw);
  max-height: 82vh;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-modal-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
}

.bg1 { background: linear-gradient(160deg, #0F2A43, #1C6E6B 60%, #4FBE8D); }
.bg2 { background: linear-gradient(160deg, #173F5C, #2E8C86); }
.bg3 { background: linear-gradient(160deg, #1C6E6B, #0F2A43); }
.bg4 { background: linear-gradient(160deg, #4FBE8D, #1C6E6B); }

/* ---------- EQUIPMENT BAND ---------- */
.equip {
  background: var(--navy);
  color: #fff;
}

.equip .eyebrow {
  color: var(--green-soft);
}

.equip .eyebrow::before {
  background: var(--green-soft);
}

.equip h2 {
  color: #fff;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.equip-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}

.equip-item .mono {
  font-size: 11px;
  color: var(--green-soft);
  display: block;
  margin-bottom: 8px;
}

.equip-item h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.equip-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testi-card p.quote {
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.testi-card .who {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

[data-theme="dark"] .testi-card .who {
  color: var(--green-soft);
}

.testi-card .role {
  font-size: 12px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTACT CTA ---------- */
.cta {
  background: linear-gradient(120deg, #0F2A43, #1C6E6B 55%, #2E8C86);
  border-radius: 16px;
  color: #fff;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 14px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  max-width: 380px;
}

.cta-form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.cta-form input, .cta-form select, .cta-form textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 11px 12px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.cta-form input::placeholder, .cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-form select option {
  background: var(--navy);
  color: #fff;
}

.cta-form .btn-primary {
  background: #fff;
  color: var(--navy);
  margin-top: 4px;
}

.cta-form .btn-primary:hover {
  background: var(--green);
  color: #fff;
}

@media (max-width: 900px) {
  .cta {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

/* Toast Notice Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 0.8, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 48px 0 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.foot-grid h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.foot-grid li {
  font-size: 14px;
  margin-bottom: 9px;
  color: var(--navy);
}

[data-theme="dark"] .foot-grid li {
  color: var(--ink);
}

.foot-grid li a:hover {
  color: var(--teal);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- ADVANCED MOBILE RESPONSIVENESS & TOUCH USABILITY (320px - 768px) ---------- */
button, 
.btn, 
.social-nav-btn, 
.theme-toggle-btn, 
.mobile-menu-btn,
.cta-form input,
.cta-form select {
  min-height: 44px;
}

.social-nav-btn,
.theme-toggle-btn,
.mobile-menu-btn {
  min-width: 44px;
}

.work-card,
.svc-card,
.svc-bg-img,
.work-card-overlay,
.reveal,
.btn,
.whatsapp-float-btn {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (max-width: 1100px) {
  .header-inner {
    padding: 0 24px;
  }
  .navlinks {
    gap: 20px;
    margin-right: 20px;
  }
  .nav-socials {
    margin-right: 16px;
  }
}

@media (max-width: 900px) {
  .navlinks {
    display: none !important;
  }

  .header-inner {
    padding: 0 20px;
    height: 126px;
  }

  header.minimal-header {
    height: 126px;
  }

  .brand-logo {
    height: 96px;
    max-height: 96px;
    width: auto;
  }

  .mobile-nav {
    top: 126px;
  }

  header .btn-minimal-primary {
    font-size: 14px !important;
    padding: 10px 18px !important;
    min-height: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(28, 110, 107, 0.3);
  }

  .nav-socials {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    font-size: 22px;
    color: #0F2A43;
    cursor: pointer;
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 12px;
    height: 115px;
  }

  header.minimal-header {
    height: 115px;
  }

  .mobile-nav {
    top: 115px;
  }

  .brand-logo {
    height: 86px;
    max-height: 86px;
  }

  header .btn-minimal-primary {
    font-size: 13px !important;
    padding: 8px 12px !important;
    min-height: 38px !important;
    height: 38px !important;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin-left: 6px;
  }
}

@media (max-width: 768px) {
  .brand-logo-foot {
    height: 76px;
    max-width: 320px;
  }

  .hero {
    padding: 60px 0 44px;
    min-height: auto;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(8, 23, 38, 0.94) 0%, rgba(8, 23, 38, 0.85) 100%);
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.15;
    margin: 12px 0 16px;
  }

  .hero p.lede {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    margin-bottom: 28px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-glass-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    padding: 16px 14px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item .num {
    font-size: 20px;
  }

  .stat-item .label {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .readout-card {
    padding: 20px 16px;
  }

  .readout-card .row {
    font-size: 12.5px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-float-btn {
    bottom: 20px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .toast-notice {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 27px;
  }

  .hero p.lede {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-form {
    padding: 16px;
  }

  .our-work-grid {
    gap: 16px;
  }

  .stat-row div span.num {
    font-size: 18px;
  }
}
