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

:root {
  --navy: #1C2D5E;
  --navy-mid: #253B72;
  --navy-light: #2E4A88;
  --orange: #ffffff;
  --orange-dark: #dce7f5;
  --orange-light: rgba(255,255,255,0.08);
  --white: #ffffff;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --green: #22C55E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section { padding: 96px 0; }

img, svg { display: block; }

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

/* ===== HIGHLIGHT ===== */
.highlight {
  color: var(--orange);
  position: relative;
}

/* On light-background sections, highlight needs navy not white */
.why-us .highlight,
.reviews .highlight { color: #fff; }
.contact .highlight { color: var(--navy); }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(28,45,94,0.07);
  color: var(--navy);
  border: 1px solid rgba(28,45,94,0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all .25s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.18);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all .3s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 50, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.logo-img-footer {
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  transition: color .2s;
}
.btn-phone:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #07192e;
  background-image:
    linear-gradient(rgba(100,170,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,170,255,0.07) 1px, transparent 1px),
    linear-gradient(rgba(100,170,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,170,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
  z-index: 0;
}

.pipe-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(6,12,28,0.60) 0%,
      rgba(6,12,28,0.30) 40%,
      rgba(6,12,28,0.55) 100%),
    radial-gradient(ellipse at 60% 50%, rgba(28,45,94,0.35) 0%, transparent 65%);
}

/* ===== HERO WAVES ===== */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  overflow: hidden;
  pointer-events: none;
}

.wave-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.wave-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.wave-wrap-1 {
  animation: waveSlide 9s linear infinite;
}
.wave-wrap-2 {
  animation: waveSlide 14s linear infinite reverse;
}
.wave-wrap-3 {
  animation: waveSlide 20s linear infinite;
}

@keyframes waveSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* old pipe-svg placeholder — no longer used */
.pipe-svg {
  display: none;
}

/* Canvas water animation replaces CSS drops */
.water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-title { margin-left: auto; margin-right: auto; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-trust { justify-content: center; }

.hero-scroll {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.95);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideDown .6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 800px;
  animation: fadeSlideDown .7s .1s ease both;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
  animation: fadeSlideDown .7s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideDown .7s .3s ease both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 100px;
  transition: all .25s ease;
  box-shadow: 0 8px 32px rgba(255,255,255,.18);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,255,255,.25);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 100px;
  transition: all .25s ease;
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeSlideDown .7s .4s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite ease-in-out;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: .3; }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICES — PIPE CANVAS ===== */
.services {
  background-color: #060c1c;
  position: relative;
  padding-top: 0;
}

