/* =====================================================
   G RECOVERY SERVICE — MAIN STYLESHEET
   Brand: Industrial Reliability meets Cybernetic Minimalism
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Roboto:wght@400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:    #002D56;
  --orange:  #F36F21;
  --gray:    #8D8E91;
  --white:   #FFFFFF;
  --light:   #F5F6F8;
  --dark:    #0A1929;
  --border:  #E2E4E9;

  --font-head: 'Open Sans', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,.08);
  --trans:   all .25s ease;

  --header-h: 70px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover, .btn-orange:focus {
  background: #d95f15;
  border-color: #d95f15;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ── Sticky Header ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

#site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .01em;
}

.logo-tagline {
  font-size: .65rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--trans);
  letter-spacing: .01em;
}

.nav-links a:hover, .nav-links a:focus {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-emergency {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
  margin-left: 8px;
  border: 2px solid var(--orange);
  text-decoration: none;
  animation: pulse-btn 2.5s infinite;
}

.btn-emergency:hover {
  background: #d95f15;
  border-color: #d95f15;
  animation: none;
  transform: scale(1.03);
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243,111,33,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(243,111,33,0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 16px 24px 24px;
  z-index: 999;
  border-bottom: 3px solid var(--orange);
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 16px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: var(--trans);
}

.mobile-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }

.mobile-nav .btn-emergency {
  margin: 8px 0 0;
  justify-content: center;
  font-size: 1rem;
  padding: 13px 18px;
}

/* Fixed Emergency FAB (mobile) */
.emergency-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9000;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(243,111,33,.55);
  animation: float-fab 3s ease-in-out infinite;
  text-decoration: none;
}

@keyframes float-fab {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* ── HERO SECTION ── */
#hero {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(135deg, var(--navy) 0%, #00407a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.03) 39px,
      rgba(255,255,255,.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.03) 39px,
      rgba(255,255,255,.03) 40px
    );
  pointer-events: none;
}

.hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--orange);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243,111,33,.15);
  border: 1px solid rgba(243,111,33,.35);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero-badge span {
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: #ffaa70;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: #4eff91;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

.stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-image-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(243,111,33,.3);
  position: relative;
  aspect-ratio: 4/3;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,20,45,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243,111,33,.4);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-image-badge .badge-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-image-badge .badge-icon svg {
  width: 20px; height: 20px;
  fill: var(--white);
}

.badge-text-wrap .badge-title {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
}

.badge-text-wrap .badge-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
}

.hero-corner-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
#trust-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 18px; height: 18px; fill: var(--orange); }

.trust-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-text span {
  font-size: .75rem;
  color: var(--gray);
}

/* ── SERVICES SECTION ── */
#services {
  padding: 96px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0,45,86,.12);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(0,45,86,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--trans);
}

.service-card:hover .service-icon-wrap {
  background: var(--orange);
}

.service-icon-wrap svg { width: 28px; height: 28px; fill: var(--navy); transition: var(--trans); }
.service-card:hover .service-icon-wrap svg { fill: var(--white); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(243,111,33,.1);
  color: var(--orange);
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 20px;
  text-decoration: none;
  transition: var(--trans);
}

.service-cta:hover { color: var(--orange); gap: 10px; }

.service-cta svg { width: 16px; height: 16px; fill: currentColor; }

/* ── ABOUT SECTION ── */
#about {
  padding: 96px 0;
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-content p {
  color: #444;
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.75;
}

.about-content p:last-of-type { margin-bottom: 32px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-dot {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-dot svg { width: 11px; height: 11px; fill: var(--white); }

.pillar-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  display: block;
}

.pillar-text span { font-size: .85rem; color: var(--gray); }

/* About visual */
.about-visual { position: relative; }

.about-card-main {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-main::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(243,111,33,.15);
  border-radius: 50%;
}

.about-card-main h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.about-card-main p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 28px;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
}

.metric-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.metric-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  line-height: 1.3;
}

.about-cta-strip {
  margin-top: 20px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-cta-strip p {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.about-cta-strip a {
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--trans);
  text-decoration: none;
}

.about-cta-strip a:hover { background: var(--navy); color: var(--white); }

/* ── EMERGENCY CTA BAND ── */
#emergency-cta {
  background: linear-gradient(90deg, #001d3e 0%, #002D56 50%, #001d3e 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#emergency-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(243,111,33,.04) 20px,
    rgba(243,111,33,.04) 21px
  );
}

.emergency-content { position: relative; z-index: 1; }
.emergency-content .section-label { font-size: .8rem; margin-bottom: 14px; }

.emergency-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.emergency-content p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 18px 36px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.emergency-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .25s;
}

.emergency-phone:hover { transform: scale(1.04); background: #d95f15; }

.emergency-phone svg { width: 28px; height: 28px; fill: var(--white); flex-shrink: 0; }
.emergency-phone span { line-height: 1; }
.emergency-phone small { display: block; font-size: .7rem; font-weight: 400; opacity: .75; }

/* ── LOCATIONS FOOTER ── */
#locations {
  padding: 80px 0 0;
  background: var(--white);
}

.locations-header {
  text-align: center;
  margin-bottom: 48px;
}

.locations-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.locations-header p { color: var(--gray); font-size: .95rem; max-width: 520px; margin: 0 auto; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 64px;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: var(--trans);
}

.location-pill:hover {
  border-color: var(--orange);
  background: rgba(243,111,33,.05);
  transform: translateY(-2px);
}

.location-pill svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

.location-pill span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ── SITE FOOTER ── */
#site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 28px;
  border-top: 4px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

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

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  margin-bottom: 10px;
  transition: var(--trans);
  text-decoration: none;
}

.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { width: 15px; height: 15px; fill: var(--orange); flex-shrink: 0; }

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
  text-decoration: none;
}

.footer-col ul a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: var(--trans);
}

.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-links { display: none; }
  .btn-emergency.desktop-only { display: none; }
  .hamburger { display: flex; }
  .emergency-fab { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .hero-image-wrap { order: -1; }
  .hero-content h1 { font-size: 1.85rem; }

  .services-grid { flex-direction: column; }
  .service-card { flex: unset; }

  .trust-item { padding: 10px 18px; }
  .trust-items { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: unset; }

  .about-cta-strip { flex-direction: column; text-align: center; }

  .hero-stats { gap: 20px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { justify-content: center; }

  .emergency-phone { font-size: 1.2rem; padding: 15px 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}
/* -- TESTIMONIALS SECTION -- */
#testimonials {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: serif;
  font-size: 4rem;
  color: rgba(243, 111, 33, 0.2);
  line-height: 1;
}

.stars {
  color: #ffb400;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* -- FAQ SECTION -- */
#faq {
  padding: 96px 0;
  background: var(--light);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--trans);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: var(--trans);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  height: 14px;
  width: 2px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-question {
  color: var(--orange);
}

.faq-item.active .faq-icon::before {
  background: var(--orange);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
