/* =============================================
   Modern Google-Style Design System
   Plus Jakarta Sans · Clean · Transparent
   ============================================= */

:root {
  /* Google color palette */
  --blue:       #1a73e8;
  --blue-50:    #e8f0fe;
  --blue-100:   #d2e3fc;
  --blue-600:   #1557b0;
  --green:      #34a853;
  --green-50:   #e6f4ea;
  --red:        #ea4335;
  --orange:     #fa7b17;
  --orange-50:  #fce8e6;
  --purple:     #9334e6;
  --purple-50:  #f3e8fd;

  /* Surfaces */
  --white:      #ffffff;
  --surface-1:  #f8f9fa;
  --surface-2:  #f1f3f4;
  --surface-3:  #e8eaed;

  /* Text */
  --text:       #202124;
  --text-2:     #3c4043;
  --text-3:     #5f6368;
  --text-4:     #80868b;

  /* Borders */
  --border:     #dadce0;
  --border-2:   #e8eaed;

  /* Shadows */
  --shadow-1:   0 1px 3px rgba(60,64,67,0.12), 0 1px 2px rgba(60,64,67,0.08);
  --shadow-2:   0 4px 8px rgba(60,64,67,0.10), 0 2px 4px rgba(60,64,67,0.06);
  --shadow-3:   0 8px 24px rgba(60,64,67,0.12), 0 4px 8px rgba(60,64,67,0.06);
  --shadow-4:   0 16px 48px rgba(60,64,67,0.14), 0 8px 16px rgba(60,64,67,0.08);

  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:50px;

  --header-height: 64px;
  --transition:    0.2s cubic-bezier(0.2, 0, 0, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

:target { scroll-margin-top: calc(var(--header-height) + 12px); }

/* ── Section Chip ── */
.section-chip {
  display: inline-flex;
  align-items: center;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-chip.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ── Tag label ── */
.tag-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

/* =============================================
   Sticky Header — Frosted Glass
   ============================================= */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(218,220,224,0.6);
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-title {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.2;
}
.logo-tagline {
  display: block;
  font-size: 0.67rem;
  color: var(--text-3);
  font-weight: 500;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-phone i { color: var(--blue); font-size: 0.82rem; }

.btn-header-cta {
  background: var(--blue);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(26,115,232,0.3);
}
.btn-header-cta:hover {
  background: var(--blue-600);
  box-shadow: 0 4px 14px rgba(26,115,232,0.4);
  transform: translateY(-1px);
}

/* =============================================
   Hero — Gradient with Blobs
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 45%, #f0faf5 100%);
  overflow: hidden;
}

/* Gradient blob shapes (Google marketing style) */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.blob-1 {
  width: 600px; height: 600px;
  background: rgba(26,115,232,0.12);
  top: -200px; right: -80px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(52,168,83,0.1);
  bottom: -60px; left: -100px;
}
.blob-3 {
  width: 280px; height: 280px;
  background: rgba(147,52,230,0.07);
  top: 40%; left: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26,115,232,0.2);
  color: var(--blue);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-chip i { font-size: 0.85rem; }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--text-3);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(26,115,232,0.35);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,115,232,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  color: var(--blue);
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--blue-100);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* Glass stat cards */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.glass-stat {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  text-align: center;
  box-shadow: var(--shadow-2);
  min-width: 160px;
}
.glass-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.glass-stat span {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }

/* =============================================
   Services
   ============================================= */
.services {
  padding: 96px 0;
  background: var(--surface-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-1);
}
.service-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card.featured {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(26,115,232,0.35);
}
.service-card.featured:hover {
  box-shadow: 0 16px 48px rgba(26,115,232,0.45);
}
.featured-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(66,133,244,0.4), rgba(26,115,232,0));
  pointer-events: none;
  z-index: 0;
}

.service-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-2);
  letter-spacing: 0.04em;
}

.service-tier-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card.featured .service-tier-label { color: rgba(255,255,255,0.6); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-icon.blue   { background: var(--blue-50);   color: var(--blue); }
.service-icon.green  { background: var(--green-50);  color: var(--green); }
.service-icon.white  { background: rgba(255,255,255,0.2); color: var(--white); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.service-card.featured h3 { color: var(--white); }

.service-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.service-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-3); }
.service-card.featured .service-price     { color: var(--white); }
.service-card.featured .service-price span{ color: rgba(255,255,255,0.65); }

