/* ============================================================
   Gasman Plumbers — Main Stylesheet
   Design: Professional UK trades (Pimlico Plumbers style)
   Light background · Navy primary · Red CTA
   ============================================================ */

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

:root {
  --navy:        #1B3A72;
  --navy-dark:   #122B58;
  --navy-light:  #EEF3FB;
  --red:         #C8311A;
  --red-hover:   #A82614;
  --white:       #FFFFFF;
  --light:       #F5F8FC;
  --mid:         #E9EEF6;
  --text:        #1A202C;
  --muted:       #64748B;
  --border:      #D9E1EE;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(27,58,114,.1);
  --shadow-lg:   0 8px 32px rgba(27,58,114,.15);
  --fd: 'Poppins', sans-serif;
  --fb: 'Open Sans', sans-serif;
  --radius: 4px;
}

html  { scroll-behavior: smooth; }
body  { background: var(--white); color: var(--text); font-family: var(--fb); font-weight: 400; line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red); color: var(--white);
  font-family: var(--fd); font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  padding: 14px 28px; border: 2px solid var(--red); border-radius: var(--radius);
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(200,49,26,.3);
}
.btn-primary svg { width: 17px; height: 17px; stroke: currentColor; fill: none; flex-shrink: 0; }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,49,26,.35); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy); color: var(--white);
  font-family: var(--fd); font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  padding: 14px 28px; border: 2px solid var(--navy); border-radius: var(--radius);
  cursor: pointer; transition: background .2s, transform .15s;
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--white);
  font-family: var(--fd); font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  padding: 14px 28px; border: 2px solid rgba(255,255,255,.5); border-radius: var(--radius);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--navy);
  font-family: var(--fd); font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  padding: 12px 28px; border: 2px solid var(--navy); border-radius: var(--radius);
  cursor: pointer; transition: background .2s, color .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .65s ease, transform .65s ease; }
.reveal       { transform: translateY(24px); }
.reveal-left  { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   TOP INFO BAR
═══════════════════════════════════ */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.6); fill: none; flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-phone {
  font-family: var(--fd); font-size: .9rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 7px;
}
.topbar-phone svg { width: 14px; height: 14px; stroke: #fbbf24; fill: none; }
.topbar-phone:hover { color: #fbbf24; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav-logo  { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { font-family: var(--fd); font-size: 1.35rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.nav-logo-text span { color: var(--red); }
.nav-logo-sub { font-size: .65rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

.nav-links     { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a   { font-family: var(--fd); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text); padding: 8px 14px; border-radius: var(--radius); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--navy); background: var(--navy-light); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 10px 20px !important; border-radius: var(--radius) !important; }
.nav-cta:hover { background: var(--red-hover) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

.nav-mobile { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding: 40px 32px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--border); width: 100%; }
.nav-mobile a:hover { color: var(--red); }
.nav-mobile-close { position: absolute; top: 20px; right: 20px; font-size: 1.8rem; cursor: pointer; color: var(--navy); background: none; border: none; line-height: 1; }
.nav-mobile-phone { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--red); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2A5298 100%);
  padding: 80px 0 70px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--fd); font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #fbbf24; margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: #fbbf24; border-radius: 2px; }

.hero-headline { font-family: var(--fd); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-headline em { color: #fbbf24; font-style: normal; }

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

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.15); }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item svg { width: 16px; height: 16px; stroke: #fbbf24; fill: none; flex-shrink: 0; }
.trust-text { font-family: var(--fd); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.75); }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 36px 32px;
}
.hero-card-title { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.hero-card-sub   { font-size: .82rem; color: var(--muted); margin-bottom: 24px; }

.hero-card-score { text-align: center; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.hero-card-score-num { font-family: var(--fd); font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-card-score-label { font-size: .75rem; color: var(--muted); margin-top: 4px; font-family: var(--fd); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hero-card-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; margin-top: 8px; }

.hero-card-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.hero-card-badge { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 10px; text-align: center; }
.hero-card-badge-val   { font-family: var(--fd); font-size: 1.1rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; }
.hero-card-badge-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; display: block; margin-top: 3px; }

.hero-card-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--red); color: var(--white); font-family: var(--fd); font-size: .9rem; font-weight: 700; padding: 14px; border: none; border-radius: var(--radius); cursor: pointer; transition: background .2s; text-align: center; }
.hero-card-cta:hover { background: var(--red-hover); }
.hero-card-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services { padding: 90px 0; background: var(--light); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.services-header .section-label { justify-content: center; }
.services-title  { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.services-sub    { color: var(--muted); font-size: 1rem; line-height: 1.7; }

.services-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--navy); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-num { font-family: var(--fd); font-size: .65rem; font-weight: 600; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 20px; display: block; }

.service-icon { width: 52px; height: 52px; margin-bottom: 20px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--navy-light); border: 1.5px solid rgba(27,58,114,.15); transition: all .25s; }
.service-card:hover .service-icon { background: var(--navy); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.6; transition: stroke .25s; }
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-card p  { color: var(--muted); font-size: .875rem; line-height: 1.7; }

