/* ============================================================
   MR. DIRTY DUCTS — Free Moisture Detection Inspection LP
   Visual style: sky-blue + yellow CTAs + navy
   ============================================================ */

:root {
  --navy:        #0F2A4F;
  --navy-dark:   #081A33;
  --navy-mid:    #1a3b66;
  --sky:         #B5D1E3;     /* hero/section sky background */
  --sky-dark:    #97BAD0;
  --sky-soft:    #DDE9F1;     /* light tint */
  --yellow:      #FFC107;
  --yellow-dark: #E5AC00;
  --yellow-soft: #FFF1B8;
  --orange:      #F05A22;     /* sparingly for $300 callouts */
  --orange-dark: #D44812;
  --orange-soft: #FFF1EB;
  --gray-bg:     #F4F6F8;
  --gray-line:   #E1E6EB;
  --text:        #0F2A4F;
  --muted:       #5A6473;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(15,42,79,.08);
  --shadow-md:   0 10px 24px rgba(15,42,79,.12);
  --shadow-lg:   0 18px 44px rgba(15,42,79,.18);
  --radius:      14px;
  --radius-sm:   8px;
  --container:   1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 .55em;
  letter-spacing: -.005em;
  color: var(--navy);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.h-accent { color: var(--orange); }
.light { color: var(--white) !important; }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .15em;
  color: var(--orange);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-eyebrow.light { color: var(--yellow); }

.section-heading {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--navy);
  line-height: 1.18;
}

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .98rem;
  border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 0 var(--yellow-dark), var(--shadow-sm);
}
.btn-primary:hover {
  background: #FFD13F;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--yellow-dark), var(--shadow-md);
}
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--yellow-dark), var(--shadow-sm); }

.btn-outline {
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border: 2px solid var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-large { padding: 18px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.center-cta { display: flex; margin: 30px auto 8px; max-width: 320px; }
.btn-arrow { font-size: 1.15rem; transition: transform .2s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--sky);
  border-bottom: 1px solid rgba(15,42,79,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 16px;
}
.logo-wrap { display: inline-flex; align-items: center; }
.logo-img { width: 90px; height: 90px; object-fit: contain; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 3px 0 var(--yellow-dark), var(--shadow-sm);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { background: #FFD13F; transform: translateY(-1px); }
.header-cta-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy-dark);
  min-height: 600px;
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('https://www.mrdirtyducts.com/wp-content/uploads/2026/04/74c90277-b405-47c9-8375-ca8665dc479d.webp')
    center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy {
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .78rem;
  padding: 9px 16px;
  border-radius: 999px;
  margin: 0 0 22px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.eyebrow-star { color: var(--yellow); font-size: 1rem; }

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.95rem, 4.6vw, 3.2rem);
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 22px;
  text-shadow:
    0 2px 4px rgba(0,0,0,.6),
    0 4px 14px rgba(0,0,0,.55),
    0 8px 30px rgba(0,0,0,.5);
}
.h1-accent {
  display: block;
  color: var(--yellow);
  margin-top: 6px;
  text-shadow:
    0 2px 4px rgba(0,0,0,.7),
    0 4px 14px rgba(0,0,0,.6);
}

/* Hero Offer Callout */
.hero-offer {
  position: relative;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  margin: 0 0 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 2px rgba(255,255,255,.1);
  overflow: hidden;
  max-width: 600px;
}
.ho-flag {
  background: var(--navy);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .15em;
  padding: 0 14px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
}
.ho-body { padding: 16px 20px; flex: 1; position: relative; z-index: 1; }
.ho-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin: 0 0 4px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.ho-sub { margin: 0; font-size: .92rem; color: rgba(255,255,255,.95); }
.ho-value {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 4px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,42,79,.78);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
}
.meta-check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .8rem;
}

/* Hero badge */
.hero-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--orange);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transform: rotate(-8deg);
  border: 5px solid var(--white);
  z-index: 3;
}
.hb-value { font-size: 2rem; font-weight: 900; line-height: 1; }
.hb-label { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-align: center; margin-top: 3px; line-height: 1.15; }

