/* ===========================
   WAGON WINDOWS — Trust-First
   =========================== */

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

:root {
  --navy:    #111111;
  --blue:    #cc0000;
  --sky:     #e81010;
  --light:   #f5f5f5;
  --white:   #ffffff;
  --gray:    #6b7280;
  --border:  #e0e0e0;
  --dark:    #000000;
  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:  10px;
}

html { scroll-behavior: smooth; }

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

/* ---- NAV ---- */
nav {
  position: sticky;
  overflow: visible;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 5px solid var(--sky);

}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 195px;
  width: auto;
  display: block;
  transform: translateY(2mm);
  filter: brightness(0) invert(1);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sky); }

.nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #aa0000 !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(160deg, #000000 0%, #111111 60%, #220000 100%);
  padding: 110px 5% 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,16,16,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,16,16,0.15);
  border: 1px solid rgba(232,16,16,0.5);
  color: #ff8080;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--sky); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sky);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(232,16,16,0.45);
}

.btn-primary:hover { background: #aa0000; transform: translateY(-2px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  border-bottom: 1px solid #222;
  padding: 1.1rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
}

.trust-icon { color: var(--sky); flex-shrink: 0; }


/* ---- SECTIONS ---- */
section { padding: 90px 5%; text-align: center; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.6rem;
  display: inline-block;
  border-left: 3px solid var(--sky);
  padding-left: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ---- SERVICES ---- */
#services {
  background: var(--navy);
  padding: 65px 5% 60px;
}
#services .section-title { color: var(--white); }
#services .section-sub   { color: rgba(255,255,255,0.45); }
#services .section-label { color: var(--sky); border-color: var(--sky); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: rgba(255,255,255,0.03);
  padding: 1.4rem 1.6rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: background 0.18s;
}
.service-card:hover {
  background: rgba(232,16,16,0.14);
}

.service-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.service-card-link {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
  transition: color 0.18s;
}
.service-card:hover .service-card-link {
  color: var(--sky);
}

/* ---- WHY US ---- */
#why { background: var(--navy); }

#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,0.5); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
}

.why-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -1px;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ---- PRICING ---- */
#pricing { background: var(--light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.pricing-featured {
  border-color: var(--sky);
  box-shadow: 0 4px 20px rgba(232,16,16,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  background: var(--sky);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
}

