/* ========== Base ========== */
:root {
  --brand: #B32121;       /* deep navy */
  --accent: #0B2E59;      /* teal accent */
  --ink: #0A0D12;
  --muted: #5B6572;
  --bg: #FFFFFF;
  --panel: #F4F7FA;
  --ring: rgba(46,196,182,.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.5; }
h1,h2,h3 { font-family: Montserrat, Inter, system-ui, sans-serif; margin: 0 0 .5rem; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.container { width: min(1120px, 92%); margin-inline: auto; }
/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-bottom: 1px solid #e9eef3; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--brand); color: white; font-weight: 700; }
.brand-text small { display: block; color: var(--muted); }
.nav { display: grid; grid-auto-rows: min-content; gap: .75rem; align-items: start; overflow: hidden; max-height: 0; transition: max-height 400ms ease; width: 100%; order: 3; }
.nav.open { max-height: 800px; }
.nav a { display: block; padding: .6rem 0; }
.nav a { text-decoration: none; color: var(--ink); }
.nav a.btn { color: white; display: inline-flex; padding: .8rem 1rem; }
.nav-toggle { display: inline-flex; background: transparent; border: none; font-size: 1.4rem; }
@media (min-width: 900px) { .header-inner { flex-wrap: nowrap; } .nav { display: inline-flex; max-height: none !important; overflow: visible; flex-direction: row; align-items: center; gap: 1rem; width: auto; order: 0; } .nav a { padding: 0; display: inline-flex; } .nav-toggle { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem 1rem; border-radius: 12px; text-decoration: none; font-weight: 600; border: 2px solid transparent; }
.btn-primary { background: var(--brand); border-color: var(--brand); color: white; }
.btn-ghost { background: white; border-color: #e5eaf0; color: var(--ink); }
.btn:focus-visible { outline: 0; box-shadow: 0 0 0 4px var(--ring); }
/* Hero */
.hero { position: relative; min-height: 72vh; display: grid; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.hero-inner { position: relative; padding: 5rem 0 4rem; color: white; }
.hero-inner p { color: #EAF2F9; max-width: 60ch; }
.hero .accent { color: var(--accent); }
.hero-ctas { display: flex; gap: .75rem; margin: 1rem 0 1.25rem; flex-wrap: wrap; }
.trust { display: flex; gap: 1rem; padding: 0; margin: .5rem 0 0; list-style: none; color: #cfe7f1; flex-wrap: wrap; }
/* Sections */
section { padding: 3rem 0; }
.sub { color: var(--muted); }
/* Services & Pricing */
.price-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 700px) { .price-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.card { background: white; border: 1px solid #e6edf3; border-radius: 16px; padding: 1rem; display: grid; gap: .6rem; }
.card h3 { margin-bottom: .25rem; }
.card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.add-ons { margin-top: 1.25rem; }
.add-ons h3 { margin-bottom: .5rem; }
.note { display: grid; gap: .6rem; place-items: start; margin-top: 1rem; }
/* Service Area */
.service-area .badge-columns { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 800px) { .service-area .badge-columns { grid-template-columns: 1fr 1fr; } }
.service-area .badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .6rem; }
.service-area .badges span { padding: .4rem .7rem; background: var(--panel); border-radius: 999px; border: 1px solid #e6edf3; }
/* Gallery */
.gallery .grid { display: grid; gap: .5rem; grid-template-columns: repeat(2, 1fr); }
.gallery .grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
@media (min-width: 900px) { .gallery .grid { grid-template-columns: repeat(4, 1fr); } }
.ba-figure { position: relative; overflow: hidden; border-radius: 16px; margin: 1rem 0 1.25rem; }
.ba-figure img { display: block; width: 100%; height: auto; }
.ba-figure .ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); transition: clip-path .2s ease; }
.ba-figure input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
/* Reviews */
.review-grid { display: grid; gap: 1rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 900px) { .review-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
blockquote { background: white; border: 1px solid #e6edf3; border-radius: 16px; padding: 1rem; }
blockquote .stars { color: #F5B301; margin-bottom: .25rem; }
/* Map */
.service-map .map { width: 100%; height: 420px; border-radius: 16px; overflow: hidden; border: 1px solid #e6edf3; }
.map-legend { display: flex; gap: .5rem; margin-top: .6rem; flex-wrap: wrap; }
.map-legend .badge { padding: .35rem .6rem; border-radius: 999px; background: #F4F7FA; border: 1px solid #e6edf3; font-size: .9rem; }
.ring15 { background: rgba(46,196,182,.18); border-color: rgba(46,196,182,.35); }
.ring30 { background: rgba(10,61,98,.12); border-color: rgba(10,61,98,.35); }
.ring60 { background: rgba(10,13,18,.08); border-color: rgba(10,13,18,.25); }
/* Contact */
.quote-form .grid { display: grid; gap: .75rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
.quote-form label { display: grid; gap: .35rem; font-weight: 600; }
.quote-form input, .quote-form select, .quote-form textarea { border: 1px solid #dce3eb; border-radius: 12px; padding: .8rem .9rem; font: inherit; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 0; box-shadow: 0 0 0 4px var(--ring); }
.quote-form label.full { grid-column: 1/-1; }
@media (min-width: 900px) { .quote-form .grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
/* Footer */
.site-footer { background: #0b1220; color: #d3dae6; }
.footer-grid { display: grid; gap: 2rem; padding: 2rem 0; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-links, .footer-contact { display: grid; gap: .4rem; }
.footer-links a, .footer-contact a { color: #e7ecf5; text-decoration: none; }
.brand-row { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }
.legal { border-top: 1px solid rgba(255,255,255,.12); padding: .8rem 0 1.2rem; color: #93a0b5; }

/* --- Button hover visibility & underline fixes --- */
.btn { text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; text-decoration: none; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* --- Anchor offset so sticky header doesn't cover content --- */
section { scroll-margin-top: 96px; } /* approximate header height incl. margin */
html { scroll-behavior: smooth; }

.brand-logo { height: 48px; width: auto; border-radius: 4px; }

/* --- Global Brand Styling --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--brand);
}
.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-ghost {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
a {
  color: var(--accent);
}
a:hover {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: var(--brand);
}

section.contact {
  background-color: #f7f7f7;
  padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 { color: var(--brand); }
.btn-primary { background-color: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { background-color: var(--accent); border-color: var(--accent); color: #fff; }
.btn-ghost { border-color: var(--brand); color: var(--brand); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
a { color: var(--accent); }
a:hover { color: var(--brand); text-decoration: underline; text-decoration-color: var(--brand); }
section { scroll-margin-top: 96px; }
html { scroll-behavior: smooth; }

/* Contact form button alignment */
section.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.contact form button {
  align-self: flex-start;
}

/* Light gray background for Pricing/Services section */
section#services {
  background-color: #f7f7f7;
  padding: 2rem 0;
}

/* Align CTA buttons in contact form */
.quote-form .actions {
  display: flex;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: .75rem;
}

/* Footer icons */
.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-right: .5rem;
  vertical-align: -2px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}


.faq {
    background-color: #e6f4ff;
}

footer { background-color: rgb(13,38,78) !important; }

.footer-logo{height:44px;width:auto;display:inline-block;margin-right:.6rem;border-radius:4px;}

/* Two-column layout for add-ons & travel fee */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* Light red background for Payment & Guarantee section */
section#payment, section.payment {
  background-color: #FDECEC;
}

/* Footer 3-column layout */
footer {
  background: rgb(13,38,78); /* theme color */
  color: #f0f0f0; /* readable text */
  padding: 2rem 0; /* neat spacing */
}

.footer-grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-col .hours {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0.95;
}

.footer-col .hours li {
  margin: .3rem 0;
}

.footer-links-vert {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start;
}

.footer-links-vert a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  color: #ffffff; /* white links */
  font-size: .95rem;
  transition: color 0.2s ease;
}

.footer-links-vert a:hover {
  color: #cbd5e1; /* lighter hover */
}

.footer-col-right {
  text-align: left;
}

.legal {
  opacity: 0.85;
  font-size: .9rem;
}

/* Contain footer within site frame */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Desktop: 3 columns with centered middle + dividers */
@media(min-width:820px) {
  .footer-grid3 {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
  .footer-col-middle {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.15);
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 1.5rem;
  }
  .footer-col-middle .footer-links-vert {
    align-items: center; /* center links */
  }
}

/* Footer 2-column layout with inline contact links */
.footer-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-inline-links {
  margin: 0 0 0.5rem 0;
  font-size: .95rem;
}

.footer-inline-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-inline-links a:hover {
  color: #cbd5e1;
}

.legal {
  opacity: 0.85;
  font-size: .9rem;
  margin: 0;
}

@media(min-width:820px) {
  .footer-grid2 {
    grid-template-columns: 1fr 2fr;
  }
  .footer-col-right {
    text-align: right;
  }
  .footer-inline-links {
    display: inline-block;
  }
}

.hero * {
  position: relative;
  z-index: 1;
} */

/* --- HERO layering fix: keep image behind text + overlay --- */
.hero{position:relative;overflow:hidden;}
/* Any bg wrappers or media inside hero sit at the back */
.hero .bg,.hero .background,.hero .hero-bg,
.hero img,.hero picture,.hero picture img,.hero video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0 !important;
}
/* Overlay above image, below content */
.hero::before{content:"";position:absolute;inset:0;background:rgba(159, 162, 186, 0.65);z-index:1;pointer-events:none;}
/* All hero content stays above */
.hero > *{position:relative;z-index:2;}
.hero h1,.hero h2,.hero p,.hero .btn,.hero .button,.hero .container,.hero .content{position:relative;z-index:2;}
@media(max-width:640px){.hero::before{background:rgba(130, 125, 125, 0.45);}}


/* Ensure Submit Inquiry and Email Us buttons have equal height */
.quote-form .actions .btn,
.quote-form .actions a.btn,
.quote-form .actions button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: .8rem;
  padding-bottom: .8rem;
  min-height: 48px;
}

/* Inline error style to match form aesthetic */
.form-error {
  color: #B32121; /* matches --brand */
  margin-top: .35rem;
  font-size: .95rem;
  font-weight: 600;
}