@media (min-width: 960px) {
  .hero { min-height: 640px; padding: 80px 0; }
  .hero-badge { top: 50px; right: 50px; width: 150px; height: 150px; }
  .hb-value { font-size: 2.4rem; }
  .hb-label { font-size: .8rem; }
}
@media (max-width: 600px) {
  .hero-badge { width: 78px; height: 78px; top: 14px; right: 14px; border-width: 3px; }
  .hb-value { font-size: 1.3rem; }
  .hb-label { font-size: .55rem; }
}

/* ============ INTRO + TRUST ============ */
.intro-section {
  background: var(--white);
  padding: 50px 0 40px;
  text-align: center;
}
.intro-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 14px;
  color: var(--navy);
}
.intro-cities {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 30px;
  line-height: 1.8;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 48px;
}
.trust-badges img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  transition: transform .25s ease;
}
.trust-badges img:hover { transform: scale(1.06); }

/* ============ OFFER SPOTLIGHT ============ */
.offer-spotlight {
  background: var(--sky-soft);
  padding: 60px 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.offer-image {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.offer-image img { width: 100%; height: auto; display: block; }

.offer-copy .section-heading { margin-bottom: 14px; }
.offer-sub { font-size: 1.05rem; margin: 0 0 14px; color: var(--text); }
.offer-copy p { margin: 0 0 14px; }
.offer-checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.offer-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
}
.chk-y {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
  flex-shrink: 0;
  box-shadow: 0 2px 0 var(--yellow-dark);
}

@media (min-width: 720px) { .offer-checks { grid-template-columns: 1fr 1fr; gap: 8px 22px; } }
@media (min-width: 960px) {
  .offer-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; }
}

/* ============ WARNING SIGNS ============ */
.warning-section {
  background: var(--sky);
  padding: 64px 0 70px;
}
.warning-section .section-heading { color: var(--navy); margin-bottom: 36px; }
.warning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.warning-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.warning-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.warning-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.warning-caption {
  padding: 16px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.35;
}

@media (min-width: 640px) { .warning-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .warning-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.industry-quote {
  text-align: center;
  margin: 50px auto 0;
  max-width: 760px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}
.quote-text {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  color: var(--orange);
  font-style: italic;
  line-height: 1.2;
}

/* ============ WHY MATTERS ============ */
.why-matters {
  background: var(--white);
  padding: 70px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.why-copy p { color: var(--text); margin: 0 0 18px; font-size: 1.04rem; }
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 14px 0 24px;
}
.why-item {
  background: var(--sky-soft);
  border-left: 3px solid var(--yellow);
  padding: 10px 14px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 4px;
}
.why-outro { color: var(--text); }
.why-outro strong { color: var(--navy); }
.why-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (min-width: 960px) {
  .why-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
}

/* ============ MOISTURE DETAIL ============ */
.moisture-section {
  background: var(--sky-soft);
  padding: 70px 0;
}
.moisture-intro {
  max-width: 800px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
}
.moisture-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 0 0 44px;
}
.moisture-gallery figure {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: transform .25s ease, border-color .25s ease;
}
.moisture-gallery figure:hover { transform: translateY(-4px); border-color: var(--yellow); }
.moisture-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.moisture-gallery figcaption {
  padding: 12px 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  font-size: .95rem;
}
.moisture-gallery figcaption strong { color: var(--orange); }

@media (min-width: 640px) { .moisture-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .moisture-gallery { grid-template-columns: repeat(3, 1fr); } }

