:root {
  --primary: #334155;
  --primary-light: #3f4d63;
  --secondary: #94A3B8;
  --tertiary: #E2E8F0;
  --neutral: #F8F9FA;
  --text-dark: #334155;
  --text-muted: #64748a;
  --white: #FFFFFF;
  --pastel-lavender: #D8DEEF;
  --pastel-sky: #CFE3EC;
  --pastel-peach: #F3DFD2;
  --pastel-sage: #D9E5D6;
  --pastel-rose: #F0DCE0;
  --vibrant-orange: #F97316;
  --vibrant-green: #16A34A;
  --vibrant-red: #E11D48;
  --vibrant-blue: #0EA5E9;
  --vibrant-violet: #8B5CF6;
  --vibrant-teal: #0D9488;
}

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

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 14.5px;
}

.nav-links a {
  color: #cbd5e1;
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-pill {
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-pill i {
  color: var(--vibrant-green);
}

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
  background: var(--vibrant-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.5);
  background: #ea6c0e;
}

.btn-outline {
  background: var(--vibrant-green);
  border: 1.5px solid rgba(255, 255, 255, 0.0);
  color: #fff;
}

.btn-outline:hover {
  background: #138a3e;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(148, 163, 184, 0.30), transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pastel-lavender);
  border: 1px solid rgba(216, 222, 239, 0.7);
  color: #3f4a63;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 30px;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p.lead {
  color: #cbd5e1;
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15.5px;
}

.service-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  max-width: 520px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7e2f0;
  font-size: 14px;
  font-weight: 500;
}

.chip .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pastel-sky);
  color: #2c4b56;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* hero side card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.hero-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-card p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  margin-top: 18px;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}

.hero-stat .lbl {
  font-size: 12px;
  color: #a8b3c4;
}

.emergency-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  border-radius: 10px;
  padding: 14px 16px;
}

.emergency-line .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.emergency-line .txt {
  color: #fff;
}

.emergency-line .txt small {
  display: block;
  font-size: 11.5px;
  opacity: 0.85;
}

.emergency-line .txt strong {
  font-size: 16px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--neutral);
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
}

.trust-item .ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.trust-item:nth-child(1) .ico {
  background: var(--pastel-peach);
  color: #8a5a2e;
}

.trust-item:nth-child(2) .ico {
  background: var(--pastel-sky);
  color: #2c4b56;
}

.trust-item:nth-child(3) .ico {
  background: var(--pastel-lavender);
  color: #3f4a63;
}

.trust-item:nth-child(4) .ico {
  background: var(--pastel-sage);
  color: #3f5c45;
}