.service-features {
  flex: 1;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-3);
  border-bottom: 1px solid var(--border-2);
}
.service-features li:last-child { border-bottom: none; }
.service-features .fa-check {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.75rem;
}
.service-card.featured .service-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }
.service-card.featured .service-features .fa-check { color: rgba(255,255,255,0.7); }

.btn-book {
  display: block;
  text-align: center;
  background: var(--blue-50);
  color: var(--blue);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.btn-book:hover { background: var(--blue-100); }
.service-card.featured .btn-book { background: rgba(255,255,255,0.2); color: var(--white); }
.service-card.featured .btn-book:hover { background: rgba(255,255,255,0.3); }

/* Add-ons */
.addons {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-1);
}
.addons h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.addon-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--surface-1);
  border-radius: var(--radius);
}
.addon-icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.addon-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.addon-item span   { font-size: 0.82rem; color: var(--text-3); }

/* =============================================
   Trust & Safety — Glass cards on gradient
   ============================================= */
.trust {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 60%, #1a237e 100%);
  overflow: hidden;
}
.trust-bg { position: absolute; inset: 0; pointer-events: none; }
.trust-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.trust-blob-1 {
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  top: -100px; right: -100px;
}
.trust-blob-2 {
  width: 300px; height: 300px;
  background: rgba(52,168,83,0.15);
  bottom: -80px; left: 20%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.trust-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  color: var(--white);
  transition: all var(--transition);
}
.trust-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.trust-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.trust-icon-wrap.blue   { background: rgba(255,255,255,0.15); color: #a8c7fa; }
.trust-icon-wrap.green  { background: rgba(52,168,83,0.2);   color: #81c995; }
.trust-icon-wrap.purple { background: rgba(147,52,230,0.2);  color: #d7aefb; }
.trust-icon-wrap.orange { background: rgba(250,123,23,0.2);  color: #fcad70; }

.trust-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.trust-card ul { display: flex; flex-direction: column; gap: 8px; }
.trust-card li {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.trust-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* =============================================
   Why Choose Us
   ============================================= */
.why-us {
  padding: 96px 0;
  background: var(--white);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.why-item:hover { background: var(--surface-1); }

.why-icon-wrap {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: all var(--transition);
}
.why-item:hover .why-icon-wrap {
  background: var(--blue);
  color: var(--white);
}

.why-content h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-content p  { font-size: 0.9rem; color: var(--text-3); line-height: 1.75; }

/* =============================================
   Coverage Area
   ============================================= */
.coverage {
  padding: 96px 0;
  background: var(--surface-1);
}
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.coverage-zones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.zone {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.zone:hover { box-shadow: var(--shadow-2); transform: translateX(2px); }

.zone-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.zone-dot.blue  { background: var(--blue); }
.zone-dot.green { background: var(--green); }
.zone-dot.gray  { background: var(--text-4); }

.zone h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.zone p  { font-size: 0.82rem; color: var(--text-3); }

.counties, .hubs { margin-bottom: 26px; }

.county-tags, .hub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.county-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
}
.county-tags span:hover { border-color: var(--blue); color: var(--blue); }

.hub-list span {
  background: var(--blue-50);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.coverage-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border: 1px solid var(--border-2);
}
.coverage-map iframe { display: block; }

/* =============================================
   Booking Form — Glass on gradient
   ============================================= */
.booking {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(160deg, #f0f6ff 0%, #f8f9fa 50%, #f0faf5 100%);
  overflow: hidden;
}
.booking-bg { position: absolute; inset: 0; pointer-events: none; }
.booking-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.booking-blob-1 {
  width: 500px; height: 500px;
  background: rgba(26,115,232,0.09);
  top: -100px; right: -100px;
}
.booking-blob-2 {
  width: 350px; height: 350px;
  background: rgba(52,168,83,0.08);
  bottom: -80px; left: 5%;
}

.booking-form {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-3);
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }

label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.required { color: var(--blue); }
.optional  { color: var(--text-4); font-weight: 400; font-size: 0.76rem; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%235f6368' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 13px;
  padding-right: 42px;
  background-color: rgba(255,255,255,0.85);
}
input::placeholder, textarea::placeholder { color: var(--text-4); font-weight: 400; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-50);
}
input.is-invalid, select.is-invalid { border-color: var(--red); }
textarea { resize: vertical; min-height: 88px; }

.error-msg { font-size: 0.76rem; color: var(--red); min-height: 1.1em; }

.form-section { margin-bottom: 32px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 12px;
}

/* Radios */
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: normal;
}
.radio-option:hover { border-color: var(--blue); background: var(--blue-50); }
.radio-option:has(input:checked) { border-color: var(--blue); background: var(--blue-50); }

.radio-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-custom {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all var(--transition);
}
.radio-option input:checked ~ .radio-custom { border-color: var(--blue); background: var(--blue); }
.radio-option input:checked ~ .radio-custom::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.radio-option div strong { display: block; font-size: 0.87rem; font-weight: 700; color: var(--text); }
.radio-option div span  { font-size: 0.77rem; color: var(--text-3); }

/* Checkboxes */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 8px;
}
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-3);
  transition: all var(--transition);
  font-weight: normal;
}
.checkbox-option:hover { border-color: var(--blue); color: var(--text); }
.checkbox-option:has(input:checked) { border-color: var(--blue); background: var(--blue-50); color: var(--text); }

.checkbox-option input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
}
.checkbox-option input:checked ~ .checkbox-custom { border-color: var(--blue); background: var(--blue); }
.checkbox-option input:checked ~ .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