.pricing-tier {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.pricing-windows {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.pricing-price {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.pricing-price span {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.pricing-upgrade {
  font-size: 0.8rem;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.pricing-note-icon { color: var(--sky); flex-shrink: 0; }

/* ---- SERVICE AREA ---- */
#area { background: var(--white); text-align: center; }

.area-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 30px;
}

.area-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- CONTACT ---- */
#contact { background: var(--light); text-align: center; }

.contact-details-bar {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-icon { color: var(--sky); flex-shrink: 0; }
.contact-detail a { color: var(--blue); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { color: var(--navy); }

.contact-tabs { max-width: 680px; margin: 0 auto; }

.tab-btns {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.tab-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--gray);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}

.tab-btn:hover:not(.active) { border-color: var(--sky); color: var(--navy); }

.tab-panel.hidden { display: none; }

form { display: flex; flex-direction: column; gap: 0.75rem; }

form input, form select, form textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

form input::placeholder, form textarea::placeholder { color: #aab; }

form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(232,16,16,0.12);
}

form textarea { resize: vertical; min-height: 100px; }

form button {
  background: var(--sky);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}

form button:hover { background: #aa0000; transform: translateY(-1px); }

/* ---- SERVICE AREA MAP ---- */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 960px;
}

.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 340px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* ---- FLOATING CONTACT ---- */
.float-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.float-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

.float-sms { background: var(--sky); color: var(--white); }
.float-wa { background: #25d366; color: var(--white); }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  text-align: center;
  padding: 2.5rem 5%;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
footer a:hover { color: var(--white); }
footer strong { color: rgba(255,255,255,0.85); }
footer p + p { margin-top: 0.6rem; }

/* ---- MOBILE BOOKING BAR ---- */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.7rem 1rem;
  gap: 0.6rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}
.mobile-book-primary {
  flex: 2;
  background: var(--sky);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-book-primary:hover { background: #aa0000; }
.mobile-book-call {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--light);
  padding: 0.75rem 5%;
  font-size: 0.8rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--sky); }

/* ---- PAGE TRUST STRIP ---- */
.page-trust-strip {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

/* ---- MID-PAGE CTA ---- */
.mid-cta {
  background: var(--light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sky);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  text-align: center;
  margin: 2rem 0;
}
.mid-cta p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.mid-cta-phone {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.mid-cta-phone:hover { color: var(--sky); }

/* ---- PAGE HERO (service/location pages) ---- */
.page-hero {
  background: linear-gradient(160deg, #000000 0%, #111111 60%, #220000 100%);
  padding: 80px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,16,16,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
}
.quick-answer {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ---- PAGE CONTENT ---- */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5% 80px;
}

.content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.content-section:last-of-type { border-bottom: none; }

.content-section h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--sky);
  display: inline-block;
}

.content-section > p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

/* ---- SERVICE BULLETS ---- */
.service-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.65rem;
  margin: 1.5rem 0;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.55;
  padding: 0.85rem 1rem;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--sky);
}
.service-bullets li::before {
  content: '✓';
  color: var(--sky);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.process-step {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.process-step:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(232,16,16,0.08);
}
.process-step strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.process-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 1.4rem 1.8rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
  border-left: 4px solid var(--sky);
}
.process-callout strong { color: var(--sky); }

/* ---- PROBLEMS LIST ---- */
.problems-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.problems-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
  transition: border-color 0.2s;
}
.problems-list li:hover { border-color: var(--sky); }
.problems-list li::before {
  content: '→';
  color: var(--sky);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- LOCATION GRID ---- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.location-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.3rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.location-card:hover {
  background: var(--white);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.location-card strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.location-card span {
  font-size: 0.75rem;
  color: var(--sky);
  font-weight: 600;
}
.location-card em {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: normal;
}

/* ---- SERVICE HUB PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.pricing-table thead tr { background: var(--navy); }
.pricing-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.pricing-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  line-height: 1.5;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: var(--light); }
.pricing-table tbody tr:hover { background: #fff5f5; }

/* ---- FAQ ---- */
.faq-list {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.faq-item {
  padding: 1.4rem 1.8rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--light); }
.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  line-height: 1.4;
  display: inline;
}
.faq-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0.55rem 0 0;
}

/* ---- PAGE CTA ---- */
.page-cta {
  background: linear-gradient(160deg, #000000 0%, #111111 60%, #220000 100%);
  padding: 70px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 60px;
}
.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,16,16,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  position: relative;
}
.page-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  /* NAV */
  nav { height: 64px; justify-content: center; background: var(--dark); border-bottom-color: var(--dark); box-shadow: none; }
  .nav-logo-img { height: 120px; }
  .hamburger { display: flex; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); }
  .hamburger span { background: #888; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; gap: 1.2rem; border-top: 3px solid var(--sky); }
  .nav-links a { color: var(--white); }
  .nav-links.open { display: flex; }

  /* HERO */
  .hero { padding: 60px 5% 55px; text-align: center; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; }

  /* TRUST BAR */
  .trust-bar { gap: 0.6rem; padding: 0.8rem 5%; }
  .trust-item { font-size: 0.78rem; padding: 0.35rem 0.75rem; }

  /* SECTIONS */
  section { padding: 55px 5%; }

  /* SERVICES */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 1.1rem 1rem; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-details-bar { gap: 1.2rem; }
  .tab-btns { flex-wrap: wrap; }
  .tab-btn { flex: 1; min-width: 130px; text-align: center; padding: 0.65rem 1rem; }
  form input, form select, form textarea { font-size: 16px; }

  /* AREA */
  .area-layout { grid-template-columns: 1fr; }
  .area-map { height: 260px; }
  .area-box { padding: 1.5rem; }

  /* MOBILE BOOKING BAR — replaces float buttons on mobile */
  .mobile-book-bar { display: flex; }
  body { padding-bottom: 72px; }
  .float-contact { display: none; }

  /* PAGE HERO */
  .page-hero { padding: 50px 5% 45px; }
  .page-trust-strip { gap: 0.9rem; font-size: 0.74rem; }

  /* PAGE CONTENT */
  .content-section { padding: 40px 0; }
  .service-bullets { grid-template-columns: 1fr; }
  .problems-list { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-table { font-size: 0.78rem; }
  .pricing-table th, .pricing-table td { padding: 0.75rem 0.8rem; }
  .page-cta { border-radius: 0; margin-top: 0; padding: 50px 5%; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .faq-item { padding: 1.1rem 1.2rem; }
}
