/* ============================================================
   Hollifield Heating and Cooling — Site Stylesheet
   Palette (2025 warm-drench direction):
     warm cream base   #faf5ec / #f4ecd d
     deep navy drench  #0e2a47 / #081c31
     steel blue        #1c67a8
     ember orange      #f26f13 / #d45a06
   No stark white anywhere — warm neutrals + saturated bands.
   ============================================================ */

:root {
  --cream: #faf5ec;
  --cream-deep: #f2e9da;
  --sand-line: #e7dbc5;
  --navy: #0e2a47;
  --navy-dark: #081c31;
  --blue: #1c67a8;
  --blue-light: #dcebf7;
  --orange: #f26f13;
  --orange-dark: #d45a06;
  --orange-soft: #fde3cd;
  --ink: #22303c;
  --gray-text: #55636f;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(14, 42, 71, 0.14);
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--cream);
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.section { padding: 72px 0; }

/* Color-drenched navy sections */
.section.alt {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #e8eef5;
}
.section.alt h1, .section.alt h2, .section.alt h3 { color: var(--white); }
.section.alt .section-subtitle { color: #b9c9d9; }
.section.alt .split p { color: #c9d6e2; }
.section.alt .checklist li { color: #c9d6e2; }
.section.alt .checklist li strong { color: var(--white); }
.section.alt .btn-blue { background: var(--orange); }
.section.alt .btn-blue:hover { background: var(--orange-dark); }

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, #061422 0%, var(--navy-dark) 50%, #0a2438 100%);
  color: #cfe0ee;
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 2px solid var(--orange);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #ffb877; font-weight: 700; }
.topbar .topbar-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.topbar .topbar-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.7);
  animation: topbar-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes topbar-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 214, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0); }
}
.topbar .topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 111, 19, 0.18);
  border: 1px solid rgba(242, 111, 19, 0.45);
  color: #ffd9b8;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.topbar .topbar-phone:hover {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  border-color: var(--orange);
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(14, 42, 71, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(8, 28, 49, 0.35);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
/* Logo styles moved to brand.css */

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  text-decoration: none;
  color: var(--white);
}
.header-phone:hover { text-decoration: none; color: var(--white); }
.header-phone small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9fb8cd;
  font-weight: 600;
}
.header-phone strong {
  font-size: 1.15rem;
  color: #ffb877;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.header-phone:hover strong { color: var(--orange); }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #d7e3ee;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(242, 111, 19, 0.40); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.85); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--navy); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-call-glow {
  box-shadow: 0 0 0 0 rgba(242, 111, 19, 0.5), 0 8px 24px rgba(242, 111, 19, 0.45);
  animation: call-glow 2.4s ease-in-out infinite;
}
@keyframes call-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 111, 19, 0.45), 0 8px 24px rgba(242, 111, 19, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(242, 111, 19, 0), 0 8px 28px rgba(242, 111, 19, 0.55); }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 600px 420px at 85% 15%, rgba(242, 111, 19, 0.35) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 100%);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hero.has-photo {
  background:
    linear-gradient(110deg, rgba(6, 18, 32, 0.94) 0%, rgba(8, 28, 49, 0.88) 42%, rgba(14, 42, 71, 0.55) 72%, rgba(14, 42, 71, 0.35) 100%),
    var(--hero-photo) center / cover no-repeat;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(28, 103, 168, 0.35);
}
.hero.has-photo::after { display: none; }
.hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(242, 111, 19, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, transparent 70%, rgba(6, 18, 32, 0.45) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-inner h1 { color: var(--white); }
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 111, 19, 0.16);
  border: 1px solid rgba(242, 111, 19, 0.55);
  color: #ffd9b8;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero .badge .stars { color: #ffc857; letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  margin-bottom: 18px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero h1 .accent {
  color: #ffb877;
  display: inline;
}
.hero p.lead {
  font-size: 1.18rem;
  color: #dce8f3;
  margin-bottom: 28px;
  max-width: 34em;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn-outline { backdrop-filter: blur(4px); }
.hero-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #a8c0d4;
}
.hero-note strong { color: #ffd9b8; }

/* Hero side card */
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-top: 5px solid var(--orange);
  max-width: 360px;
  margin-left: auto;
}
.hero-card .hc-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-card .hc-score {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-card .hc-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }
.hero-card .hc-stars + small,
.hero-card .hc-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 600;
}
.hero-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.hero-card ul {
  list-style: none;
  margin: 0 0 20px;
}
.hero-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--sand-line);
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card .btn { width: 100%; text-align: center; }
.hero-card .hc-phone {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.hero-card .hc-phone:hover { color: var(--orange); text-decoration: none; }
.hero-card .hc-phone small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.hero-trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}
.hero-trust > div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: #cfe0ee;
  backdrop-filter: blur(6px);
}
.hero-trust strong {
  display: block;
  color: #ffb877;
  font-size: 1.02rem;
  margin-bottom: 2px;
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--orange-soft);
  border-bottom: 1px solid #f2cba4;
}
.trustbar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
}
.trust-item { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.trust-item small { display: block; font-weight: 400; color: #7a6a52; }
.trust-item .stars { color: var(--orange-dark); }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: transform 0.15s ease;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); }
.card h3 { margin: 14px 0 10px; font-size: 1.2rem; }
.card p { color: var(--gray-text); font-size: 0.96rem; }
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .icon svg { width: 28px; height: 28px; stroke: var(--orange-dark); }
.card a.more { display: inline-block; margin-top: 14px; font-weight: 700; }