/* gradient bridge from hero blueprint → services pipe dark */
.services::before {
  content: '';
  display: block;
  height: 120px;
  background: linear-gradient(to bottom, #07192e 0%, transparent 100%);
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.services .section { padding-top: 0; }

/* Blueprint SVG overlay */
.blueprint-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blueprint-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── text overrides for dark bg ── */
.services .section-tag {
  background: rgba(100,170,255,0.12);
  color: rgba(140,205,255,0.90);
  border: 1px solid rgba(100,170,255,0.25);
}

.services .section-header h2 { color: #fff; }
.services .section-header p  { color: rgba(180,215,255,0.70); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.services .section-header { position: relative; z-index: 1; }

.service-card {
  background: rgba(12, 30, 68, 0.92);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(140,190,255,0.20);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: rgba(140,190,255,0.22);
  transition: background .3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,20,0.65);
  border-color: rgba(255,255,255,0.30);
  background: rgba(18, 40, 88, 0.96);
}
.service-card:hover::before { background: var(--white); }

.service-card.featured {
  border-color: rgba(255,255,255,0.28);
  background: rgba(16, 34, 78, 0.94);
}
.service-card.featured::before { background: var(--white); }

/* Icon */
.card-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--orange);
  margin-top: 2px;
}
.card-icon-wrap svg { width: 100%; height: 100%; }

/* Content */
.card-body { flex: 1; }
.card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.card-body p {
  font-size: 14px;
  color: rgba(220,235,255,0.88);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-link {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  opacity: 0.85;
}
.card-link:hover { gap: 8px; opacity: 1; }
.card-link span { transition: transform .2s; }
.card-link:hover span { transform: translateX(4px); }
.card-body p {
  font-size: 14px;
  color: rgba(200,225,255,0.82);
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }



/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-image-placeholder svg { width: 100%; height: auto; }

.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.float-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.float-badge div {
  display: flex;
  flex-direction: column;
}
.float-badge strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.float-badge span {
  font-size: 12px;
  color: var(--gray-600);
}

.why-content-col .section-tag { margin-bottom: 16px; }

.why-content-col h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-intro {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: #060c18;
  padding-bottom: 80px;
}

.gallery-section .section-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(180,215,255,0.75);
  border-color: rgba(255,255,255,0.12);
}
.gallery-section .section-header h2 { color: #fff; }
.gallery-section .section-header .highlight { color: #fff; font-weight: 900; }
.gallery-section .section-header p { color: rgba(180,215,255,0.65); }

.gallery-outer {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 80px 20px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(28,45,94,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-arrow:hover {
  background: rgba(28,45,94,1);
  transform: translateY(-50%) scale(1.08);
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-item {
  flex-shrink: 0;
  width: 420px;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-item { width: 85vw; height: 240px; }
  .gallery-track { padding: 8px 48px 20px; gap: 12px; }
  .gallery-arrow { width: 38px; height: 38px; }
}

/* ===== REVIEWS ===== */
.reviews { background: #060c18; }

.reviews .section-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(180,215,255,0.75);
  border-color: rgba(255,255,255,0.12);
}
.reviews .section-header h2 { color: #fff; }
.reviews .section-header p  { color: rgba(180,215,255,0.65); }

.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars { color: #FBBC05; font-size: 22px; letter-spacing: 2px; }
.rating-stars strong { font-size: 20px; font-weight: 800; color: #fff; }
.review-count { font-size: 14px; color: rgba(180,215,255,0.65); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: all .3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviewer-info strong { font-size: 15px; font-weight: 700; color: #fff; }
.reviewer-info span { font-size: 12px; color: var(--gray-400); }

.google-g { margin-left: auto; }

.review-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: rgba(180,215,255,0.70);
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-date {
  font-size: 12px;
  color: var(--gray-400);
}

.review-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-content { text-align: center; }

.cta-stars {
  color: #FBBC05;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.cta-card-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-card-content p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.review-link {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.review-link:hover { color: var(--orange); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }

.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(28,45,94,0.09);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item div {
  display: flex;
  flex-direction: column;
}
.contact-detail-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.contact-detail-item a,
.contact-detail-item span {
  font-size: 15px;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.5;
}
.contact-detail-item a:hover { color: var(--navy); }

.emergency-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.emergency-banner > div {
  flex: 1;
  min-width: 100px;
}
.emergency-banner strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.emergency-banner span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.emergency-call {
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
  white-space: nowrap;
  transition: color .2s;
}
.emergency-call:hover { color: var(--orange-light); }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-form {
  padding: 44px 40px;
}

.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all .2s ease;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28,45,94,.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,.1);
}

.field-error {
  font-size: 12px;
  color: #EF4444;
  font-weight: 500;
  min-height: 16px;
}

.urgency-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.urgency-opt {
  cursor: pointer;
}

.urgency-opt input { display: none; }

.urgency-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}

.urgency-opt input:checked + span {
  background: rgba(28,45,94,0.09);
  border-color: var(--navy);
  color: var(--navy);
}

.urgency-opt:hover span {
  border-color: var(--navy);
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 18px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,45,94,.35);
}

.spin {
  animation: spin .8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}
.form-success a { color: var(--navy); font-weight: 700; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 20px; }

.logo-light { color: var(--white); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.footer-contact-item svg { flex-shrink: 0; opacity: .6; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-hours strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.emergency-text { color: var(--orange); font-weight: 600; }

.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.badge-pill {
  background: rgba(255,255,255,.10);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.20);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ===== SCROLL TO TOP ===== */
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-image-col { order: 2; }
  .why-content-col { order: 1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    gap: 28px;
    transition: right .3s ease;
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; }

  .hamburger { display: flex; z-index: 1001; }
  .btn-phone { display: none; }

  .hero-title { font-size: clamp(32px, 8vw, 52px); }
  .btn-hero-primary, .btn-hero-secondary { font-size: 15px; padding: 15px 24px; }

  .trust-divider { display: none; }
  .trust-stat { padding: 12px 24px; min-width: 140px; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .urgency-options { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .contact-form { padding: 32px 24px; }

  .why-badge-float { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .trust-item { font-size: 13px; }
  .urgency-options { grid-template-columns: 1fr 1fr; }
  .emergency-banner { flex-direction: column; text-align: center; }
}
