/* ==========================================================================
   SOV Company — design system
   ========================================================================== */

:root {
  --navy: #12233f;
  --navy-2: #1b3a63;
  --blue: #2f6fb5;
  --gold: #f2a71e;
  --gold-dark: #d88f0d;
  --green: #3c8a4c;
  --green-light: #57b06a;
  --ink: #23283a;
  --ink-soft: #576078;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-navy-soft: #eef2f8;
  --line: #e3e8f0;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(18, 35, 63, 0.1);
  --shadow-sm: 0 4px 14px rgba(18, 35, 63, 0.08);
  --container: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Poppins", "Montserrat", sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--navy-2); text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; vertical-align: -0.125em; flex-shrink: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #c9d3e4; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: #fff2df;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-navy .eyebrow { background: rgba(242,167,30,0.16); color: var(--gold); }

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.section-navy .btn-outline { color: #fff; }
.section-navy .btn-outline:hover { background: #fff; color: var(--navy); }
.hero .btn-outline, .page-hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero .btn-outline:hover, .page-hero .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gold); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.top-strip {
  background: var(--navy);
  color: #cfd8e8;
  font-size: 0.82rem;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7px;
  padding-bottom: 7px;
  gap: 12px;
}
.top-strip a { color: #cfd8e8; }
.top-strip svg { width: 15px; height: 15px; }
.mobile-call-bar svg { width: 18px; height: 18px; }
.btn svg { width: 18px; height: 18px; }
.card a.card-link svg { width: 15px; height: 15px; }
.top-strip .top-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.top-strip .top-badges span { display: inline-flex; align-items: center; gap: 6px; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 48px; height: 48px; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-text strong { font-family: "Poppins", sans-serif; font-size: 1.15rem; color: var(--navy); }
.brand .brand-text span { font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.03em; }

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
nav.main-nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--navy-2); background: var(--bg-navy-soft); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: "▾"; margin-left: 5px; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 250px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
  border: 1px solid var(--line);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 12px; border-radius: 6px; }
.dropdown a:hover { background: var(--bg-soft); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.header-phone svg { width: 20px; height: 20px; flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  margin: 6px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, #234a7d 100%);
  color: #fff;
  overflow: hidden;
  padding: 76px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(242,167,30,0.18), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(60,138,76,0.28), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 46px; align-items: center; }
.hero-video { position: relative; overflow: hidden; }
.hero-video::before { display: none; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(18,35,63,0.90) 0%, rgba(27,58,99,0.84) 55%, rgba(35,74,125,0.76) 100%);
}
.hero-video .hero-inner { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { font-size: 1.15rem; color: #d7deec; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-badges span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: #e6ebf5; }
.hero-badges svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-card .badge-circle {
  width: 100px;
  margin: 0 auto 14px;
}
.hero-card h3 { color: #fff; text-align: center; margin-bottom: 4px; }
.hero-card p.sub { text-align: center; color: #c9d3e4; margin-bottom: 20px; }
.quick-form { display: grid; gap: 10px; }
.quick-form input, .quick-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 0.95rem;
}
.quick-form label { font-size: 0.8rem; color: #d7deec; font-weight: 600; margin-bottom: -4px; }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 26px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 22px 34px; align-items: center; justify-content: center; }
.trust-strip .item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.trust-strip svg { width: 22px; height: 22px; color: var(--gold-dark); flex: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 20px 0 24px;
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumbs { margin-bottom: 8px; }
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 { margin-bottom: 0.25em; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(242,167,30,0.18), transparent 40%);
}
.page-hero .container { position: relative; }
.breadcrumbs { font-size: 0.85rem; color: #b9c4dc; margin-bottom: 14px; }
.breadcrumbs a { color: #b9c4dc; }
.breadcrumbs a:hover { color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #d7deec; max-width: 640px; font-size: 1.05rem; }
.page-hero .hero-actions { margin-top: 20px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-navy-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-wrap svg { width: 30px; height: 30px; color: var(--navy-2); }
.card h3 { margin-bottom: 8px; }
.card .price-tag { display: inline-block; font-weight: 700; color: var(--gold-dark); margin: 10px 0 4px; font-size: 0.95rem; }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy-2); margin-top: 8px; }
.card a.card-link:hover { color: var(--gold-dark); }

.service-card { display: flex; flex-direction: column; }

/* ---------- Why us / features ---------- */
.feature-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.feature-row .icon-wrap { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--bg-navy-soft); display: flex; align-items: center; justify-content: center; }
.feature-row .icon-wrap svg { width: 26px; height: 26px; color: var(--green); }
.feature-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.feature-row p { margin: 0; font-size: 0.95rem; }

/* ---------- Gallery / before-after ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-navy-soft);
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.gallery-item .ba-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 999px; text-transform: uppercase;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.gallery-item.hidden-item { display: none; }
.load-more-wrap { text-align: center; margin-top: 34px; }

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 16, 28, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 60px 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-figure { max-width: 1100px; max-height: 100%; width: 100%; text-align: center; }
.lightbox-figure img { max-width: 100%; max-height: 74vh; margin: 0 auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-caption { color: #fff; font-weight: 700; margin-top: 16px; font-size: 0.95rem; }
.lightbox-counter { color: #9fb0cc; font-size: 0.82rem; margin-top: 4px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; background: rgba(255,255,255,0.1); border: none; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--navy); }
.lightbox-close { top: 24px; right: 24px; width: 46px; height: 46px; }
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev svg, .lightbox-next svg { width: 26px; height: 26px; }
@media (max-width: 720px) {
  .lightbox-overlay { padding: 90px 12px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; }
  .lightbox-prev { left: 6px; } .lightbox-next { right: 6px; }
  .lightbox-close { top: 14px; right: 14px; }
}
.photo-banner { border-radius: var(--radius); overflow: hidden; margin: 34px 0; border: 1px solid var(--line); }
.photo-banner img { width: 100%; height: 380px; object-fit: cover; display: block; }
.photo-credit { font-size: 0.72rem; color: var(--ink-soft); text-align: right; margin-top: -26px; margin-bottom: 20px; opacity: 0.85; }
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bg-navy-soft) 0%, #e4ecf7 100%);
  color: var(--ink-soft);
  text-align: center;
  padding: 18px;
}
.photo-placeholder svg { width: 34px; height: 34px; color: var(--navy-2); opacity: 0.55; }
.photo-placeholder span { font-size: 0.82rem; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; color: var(--ink); margin-bottom: 14px; }
.testimonial-card .who { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.testimonial-card .who span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.82rem; }
.testimonial-note {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-navy-soft); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy-2); transition: transform 0.2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p { padding-bottom: 20px; margin: 0; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Service areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 24px; }
.areas-grid li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.areas-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.areas-groups h3 { font-size: 1rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
.form-row label { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--navy-2);
}
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; }
.form-status { font-size: 0.9rem; font-weight: 700; margin-top: 12px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #c0392b; }

.form-success { text-align: center; padding: 34px 10px; }
.form-success .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-navy-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success .icon-wrap svg { width: 30px; height: 30px; color: var(--green-light); }
.form-success h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.3rem; }
.form-success p { color: var(--ink-soft); margin: 0; max-width: 360px; margin-left: auto; margin-right: auto; }

.hero-card .form-success .icon-wrap { background: rgba(255,255,255,0.14); }
.hero-card .form-success h3 { color: #fff; }
.hero-card .form-success p { color: #c9d3e4; }

.contact-info-list { display: grid; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon-wrap { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--bg-navy-soft); display: flex; align-items: center; justify-content: center; }
.contact-info-item .icon-wrap svg { width: 24px; height: 24px; color: var(--navy-2); }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-info-item p { margin: 0; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--gold) 0%, #f6bb45 100%); color: var(--navy); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 26px 20px; }
.cta-band h2 { color: var(--navy); margin-bottom: 6px; }
.cta-band p { color: #4b3a12; margin: 0; }
.cta-band .btn-white { box-shadow: 0 8px 20px rgba(18,35,63,0.18); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: #c9d3e4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 46px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand strong { color: #fff; font-family: "Poppins", sans-serif; font-size: 1.1rem; }
footer.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
footer.site-footer a { color: #c9d3e4; }
footer.site-footer a:hover { color: var(--gold); }
footer.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); padding: 7px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; color: #fff; margin-top: 6px; }
.footer-badge svg { width: 16px; height: 16px; color: var(--gold); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--gold); }
.social-row svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #93a0bc; }
.footer-bottom a { color: #93a0bc; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  display: none;
  background: var(--navy);
  padding: 10px 16px;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.18);
}
.mobile-call-bar .row { display: flex; gap: 10px; }
.mobile-call-bar a { flex: 1; text-align: center; }

/* ---------- Misc ---------- */
.badge-circle { border-radius: 50%; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.list-check { display: grid; gap: 12px; }
.list-check li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.list-check svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 2px; }
.divider { height: 1px; background: var(--line); margin: 50px 0; border: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.tag-row span { background: var(--bg-navy-soft); color: var(--navy-2); font-weight: 700; font-size: 0.82rem; padding: 7px 14px; border-radius: 999px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: center; }
.stat-row .num { font-family: "Poppins", sans-serif; font-size: 2.1rem; font-weight: 700; color: var(--gold); }
.stat-row .lbl { font-size: 0.85rem; color: #c9d3e4; }

/* ---------- Header fixes ---------- */
.header-phone { white-space: nowrap; }
.header-inner { flex-wrap: nowrap; }
nav.main-nav > ul { flex-wrap: nowrap; }
nav.main-nav a { white-space: nowrap; }

/* ---------- Slogan strip ---------- */
.slogan-strip { background: var(--bg-navy-soft); border-bottom: 1px solid var(--line); padding: 14px 0; }
.slogan-strip .container { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; text-align: center; }
.slogan-strip .slogan-text { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); font-style: italic; }
.slogan-strip .slogan-text .accent { color: var(--gold-dark); }
.badge-trio { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.badge-trio span { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.85rem; color: var(--navy-2); }
.badge-trio svg { width: 18px; height: 18px; color: var(--gold-dark); }
.section-navy .slogan-quote { font-family: "Poppins", sans-serif; font-style: italic; font-size: 1.3rem; color: #fff; }
.section-navy .slogan-quote .accent { color: var(--gold); }

/* ---------- Split before/after cards ---------- */
.split-card-img { position: relative; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 3/2; margin: -30px -26px 18px; }
.split-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card.has-split-img { padding-top: 0; overflow: hidden; }
.card.has-split-img .icon-wrap { position: absolute; bottom: -22px; left: 22px; z-index: 2; background: #fff; box-shadow: var(--shadow-sm); }
.card.has-split-img .card-body { padding: 30px 26px 26px; }

/* ---------- Pair-with cards (related services) — bigger icons ---------- */
.pair-card .icon-wrap { width: 72px; height: 72px; border-radius: 18px; }
.pair-card .icon-wrap svg { width: 38px; height: 38px; }
.pair-card h3 { font-size: 1.15rem; }

/* ---------- Pricing tables ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table.price-table { width: 100%; border-collapse: collapse; min-width: 480px; background: #fff; }
table.price-table th { background: var(--navy); color: #fff; font-family: "Poppins", sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 14px 16px; text-align: left; }
table.price-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
table.price-table tr:last-child td { border-bottom: none; }
table.price-table tr:nth-child(even) td { background: var(--bg-soft); }
table.price-table td.price { color: var(--gold-dark); font-weight: 700; }
.price-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; }
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.addon-item { display: flex; justify-content: space-between; gap: 10px; align-items: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; }
.addon-item .addon-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.addon-item .addon-name span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; }
.addon-item .addon-price { font-weight: 700; color: var(--gold-dark); white-space: nowrap; }

/* ---------- Service areas: search + accordion ---------- */
.area-search-wrap { max-width: 620px; margin: 0 auto 40px; position: relative; }
.area-search-wrap input {
  width: 100%; padding: 16px 20px 16px 50px; border-radius: 999px; border: 2px solid var(--line);
  font-size: 1rem; font-family: inherit; box-shadow: var(--shadow-sm);
}
.area-search-wrap input:focus { outline: none; border-color: var(--navy-2); }
.area-search-wrap svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-soft); }
.area-search-result { max-width: 620px; margin: -20px auto 30px; text-align: center; font-weight: 700; padding: 14px 20px; border-radius: var(--radius-sm); display: none; }
.area-search-result.show { display: block; }
.area-search-result.ok { background: #e8f6ec; color: #1e7a35; border: 1px solid #b9e6c4; }
.area-search-result.no { background: #fdeeee; color: #a3312a; border: 1px solid #f3c6c3; }
.area-search-result.ok a, .area-search-result.no a { color: inherit; text-decoration: underline; }

.county-accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; background: #fff; }
.county-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: none; padding: 20px 24px; text-align: left; cursor: pointer;
}
.county-q h3 { margin: 0; font-size: 1.1rem; }
.county-q .count { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.county-q .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-navy-soft); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--navy-2); transition: transform 0.2s; }
.county-accordion.open .county-q .plus { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.county-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.county-accordion.open .county-a { max-height: 900px; }
.county-a-inner { padding: 0 24px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 20px; }
.county-a-inner span { padding: 6px 0; border-bottom: 1px dashed var(--line); font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.county-a-inner span.dimmed { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) and (min-width: 861px) {
  nav.main-nav a { padding: 10px 10px; font-size: 0.9rem; }
  .header-cta { gap: 8px; }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-groups { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  nav.main-nav { position: fixed; z-index: 550; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); background: #fff; flex-direction: column; align-items: stretch; padding: 10px 20px 30px; overflow-y: auto; transform: translateX(-100%); transition: transform 0.25s ease; }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav.main-nav a { padding: 14px 6px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 14px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a::after { float: right; }
  .header-phone span.label { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn-primary.header-cta-btn { display: none; }
  .top-strip .top-badges { display: none; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 62px; }
}

@media (max-width: 720px) {
  .section { padding: 52px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 14px; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .county-a-inner { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 60px; }
  .hero-badges { gap: 10px 16px; }
  .county-a-inner { grid-template-columns: 1fr; }
  .slogan-strip .container { flex-direction: column; gap: 10px; }
}