/* Photo-top service cards */
.card.card-photo {
  padding: 0 0 28px;
  border-top: none;
  display: flex;
  flex-direction: column;
}
.card.card-photo .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid var(--orange);
}
.card.card-photo .card-body {
  padding: 22px 28px 0;
}
.card.card-photo h3 { margin-top: 0; }
.card.card-photo .icon { display: none; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split h2 { font-size: 2rem; margin-bottom: 18px; }
.split p { color: var(--gray-text); margin-bottom: 16px; }
.checklist { list-style: none; margin: 18px 0 26px; }
.checklist li { padding: 7px 0 7px 32px; position: relative; color: var(--gray-text); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.split-art {
  border-radius: var(--radius);
  min-height: 340px;
  background:
    radial-gradient(ellipse 320px 240px at 75% 20%, rgba(242, 111, 19, 0.45) 0%, transparent 70%),
    linear-gradient(150deg, var(--blue) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.split-art svg { width: 140px; height: 140px; stroke: rgba(255, 255, 255, 0.85); }
.split-art img,
.split-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-art.split-photo-wrap {
  background: none;
  min-height: 0;
  padding: 0;
  display: block;
}
.split-art.split-photo-wrap img {
  min-height: 380px;
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.review-card .stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }
.review-card p { font-style: italic; color: var(--gray-text); margin: 14px 0; }
.review-card .reviewer { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.review-card .reviewer small { display: block; font-weight: 400; color: var(--gray-text); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 60%, #b44805 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { font-size: 2.1rem; margin-bottom: 12px; color: var(--white); }
.cta-band p { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.95; }
.cta-band .btn { background: var(--navy-dark); color: var(--white); }
.cta-band .btn:hover { background: var(--white); color: var(--orange-dark); }
.cta-band .phone-big { font-size: 1.6rem; font-weight: 800; color: var(--white); display: block; margin-top: 18px; }
.cta-band .phone-big:hover { text-decoration: none; opacity: 0.9; }

/* ---------- Service detail blocks ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--blue);
  padding: 36px;
  margin-bottom: 28px;
}
.service-detail h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-detail p { color: var(--gray-text); margin-bottom: 10px; }
.service-detail .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.service-detail .icon svg { width: 32px; height: 32px; stroke: var(--blue); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--orange); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--gray-text); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d8cdb9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
  background: var(--white);
}
.form-note { font-size: 0.85rem; color: var(--gray-text); margin-top: 14px; }
.form-status { margin-top: 14px; font-weight: 600; }

.info-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--orange);
  padding: 36px;
  margin-bottom: 24px;
}
.info-card h3 { margin-bottom: 18px; font-size: 1.25rem; color: var(--white); }
.info-card ul { list-style: none; }
.info-card li { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.98rem; }
.info-card li:last-child { border-bottom: none; }
.info-card a { color: #ffb877; font-weight: 700; }
.info-card .label { color: #9fb8cd; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-line);
}
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 500px 300px at 80% 20%, rgba(242, 111, 19, 0.30) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-dark), var(--blue));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero.has-photo {
  background:
    linear-gradient(180deg, rgba(6, 18, 32, 0.82) 0%, rgba(14, 42, 71, 0.72) 100%),
    var(--page-photo) center / cover no-repeat;
  padding: 88px 0;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}
.page-hero p { color: #d4e4f2; max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.page-hero .page-hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Photo gallery strip ---------- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.photo-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--navy);
}
.photo-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.photo-gallery figure:hover img { transform: scale(1.05); }
.photo-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(8, 28, 49, 0.88));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Service detail with side photo */
.service-detail.has-photo {
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.service-detail.has-photo .svc-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.service-detail.has-photo .svc-body {
  padding: 32px 32px 32px 0;
}
.service-detail.has-photo .icon { display: none; }

/* Full-bleed mid-page photo band */
.photo-band {
  padding: 0;
  margin: 0;
}
.photo-band img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #b8cbdc;
  padding: 56px 0 0;
  font-size: 0.95rem;
  border-top: 4px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer h4 { color: var(--white); margin-bottom: 16px; font-size: 1.05rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b8cbdc; }
.site-footer a:hover { color: #ffb877; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8aa2b8;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
}

/* ---------- Floating call button (mobile) ---------- */
.call-fab {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(242, 111, 19, 0.5);
}
.call-fab:hover { text-decoration: none; }

/* ---------- Chat widget ---------- */
.chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 210;
}
.chat-launcher {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(242, 111, 19, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
}
.chat-launcher:hover { background: var(--orange-dark); transform: scale(1.05); }
.chat-launcher.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(242, 111, 19, 0.55);
  animation: chat-pulse 1.6s ease-out infinite;
}
@keyframes chat-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.45); opacity: 0; }
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 360px;
  max-width: calc(100vw - 2rem);
  height: 480px;
  max-height: 72vh;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(14, 42, 71, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chat-in 0.2s ease;
  border: 1px solid var(--sand-line);
}
.chat-panel[hidden] { display: none; }
@keyframes chat-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.9rem 1rem;
  background: var(--navy);
  color: var(--white);
}
.chat-header .chat-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
}
.chat-header-text { flex: 1; min-width: 0; }
.chat-header-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.chat-header-text span {
  font-size: 0.8rem;
  color: #9fb8cd;
}
.chat-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.chat-close:hover { color: var(--orange); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--cream);
}

.chat-msg {
  max-width: 86%;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.chat-msg.bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--orange);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-msg a { color: var(--blue); font-weight: 700; }
.chat-msg.user a { color: #fff; text-decoration: underline; }

.chat-msg.typing { display: inline-flex; gap: 4px; align-items: center; }
.chat-msg.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a9a49b;
  animation: chat-blink 1s infinite;
}
.chat-msg.typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-msg.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-blink {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--cream);
}
.chat-chips:empty { padding: 0; }
.chat-chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--orange);
  background: var(--white);
  color: var(--orange-dark);
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.chat-chip:hover { background: var(--orange); color: var(--white); }