.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-family: var(--fd); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); opacity: 0; transform: translateX(-6px); transition: all .25s; }
.service-card:hover .service-card-link { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════ */
.why { padding: 90px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-title { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.why-intro { color: var(--muted); line-height: 1.8; margin-bottom: 36px; font-size: .975rem; }

.why-features { display: flex; flex-direction: column; gap: 14px; }
.why-feature  { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-radius: 6px; transition: border-color .2s, background .2s; }
.why-feature:hover { border-color: var(--navy); background: var(--navy-light); }

.why-feature-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.why-feature-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.why-feature-text h4 { font-family: var(--fd); font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.why-feature-text p  { font-size: .825rem; color: var(--muted); line-height: 1.6; }

/* Why: right panel */
.why-panel { background: var(--navy); border-radius: 8px; padding: 44px; overflow: hidden; position: relative; }
.why-panel::before { content: '"'; position: absolute; top: -10px; right: 20px; font-size: 10rem; font-family: var(--fd); color: rgba(255,255,255,.06); line-height: 1; pointer-events: none; }
.why-panel-quote { font-family: var(--fd); font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 28px; font-style: italic; }
.why-panel-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin-bottom: 28px; }
.why-panel-stat-row { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.why-panel-stat-num { font-family: var(--fd); font-size: 2.8rem; font-weight: 800; color: #fbbf24; line-height: 1; flex-shrink: 0; }
.why-panel-stat-text { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.5; padding-top: 4px; }
.why-panel-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.why-panel-badge  { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 14px 12px; text-align: center; }
.why-panel-badge-val   { font-family: var(--fd); font-size: 1.2rem; font-weight: 800; color: #fbbf24; display: block; line-height: 1; }
.why-panel-badge-label { font-size: .65rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; display: block; margin-top: 4px; }

/* ═══════════════════════════════════
   STATS STRIP
═══════════════════════════════════ */
.stats-strip { background: var(--navy); padding: 0; }
.stats-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item   { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--fd); font-size: 2.4rem; font-weight: 800; color: #fbbf24; line-height: 1; display: block; }
.stat-label  { font-family: var(--fd); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 8px; display: block; }

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.process        { padding: 90px 0; background: var(--light); }
.process-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.process-header .section-label { justify-content: center; }
.process-title  { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 44px; left: calc(16.66% + 22px); right: calc(16.66% + 22px); height: 2px; background: var(--mid); z-index: 0; }

.process-step       { padding: 0 32px 40px; text-align: center; }
.process-step-circle {
  width: 88px; height: 88px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
  position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(27,58,114,.3);
}
.process-step-circle span { font-family: var(--fd); font-size: 1.6rem; font-weight: 800; color: var(--white); }
.process-step h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-step p  { color: var(--muted); font-size: .875rem; line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials        { padding: 90px 0; background: var(--white); }
.testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-title  { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.testimonials-sub    { color: var(--muted); margin-top: 10px; }

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

.testimonial-card    { background: var(--light); border: 1px solid var(--border); border-radius: 6px; padding: 32px 28px; transition: box-shadow .25s, border-color .25s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.testimonial-card:first-child { border-top: 4px solid var(--red); }

.stars           { display: flex; gap: 3px; margin-bottom: 16px; }
.star            { color: #f59e0b; font-size: 1rem; }
.testimonial-text { font-size: .9rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar  { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-weight: 700; font-size: .9rem; color: var(--white); flex-shrink: 0; }
.author-name    { font-family: var(--fd); font-size: .85rem; font-weight: 700; color: var(--navy); }
.author-location { font-size: .75rem; color: var(--muted); margin-top: 2px; }

.testimonials-cta    { text-align: center; margin-top: 44px; }
.checkatrade-badge   { display: inline-flex; align-items: center; gap: 10px; background: var(--light); border: 2px solid var(--border); padding: 12px 24px; border-radius: 6px; font-family: var(--fd); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }
.checkatrade-badge .ct-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

/* ═══════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════ */
.areas       { padding: 90px 0; background: var(--light); }
.areas-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.areas-title { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.areas-desc  { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

.areas-tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.area-tag    { font-family: var(--fd); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding: 7px 14px; border: 1.5px solid var(--border); border-radius: 20px; color: var(--navy); background: var(--white); transition: all .18s; cursor: default; }
.area-tag:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* Coverage panel */
.areas-panel { background: var(--navy); border-radius: 8px; padding: 44px; color: var(--white); }
.areas-panel-label { font-family: var(--fd); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.6); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.areas-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.4); animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.4); } 70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }

.areas-panel-num  { font-family: var(--fd); font-size: 4.5rem; font-weight: 800; color: #fbbf24; line-height: 1; }
.areas-panel-sub  { font-family: var(--fd); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); margin-top: 6px; }
.areas-panel-note { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: 20px; line-height: 1.7; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.areas-panel-meta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.areas-panel-meta-item { display: flex; align-items: center; gap: 10px; font-family: var(--fd); font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.75); }
.areas-panel-meta-item svg { width: 15px; height: 15px; stroke: #fbbf24; fill: none; flex-shrink: 0; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq       { padding: 90px 0; background: var(--white); }
.faq-inner { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }

.faq-sidebar { position: sticky; top: 100px; }
.faq-title { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.faq-sidebar-note { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.faq-sidebar-cta { display: flex; flex-direction: column; gap: 10px; }

.faq-items { display: flex; flex-direction: column; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item             { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer; width: 100%; background: none; border: none;
  font-family: var(--fd); font-size: .95rem; font-weight: 700; color: var(--navy);
  text-align: left; transition: color .2s;
}
.faq-question:hover { color: var(--red); }
.faq-question.active { color: var(--red); }

.faq-toggle { width: 28px; height: 28px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; line-height: 1; color: var(--muted); transition: all .25s; }
.faq-question.active .faq-toggle { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }

.faq-answer       { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer.open  { max-height: 400px; }
.faq-answer-inner { padding-bottom: 24px; color: var(--muted); line-height: 1.8; font-size: .9rem; }

/* ═══════════════════════════════════
   EMERGENCY BANNER
═══════════════════════════════════ */
.emergency       { background: var(--red); padding: 36px 0; }
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.emergency-text  { }
.emergency-title { font-family: var(--fd); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.emergency-sub   { font-size: .875rem; color: rgba(255,255,255,.8); margin-top: 3px; }
.emergency-phone { font-family: var(--fd); font-size: 2rem; font-weight: 800; color: var(--white); transition: opacity .2s; display: flex; align-items: center; gap: 10px; }
.emergency-phone svg { width: 24px; height: 24px; stroke: #fde68a; fill: none; }
.emergency-phone:hover { opacity: .85; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact       { padding: 90px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-title { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.contact-desc  { color: var(--muted); line-height: 1.8; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-detail  { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.6; }
.contact-detail-label { font-family: var(--fd); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); display: block; margin-bottom: 2px; }
.contact-detail-val   { font-family: var(--fd); font-size: .95rem; font-weight: 700; color: var(--navy); }
.contact-detail-val a { color: inherit; transition: color .2s; }
.contact-detail-val a:hover { color: var(--red); }

.contact-phone-block { display: flex; align-items: center; gap: 14px; background: var(--navy); color: var(--white); padding: 20px 24px; border-radius: 6px; text-decoration: none; transition: background .2s; }
.contact-phone-block:hover { background: var(--navy-dark); }
.contact-phone-block svg { width: 22px; height: 22px; stroke: #fbbf24; fill: none; flex-shrink: 0; }
.contact-phone-num   { font-family: var(--fd); font-size: 1.35rem; font-weight: 800; }
.contact-phone-label { font-size: .72rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; font-family: var(--fd); }

/* FORM */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 40px; box-shadow: var(--shadow-md); }
.form-group   { margin-bottom: 18px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label   { display: block; font-family: var(--fd); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }

.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--white); border: 1.5px solid var(--border);
  color: var(--text); font-family: var(--fb); font-size: .9rem; padding: 12px 16px;
  border-radius: var(--radius); outline: none; transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,114,.12); }
.form-input::placeholder, .form-textarea::placeholder { color: #b0b8c9; }
.form-select option { background: var(--white); color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; }

input[name="_wpnonce"], input[name="_wp_http_referer"] { display: none; }

.form-submit {
  width: 100%; background: var(--red); color: var(--white);
  font-family: var(--fd); font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  padding: 15px; border: none; border-radius: var(--radius); cursor: pointer;
  transition: background .2s, box-shadow .2s; margin-top: 6px;
  box-shadow: 0 2px 8px rgba(200,49,26,.3);
}
.form-submit:hover    { background: var(--red-hover); box-shadow: 0 4px 14px rgba(200,49,26,.35); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; }

.form-notice { padding: 14px 18px; margin-bottom: 20px; font-family: var(--fd); font-size: .85rem; font-weight: 600; border-radius: var(--radius); }
.form-notice--success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.form-notice--error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer      { background: var(--navy-dark); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--fd); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: #fbbf24; }
.footer-desc { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.75; margin-bottom: 20px; }
.footer-gas-safe { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); padding: 8px 14px; border-radius: var(--radius); font-family: var(--fd); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.footer-col-title { font-family: var(--fd); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); gap: 20px; flex-wrap: wrap; }
.footer-copy, .footer-legal { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════
   SERVICE SUBPAGES
═══════════════════════════════════ */

/* Banner */
.service-banner {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
  background: var(--navy-dark);
  padding: 120px 0 80px;
}
.service-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.service-banner-inner { position: relative; z-index: 1; }
.service-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 22px; font-family: var(--fd); font-weight: 500;
}
.service-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.service-breadcrumb a:hover { color: var(--white); }
.service-breadcrumb span { color: rgba(255,255,255,.3); }
.service-banner h1 {
  font-family: var(--fd); font-size: clamp(2.2rem,5vw,3.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 18px; text-transform: uppercase;
}
.service-banner h1 em { color: #fbbf24; font-style: normal; }
.service-banner-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.75);
  max-width: 600px; line-height: 1.65; margin-bottom: 32px;
}
.service-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.service-banner-trust {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.service-banner-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.7);
}
.service-banner-trust-item svg { width: 16px; height: 16px; stroke: #fbbf24; fill: none; flex-shrink: 0; }

/* Overview */
.service-overview { padding: 96px 0; }
.service-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.service-overview-grid.reverse { direction: rtl; }
.service-overview-grid.reverse > * { direction: ltr; }
.service-overview-content .section-label { display: inline-flex; }
.service-overview-content h2 {
  font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800; color: var(--navy); line-height: 1.15;
  margin-bottom: 20px; text-transform: uppercase;
}
.service-overview-content p {
  color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-size: 1rem;
}
.service-overview-content p:last-of-type { margin-bottom: 28px; }
.service-overview-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.service-overview-img img { width: 100%; height: 100%; object-fit: cover; }

/* What's included */
.service-includes { background: var(--light); padding: 80px 0; }
.service-includes-header { text-align: center; margin-bottom: 48px; }
.service-includes-header h2 {
  font-family: var(--fd); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 12px;
}
.service-includes-header p { color: var(--muted); max-width: 520px; margin: 0 auto; }
.service-includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-include-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.service-include-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-include-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.service-include-check svg { width: 16px; height: 16px; stroke: white; fill: none; }
.service-include-item h4 {
  font-family: var(--fd); font-size: .9rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.service-include-item p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Service benefits strip */
.service-benefits { padding: 72px 0; }
.service-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.service-benefit {
  text-align: center; padding: 40px 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.service-benefit-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.service-benefit-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; }
.service-benefit h3 {
  font-family: var(--fd); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-benefit p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* Service FAQ */
.service-faq { background: var(--light); padding: 80px 0; }
.service-faq-header { text-align: center; margin-bottom: 48px; }
.service-faq-header h2 {
  font-family: var(--fd); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 12px;
}
.service-faq-grid { max-width: 780px; margin: 0 auto; }

/* Page CTA */
.service-cta-bar {
  background: var(--navy); padding: 64px 0; text-align: center;
}
.service-cta-bar h2 {
  font-family: var(--fd); font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 12px;
}
.service-cta-bar p { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.service-cta-bar-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .service-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-overview-grid.reverse { direction: ltr; }
  .service-includes-grid { grid-template-columns: repeat(2,1fr); }
  .service-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .service-banner { padding: 100px 0 64px; min-height: 340px; }
  .service-includes-grid, .service-benefits-grid { grid-template-columns: 1fr; }
  .service-overview { padding: 60px 0; }
  .service-banner-actions { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-card     { display: none; } /* hide on tablet — headline takes full width */
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 60px 0 52px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }

  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }

  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid, .faq-inner, .contact-inner, .areas-grid { grid-template-columns: 1fr; gap: 40px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  .faq-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; }

  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-phone { justify-content: center; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline, .btn-navy { width: 100%; justify-content: center; }
  .hero-trust   { gap: 16px; }
}