section {
  padding: 80px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head .eyebrow-dark {
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-head h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 15.5px;
}

/* WHY CHOOSE */
.why {
  background: var(--tertiary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-copy h2 {
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 1.25;
}

.why-copy p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 16px;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #3f5c45;
  font-size: 15px;
  background: var(--pastel-sage);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.why-visual {
  background: linear-gradient(160deg, var(--primary) 0%, #0e2347 100%);
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-visual h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 22px;
}

.gauge-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gauge {}

.gauge .top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.gauge-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  background: var(--secondary);
  border-radius: 6px;
}

/* SERVICES */
.services {
  background: var(--neutral);
}

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

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(10, 25, 47, 0.08);
  border-color: transparent;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card:nth-child(9n+1) .service-icon {
  background: var(--pastel-sky);
}

.service-card:nth-child(9n+2) .service-icon {
  background: var(--pastel-peach);
}

.service-card:nth-child(9n+3) .service-icon {
  background: var(--pastel-lavender);
}

.service-card:nth-child(9n+4) .service-icon {
  background: var(--pastel-sage);
}

.service-card:nth-child(9n+5) .service-icon {
  background: var(--pastel-rose);
}

.service-card:nth-child(9n+6) .service-icon {
  background: var(--pastel-sky);
}

.service-card:nth-child(9n+7) .service-icon {
  background: var(--pastel-peach);
}

.service-card:nth-child(9n+8) .service-icon {
  background: var(--pastel-lavender);
}

.service-card:nth-child(9n+9) .service-icon {
  background: var(--pastel-sage);
}

.service-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* SERVICE AREAS */
.areas {
  background: var(--tertiary);
}

.areas-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.area-pin {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary);
  background: var(--neutral);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.area-pin .ico {
  color: #b8763a;
  font-size: 15px;
}

.map-card {
  background: var(--neutral);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-card svg {
  width: 90%;
  height: 90%;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(120deg, var(--primary), #0e2750 60%, var(--secondary) 130%);
  color: #fff;
  padding: 60px 0;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-band h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-band p {
  color: #e2e8f0;
  font-size: 14.5px;
}

/* ABOUT */
.about {
  background: var(--neutral);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-visual {
  background: var(--primary);
  border-radius: 18px;
  padding: 6px;
}

.about-visual-inner {
  background: linear-gradient(160deg, #0e2347, var(--primary));
  border-radius: 14px;
  padding: 46px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 300px;
}

.about-visual-inner .badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.about-visual-inner h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 8px;
}

.about-visual-inner p {
  color: #cbd5e1;
  font-size: 13.5px;
  max-width: 260px;
}

.about-copy h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 14px;
}

/* CONTACT / BOOK */
.book {
  background: var(--tertiary);
}

.book-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.book-info h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.book-info p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.info-row .ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--pastel-sky);
  color: #2c4b56;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-row h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.info-row p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.hours-card {
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-top: 8px;
}

.hours-card strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.hours-card span {
  font-size: 13px;
  color: #cbd5e1;
}

.form-card {
  background: var(--neutral);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 34px;
}

.form-card h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.form-card .sub {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid #cbd5e1;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: #fff;
  color: var(--text-dark);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 9px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease;
  font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #cbd5e1;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 12px;
}

.footer-col h5 {
  color: #fff;
  font-size: 12.5px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--vibrant-orange);
  border-radius: 2px;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color .2s, padding-left .2s;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #94a3b8;
}

@media (max-width:920px) {

  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .hero-grid,
  .why-grid,
  .areas-wrap,
  .about-grid,
  .book-wrap {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }
}

@media (max-width:640px) {
  .container {
    padding: 0 18px;
  }

  .nav {
    padding: 12px 16px;
  }

  .logo {
    font-size: 15px;
    gap: 8px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .nav-cta {
    gap: 10px;
  }

  .nav-cta .phone-pill {
    display: none;
  }

  .nav-cta .btn-primary {
    padding: 9px 14px;
    font-size: 13px;
  }

  .menu-toggle {
    font-size: 19px;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 1.22;
  }

  .hero p.lead {
    font-size: 14.5px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
  }

  .service-chip-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-stat-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .emergency-line {
    flex-wrap: wrap;
  }

  .trust-strip .container {
    gap: 14px 20px;
  }

  .trust-item {
    font-size: 12.5px;
  }

  .why-copy h2,
  .section-head h2 {
    font-size: 24px;
  }

  .why-visual {
    padding: 24px;
  }

  .service-card {
    padding: 22px 18px;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 280px;
  }

  .cta-band .container {
    text-align: center;
    justify-content: center;
  }

  .cta-band h3 {
    font-size: 20px;
  }

  .about-visual-inner {
    padding: 32px 20px;
    min-height: 240px;
  }

  .about-copy h2 {
    font-size: 24px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .book-info h2 {
    font-size: 24px;
  }

  .page-banner {
    padding: 48px 0 40px;
  }

  .page-banner h1 {
    font-size: 26px;
  }

  .page-banner p {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .top-bar-inner {
    padding: 8px 16px;
    gap: 10px;
  }

  .top-bar-msg {
    font-size: 11.5px;
    min-width: 0;
  }

  .top-bar-book {
    font-size: 11.5px;
    padding: 6px 11px;
  }
}

@media (max-width:380px) {
  .hero h1 {
    font-size: 24px;
  }

  .logo {
    font-size: 13.5px;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width:560px) {

  .services-grid,
  .areas-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip .container {
    justify-content: flex-start;
    gap: 18px;
  }
}

/* ===== Multipage additions ===== */
.nav-links a.active {
  color: #fff;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--pastel-peach);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-light);
  padding: 10px 24px 18px;
  gap: 14px;
}

.mobile-nav a {
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav a.active {
  color: #fff;
  font-weight: 700;
}

.mobile-nav.open {
  display: flex;
}

@media (max-width:920px) {
  .menu-toggle {
    display: block;
  }
}

/* Inner-page banner (for Services / About / Book / Contact) */
.page-banner {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}

.page-banner p {
  color: #cbd5e1;
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: #fff;
}

/* Contact page extras */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--neutral);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.contact-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.contact-card:nth-child(1) .ico {
  background: var(--pastel-sky);
  color: #2c4b56;
}

.contact-card:nth-child(2) .ico {
  background: var(--pastel-peach);
  color: #8a5a2e;
}

.contact-card:nth-child(3) .ico {
  background: var(--pastel-lavender);
  color: #3f4a63;
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width:768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Top sticky emergency bar ===== */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
  border-bottom: 2px solid #e8c9b3;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
}

.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 24px;
  flex-wrap: wrap;
}

.top-bar-msg {
  font-size: 13px;
  font-weight: 600;
  color: #7a4a22;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 220px;
}

.top-bar-msg i {
  color: var(--vibrant-orange);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.top-bar-call {
  font-size: 13px;
  font-weight: 700;
  color: var(--vibrant-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-book {
  background: var(--vibrant-red);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease;
}

.top-bar-book:hover {
  transform: translateY(-1px);
  background: #c01148;
}

.top-bar-close {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #7a4a22;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

header {
  position: sticky;
  top: var(--topbar-h, 0px);
  z-index: 100;
}

@media (max-width:700px) {
  .top-bar-msg {
    font-size: 12px;
  }

  .top-bar-call {
    display: none;
  }
}

/* ===== Footer v2 (matches Quick Links / Services / Areas / Contact layout) ===== */
.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr 0.95fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 13.5px;
  color: #cbd5e1;
  max-width: 300px;
  margin: 14px 0 18px;
  line-height: 1.65;
}

.footer-logo span {
  color: var(--vibrant-orange);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social a:hover {
  background: var(--vibrant-orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-emergency {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  max-width: 300px;
}

.footer-emergency span {
  display: block;
  font-size: 12.5px;
  color: #7fd897;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.footer-emergency span i {
  margin-right: 6px;
  color: var(--vibrant-green);
}

.footer-emergency strong {
  color: #fff;
  font-size: 17px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  color: #fff;
  font-size: 13px;
  margin-top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item:nth-child(1) i {
  background: var(--vibrant-green);
}

.footer-contact-item:nth-child(2) i {
  background: var(--vibrant-blue);
}

.footer-contact-item:nth-child(3) i {
  background: var(--vibrant-violet);
}

.footer-contact-item:nth-child(4) i {
  background: var(--vibrant-orange);
}

.footer-contact-item span {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-contact-item strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.footer-contact-item em {
  display: block;
  font-size: 12px;
  color: #7fd897;
  font-style: normal;
  font-weight: 600;
  margin-top: 3px;
}

@media (max-width:920px) {
  .footer-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid-v2 {
    grid-template-columns: 1fr;
  }
}