.chat-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.7rem;
  background: var(--white);
  border-top: 1px solid var(--sand-line);
}
.chat-input input {
  flex: 1;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid #d8cdb9;
  border-radius: 8px;
  background: var(--cream);
}
.chat-input input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 111, 19, 0.18);
  background: var(--white);
}
.chat-input button {
  width: 42px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.chat-input button:hover { background: var(--orange-dark); }

.chat-lead {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.chat-lead strong {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--navy);
}
.chat-lead span { font-size: 0.92rem; color: var(--gray-text); }
.chat-lead-btn {
  display: inline-block;
  margin-top: 0.35rem;
  text-align: center;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  text-decoration: none !important;
}
.chat-lead-btn:hover { background: var(--blue); }

.chat-nudge {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 240px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
  animation: chat-in 0.25s ease;
}
.chat-nudge:hover { border-color: var(--orange); }
.chat-nudge strong { color: var(--orange-dark); }

@media (max-width: 640px) {
  .chat-widget { bottom: 5.4rem; right: 1rem; }
  .call-fab { right: 1rem; bottom: 1rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-card { max-width: none; margin-left: 0; }
  .header-phone { display: none !important; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .service-detail.has-photo { grid-template-columns: 1fr; }
  .service-detail.has-photo .svc-body { padding: 24px 28px 28px; }
  .service-detail.has-photo .svc-img { min-height: 200px; max-height: 240px; }
}

@media (min-width: 901px) {
  .header-phone { display: flex; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .nav-toggle { display: block; }
  .site-header .container { position: relative; flex-wrap: wrap; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    box-shadow: var(--shadow);
    width: 100%;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0; }
  .main-nav li { border-top: 1px solid rgba(255, 255, 255, 0.10); }
  .main-nav a { display: block; padding: 14px 22px; }
  .header-cta { display: none; }
  .header-right { margin-left: auto; }
  .call-fab { display: block; }
  .service-detail { grid-template-columns: 1fr; }
  .topbar .topbar-alert { font-size: 0.8rem; }
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery img { height: 220px; }
  .photo-band img { height: 220px; }
  .card.card-photo .card-img { height: 200px; }
  .hero.has-photo { min-height: 0; padding: 48px 0 56px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 8px; }
  .logo-mark { width: 42px; height: 42px; }
  .logo-text strong { font-size: 1.05rem; }
  .logo-text span { font-size: 0.58rem; letter-spacing: 0.08em; }
}

/* ---------- Online scheduling wizard ---------- */
.sched-section { padding-top: 48px; }
.sched-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.sched-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  padding: 28px 28px 32px;
}
.sched-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.sched-step {
  border: 1px solid var(--sand-line);
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sched-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d8cdb9;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.sched-step.active {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--navy);
}
.sched-step.active span,
.sched-step.done span {
  background: var(--orange);
  color: #fff;
}
.sched-step.done { opacity: 0.9; }
.sched-panel h2 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.sched-help {
  color: var(--gray-text);
  margin-bottom: 20px;
  font-size: 0.96rem;
}
.sched-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sched-option {
  display: block;
  cursor: pointer;
  margin: 0;
}
.sched-option input { position: absolute; opacity: 0; pointer-events: none; }
.sched-option-body {
  display: block;
  border: 1.5px solid var(--sand-line);
  border-radius: 12px;
  padding: 14px 14px;
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.sched-option-body strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.sched-option-body small {
  color: var(--gray-text);
  font-size: 0.85rem;
  line-height: 1.35;
}
.sched-option.selected .sched-option-body {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 111, 19, 0.15);
}
/* modern browsers */
.sched-option:has(input:checked) .sched-option-body {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 111, 19, 0.15);
}
.sched-days,
.sched-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sched-day,
.sched-time {
  border: 1.5px solid var(--sand-line);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 10px;
  font: inherit;
  cursor: pointer;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.sched-day strong { display: block; font-size: 0.95rem; }
.sched-day span { display: block; font-size: 0.82rem; color: var(--gray-text); margin-top: 2px; }
.sched-day:hover,
.sched-time:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}
.sched-day.selected,
.sched-time.selected {
  border-color: var(--orange);
  background: var(--orange-soft);
  font-weight: 700;
}
.sched-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 26px;
  flex-wrap: wrap;
}
.sched-emergency {
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: #fff4e8;
  border: 1px solid #f2cba4;
}
.sched-emergency p { color: var(--gray-text); margin: 8px 0 14px; }
.sched-emergency .btn { margin-right: 8px; margin-bottom: 8px; }
.sched-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--sand-line);
}
.sched-summary div span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  font-weight: 700;
  margin-bottom: 4px;
}
.sched-summary strong {
  color: var(--navy);
  font-size: 0.95rem;
}
.sched-aside .info-card { margin-bottom: 0; }
@media (max-width: 900px) {
  .sched-layout { grid-template-columns: 1fr; }
  .sched-options,
  .sched-days { grid-template-columns: 1fr 1fr; }
  .sched-summary { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sched-steps { grid-template-columns: 1fr 1fr; }
  .sched-times { grid-template-columns: 1fr 1fr; }
  .sched-card { padding: 20px 16px 24px; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(8, 28, 49, 0.9));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
}

/* City page chips */
.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.city-links a {
  background: var(--white);
  border: 1px solid var(--sand-line);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.city-links a:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  text-decoration: none;
}

/* Google reviews embed frame */
.reviews-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-line);
  background: var(--white);
  min-height: 420px;
}
.reviews-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* Plan cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  padding: 32px 28px;
}
.plan-card h3 { margin-bottom: 10px; }
.plan-card p { color: var(--gray-text); margin-bottom: 14px; }
.plan-card .price-note {
  font-size: 0.9rem;
  color: var(--orange-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .plan-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.legal-page .narrow { max-width: 760px; }
.legal-page h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--navy);
}
.legal-page p,
.legal-page li {
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-page ul {
  margin: 0 0 16px 1.25rem;
}
.legal-page .legal-updated {
  font-size: 0.9rem;
  color: #7a8a98;
  margin-bottom: 8px;
}
.footer-bottom a {
  color: #9fb8cd;
  margin-left: 6px;
}
.footer-bottom a:hover { color: #ffb877; }

/* Trust chips row (home) */
.trust-item .trust-icon {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ---------- Eyebrow labels ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--orange);
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.eyebrow.left { text-align: left; }

/* ---------- Process steps (dark sections) ---------- */
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.process-grid li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.process-grid h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.process-grid p { color: #c9d6e2; font-size: 0.95rem; }

/* ---------- Town pills ---------- */
.town-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.town-list li {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Brands strip ---------- */
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
  align-items: center;
}
.brands span {
  font-weight: 800;
  font-size: 1.2rem;
  color: #9db0c2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Signs / symptom cards ---------- */
.sign-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.sign-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.sign-card p { color: var(--gray-text); font-size: 0.94rem; }

/* ---------- Emergency strip ---------- */
.emergency-strip {
  background: var(--navy-dark);
  border-left: 6px solid var(--orange);
  border-radius: var(--radius);
  color: var(--white);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.emergency-strip h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.emergency-strip p { color: #b9c9d9; }

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .emergency-strip { flex-direction: column; text-align: center; }
}
