/* ==========================================================================
   5Star Plumbing Indianapolis — Stylesheet
   ========================================================================== */

:root {
  --navy: #0a2540;
  --navy-light: #123a63;
  --blue: #1768ac;
  --blue-bright: #2f80ed;
  --red: #e63946;
  --red-dark: #c62834;
  --gold: #ffb703;
  --bg: #f5f8fb;
  --bg-alt: #eef3f8;
  --white: #ffffff;
  --ink: #17232f;
  --ink-soft: #4a5a6a;
  --border: #dfe7ee;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.16);
  --ff-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --ff-body: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
main { display: block; }
section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-navy { background: var(--navy); color: #cfe0f2; }
.section-navy h2, .section-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230, 57, 70, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(230, 57, 70, 0.28);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.24);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 16px; }

/* Top bar
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #b9cbdd;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; flex: none; color: var(--gold); }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
}
.logo .logo-mark { width: 46px; height: 46px; flex: none; }
.logo .logo-text-main { display: block; }
.logo .logo-text-sub {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 10px 15px;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  border-radius: var(--radius-sm);
  position: relative;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--red); }
.main-nav a svg { width: 14px; height: 14px; vertical-align: -2px; margin-left: 2px; }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.16s ease;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown a { padding: 10px 12px; font-weight: 500; font-size: 14.5px; }
.main-nav .dropdown a:hover { background: var(--bg); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.header-phone svg { width: 20px; height: 20px; color: var(--red); }
.header-phone small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, #0d3b66 55%, var(--blue) 130%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(47, 128, 237, 0.35), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { background: rgba(255, 183, 3, 0.16); color: var(--gold); }
.hero h1 { color: var(--white); font-size: clamp(34px, 4.6vw, 54px); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 19px; color: #d7e5f3; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #cfe0f2; }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.12);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-media-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(10, 37, 64, 0.85);
  color: var(--white);
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-media-tag svg { width: 14px; height: 14px; color: var(--gold); }

/* Page hero (subpages) */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #0d3b66 60%, var(--blue) 140%);
  color: var(--white);
  padding: 62px 0 66px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(255, 183, 3, 0.16), transparent 45%);
}
.breadcrumbs {
  position: relative;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #b9cbdd;
  margin-bottom: 16px;
}
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs svg { width: 13px; height: 13px; vertical-align: -1px; opacity: 0.7; }
.page-hero h1 { position: relative; color: var(--white); font-size: clamp(30px, 4vw, 44px); max-width: 780px; }
.page-hero p.lead { position: relative; color: #d7e5f3; font-size: 18px; max-width: 640px; }

/* Trust bar
   ========================================================================== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 34px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-item svg { width: 30px; height: 30px; color: var(--red); }
.trust-item strong { font-family: var(--ff-head); font-size: 15px; color: var(--navy); }
.trust-item span { font-size: 13px; color: var(--ink-soft); }

/* Cards / services
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-body h3 { font-size: 20px; margin-bottom: 2px; }
.card-body p { color: var(--ink-soft); font-size: 15px; margin-bottom: 6px; }
.card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: 14.5px;
  color: var(--red);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* About split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .float-card {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.split-media .float-card svg { width: 34px; height: 34px; color: var(--gold); flex: none; }
.split-media .float-card strong { display: block; font-family: var(--ff-head); color: var(--navy); font-size: 15px; }
.split-media .float-card span { font-size: 12.5px; color: var(--ink-soft); }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.check-list svg { width: 21px; height: 21px; color: var(--red); flex: none; margin-top: 1px; }

/* Stats strip
   ========================================================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-strip .stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--gold);
}
.stats-strip .stat span { color: #cfe0f2; font-size: 14.5px; }

/* Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 22px 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }

/* Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  border: none;
  padding: 0;
  background: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(10,37,64,0.85), transparent);
  color: var(--white);
  font-size: 13.5px;
  text-align: left;
  padding: 30px 16px 12px;
}
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6, 16, 28, 0.92);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: #cfe0f2; text-align: center; margin-top: 14px; font-size: 14px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }

/* FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
}
.faq-question .plus { width: 22px; height: 22px; flex: none; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ""; position: absolute; background: var(--red); border-radius: 2px;
}
.faq-question .plus::before { width: 100%; height: 3px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-question .plus::after { height: 100%; width: 3px; left: 50%; top: 0; transform: translateX(-50%); transition: transform 0.2s ease; }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq-item.is-open .faq-answer { max-height: 340px; padding: 0 22px 20px; }

/* CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(115deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 46px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 24px 48px rgba(230, 57, 70, 0.28);
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 0; }
.cta-band .btn-navy { background: var(--navy); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); }

/* Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.14);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: 12.5px;
  color: var(--red);
  min-height: 16px;
  display: block;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--red); }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(47, 158, 68, 0.1); color: #1e7a35; border: 1px solid rgba(47,158,68,0.25); }
.form-status.error { background: rgba(230, 57, 70, 0.08); color: var(--red-dark); border: 1px solid rgba(230,57,70,0.25); }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-info-item strong { display: block; font-family: var(--ff-head); font-size: 14.5px; margin-bottom: 3px; }
.contact-info-item span, .contact-info-item a { font-size: 14.5px; color: #cfe0f2; }
.contact-info-item a:hover { color: var(--white); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Service area chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
}

/* Footer
   ========================================================================== */
.site-footer { background: #071a30; color: #92a8bf; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--ff-head); font-weight: 700; font-size: 19px; margin-bottom: 14px; }
.footer-logo .logo-mark { width: 38px; height: 38px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: #92a8bf; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 11px; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Sticky mobile call bar */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 190;
  display: none;
  background: var(--red);
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.mobile-call-bar svg { width: 19px; height: 19px; }

/* 404 */
.error-page { text-align: center; padding: 120px 0; }
.error-page .error-code {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(70px, 14vw, 140px);
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 6px;
}

/* Thank you */
.thankyou-page { text-align: center; padding: 130px 0; }
.thankyou-icon {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(47,158,68,0.1);
  color: #1e7a35;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-icon svg { width: 46px; height: 46px; }

/* Utilities */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar-left span:last-child { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone small { display: none; }
  section { padding: 58px 0; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 58px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 26px; }
  .hero { padding: 56px 0 78px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy);
  color: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  padding: 22px 24px 40px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-top .logo { color: var(--white); }
.mobile-nav-top .logo-text-sub { color: #9fb6cc; }
.mobile-nav-close {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav a {
  display: block;
  padding: 15px 4px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 19px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .sub-links { padding-left: 14px; }
.mobile-nav .sub-links a { font-size: 16px; font-weight: 500; color: #cfe0f2; padding: 12px 4px; }
.mobile-nav-cta { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