/* Submit */
.form-submit { text-align: center; margin-top: 16px; }
.btn-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 16px 48px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(26,115,232,0.35);
  width: 100%;
  justify-content: center;
  max-width: 400px;
}
.btn-submit:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,115,232,0.45);
}
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-disclaimer {
  margin-top: 16px;
  font-size: 0.79rem;
  color: var(--text-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.form-disclaimer a { color: var(--blue); font-weight: 600; }

/* Success */
.form-success { text-align: center; padding: 56px 24px; }
.success-icon { font-size: 4rem; color: var(--green); margin-bottom: 18px; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.form-success p  { color: var(--text-3); max-width: 480px; margin: 0 auto; }
.form-success a  { color: var(--blue); font-weight: 600; }

/* =============================================
   Contact
   ============================================= */
.contact {
  padding: 96px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info .section-chip { margin-bottom: 14px; }
.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.contact-intro { font-size: 0.93rem; color: var(--text-3); margin-top: 14px; margin-bottom: 30px; line-height: 1.8; }

.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface-1);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-2); transform: translateX(3px); border-color: transparent; }
.contact-item.emergency { border-color: rgba(250,123,23,0.25); background: var(--orange-50); }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-icon.blue   { background: var(--blue-50);   color: var(--blue); }
.contact-icon.green  { background: var(--green-50);  color: var(--green); }
.contact-icon.purple { background: var(--purple-50); color: var(--purple); }
.contact-icon.orange { background: var(--orange-50); color: var(--orange); }

.contact-item strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item span   { font-size: 0.92rem; font-weight: 600; color: var(--text); }

.hours-list {
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  margin-top: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--border-2);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: var(--text); }
.hours-row span:last-child  { color: var(--text-3); }

.emergency-hours { background: var(--orange-50) !important; }
.emergency-hours span { color: var(--orange) !important; font-weight: 600 !important; }

.carrier-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.carrier-tags span {
  background: var(--blue-50);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 52px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo i { color: var(--blue); }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.52); max-width: 260px; line-height: 1.75; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; font-weight: 500; color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact i { color: var(--blue); font-size: 0.82rem; }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   Responsive — Tablet
   ============================================= */
@media (max-width: 900px) {
  .why-grid          { grid-template-columns: 1fr; }
  .coverage-layout   { grid-template-columns: 1fr; }
  .coverage-map      { position: static; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner      { grid-template-columns: 1fr; gap: 26px; }
}

/* =============================================
   Responsive — Mobile
   ============================================= */
@media (max-width: 640px) {
  .header-phone span { display: none; }
  .hero-content      { padding: 96px 16px 48px; }
  .services-grid     { grid-template-columns: 1fr; }
  .trust-grid        { grid-template-columns: 1fr; }
  .booking-form      { padding: 28px 18px; }
  .form-grid         { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .radio-group       { grid-template-columns: 1fr; }
  .checkbox-group    { grid-template-columns: 1fr 1fr; }
  .hero-stats        { gap: 12px; }
  .glass-stat        { min-width: 130px; padding: 16px 20px; }
}

@media (max-width: 440px) {
  .hero-ctas     { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .glass-stat    { min-width: 100px; }
  .glass-stat strong { font-size: 1.4rem; }
  .checkbox-group { grid-template-columns: 1fr; }
  .btn-header-cta { padding: 8px 14px; font-size: 0.8rem; }
  .logo-tagline  { display: none; }
}