.moisture-causes {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.moisture-causes h3 { font-size: 1.25rem; color: var(--navy); margin: 0 0 18px; }
.cause-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cause-pill {
  background: var(--sky-soft);
  border: 2px solid var(--sky);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.moisture-close { margin: 14px 0 0; color: var(--text); }
.moisture-close strong { color: var(--orange); }

/* ============ INCLUDED / PROCESS ============ */
.included-section {
  position: relative;
  background: var(--navy-dark);
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
  isolation: isolate;
}
.included-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,26,51,.85), rgba(8,26,51,.92)),
    url('https://www.mrdirtyducts.com/wp-content/uploads/2026/04/ChatGPT-Image-Apr-3-2026-09_09_17-PM-930x620.webp') center/cover no-repeat;
}
.included-section .section-heading,
.included-section .section-eyebrow { color: var(--white); }
.included-sub {
  text-align: center;
  color: rgba(255,255,255,.85);
  margin: 0 0 40px;
  font-size: 1.08rem;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.process-card {
  background: var(--sky);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  color: var(--navy);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.process-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--navy);
  line-height: 1.25;
}
.process-card p { color: var(--navy); opacity: .82; margin: 0; font-size: .95rem; }

.process-card.highlight {
  background: var(--yellow);
  box-shadow: 0 4px 0 var(--yellow-dark), var(--shadow-md);
}
.process-card.highlight .process-num { color: var(--orange); }
.process-flag {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

/* ============ WHY CHOOSE ============ */
.why-choose-section {
  background: var(--white);
  padding: 70px 0;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.wc-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.wc-copy p { color: var(--text); margin: 0 0 22px; font-size: 1.04rem; }
.wc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.wc-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); }
@media (min-width: 960px) {
  .why-choose-grid { grid-template-columns: .95fr 1.05fr; gap: 56px; }
}

/* ============ REVIEWS ============ */
.reviews-section {
  background: var(--sky);
  padding: 70px 0;
}
.reviews-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
.review {
  background: var(--white);
  padding: 26px 24px;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review .stars { color: var(--yellow); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 10px; }
.review p { font-style: italic; color: var(--text); margin: 0 0 12px; line-height: 1.55; }
.review cite { font-style: normal; font-weight: 800; color: var(--navy); font-size: .95rem; }
@media (min-width: 960px) { .reviews-row { grid-template-columns: repeat(3, 1fr); } }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.final-inner { max-width: 820px; margin: 0 auto; }
.final-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.18;
}
.final-heading .h-accent { color: var(--yellow); }
.final-sub { color: rgba(255,255,255,.92); font-size: 1.1rem; margin: 0 0 30px; }
.final-sub strong { color: var(--yellow); }
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}
.final-cta .btn-dark { background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.4); }
.final-cta .btn-dark:hover { background: rgba(255,255,255,.18); border-color: var(--white); }
.final-disclaimer { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-inner img { width: 44px; height: 44px; object-fit: contain; }
.footer-inner p { margin: 0; font-size: .88rem; }
.footer-phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--yellow);
  font-size: 1.05rem;
}
.footer-phone:hover { color: var(--white); }
@media (min-width: 720px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============ FLOATING CALL ============ */
.floating-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 80;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}
.floating-call:hover { background: #FFD13F; }
.floating-call span {
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .85rem;
  margin-left: 4px;
}
.floating-call:hover span { display: inline-block; }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}
.modal.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,26,51,.78);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,.4);
  animation: slideUp .35s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 2rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  color: var(--muted);
  z-index: 2;
}
.modal-close:hover { color: var(--orange); }
.modal-header {
  padding: 26px 26px 18px;
  text-align: center;
  border-bottom: 1px solid var(--gray-line);
  background: var(--sky-soft);
  border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header img { width: 50px; height: 50px; object-fit: contain; margin: 0 auto 10px; }
.modal-header h2 {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 900;
  margin: 0 0 8px;
}
.modal-header p { font-size: .94rem; color: var(--text); margin: 0; }
.modal-header p strong { color: var(--orange); }

.booking-form { padding: 24px 26px 26px; }
.form-row { margin-bottom: 14px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 520px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-line);
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(15,42,79,.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.is-submitting .btn-label { opacity: .6; }
.is-submitting .btn-spinner { display: inline-block; }

.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin: 10px 0 0; }
.form-error { color: #c33; font-weight: 700; font-size: .92rem; margin: 10px 0 0; text-align: center; min-height: 1.2em; }
