/* Shared styles for Nice Glass sub-pages (legal + service-area landing pages).
   Brand tokens match the homepage. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:     #1acbd0;
  --blue:     #1d73de;
  --navy:     #202a6f;
  --teal2:    #13a8ac;
  --white:    #ffffff;
  --offwhite: #f0f9ff;
  --text:     #1a2232;
  --muted:    #556070;
  --radius:   16px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(32,42,111,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; border-radius: 10px; }
.nav-brand { color: white; font-size: 1.1rem; font-weight: 700; }
.nav-brand span { color: var(--teal); }
.nav-phone {
  background: var(--teal);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-phone:hover { background: #22e0e6; transform: translateY(-1px); }

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.nav-links a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--teal); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162060 100%);
  padding: 74px 24px;
  text-align: center;
}
.page-hero .badge,
.svc-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,203,208,0.2);
  border: 1.5px solid rgba(26,203,208,0.5);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 .accent { color: var(--teal); }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26,203,208,0.4);
}
.btn-primary:hover { background: #22e0e6; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* TRUST STRIP */
.trust-strip { background: var(--offwhite); padding: 34px 24px; }
.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 3px; font-weight: 700; }
.trust-item span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.trust-icon { font-size: 1.8rem; margin-bottom: 6px; }

/* SECTIONS */
section { padding: 74px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-sub { font-size: 0.97rem; color: var(--muted); line-height: 1.75; max-width: 560px; }
.section-body p { font-size: 0.96rem; color: var(--text); line-height: 1.8; margin-bottom: 16px; max-width: 760px; }

/* SERVICE CARDS */
.services { background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { border-color: rgba(26,203,208,0.3); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(32,42,111,0.12); }
.service-icon { font-size: 2.3rem; margin-bottom: 14px; }
a.service-card { color: inherit; text-decoration: none; display: block; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
  margin-top: 40px;
}
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* AREA TAGS */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.area-tag {
  background: white;
  border: 1.5px solid rgba(26,203,208,0.4);
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
}

/* REVIEWS */
.reviews { background: var(--offwhite); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 2px 12px rgba(32,42,111,.06);
}
.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.review-author { font-size: 0.85rem; font-weight: 700; color: var(--navy); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(32,42,111,0.1);
  padding: 22px 0;
  max-width: 800px;
}
.faq-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 50%, var(--navy) 100%);
  text-align: center;
  padding: 84px 24px;
}
.cta-section .section-title { color: white; max-width: 580px; margin: 0 auto 12px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }
.cta-phone {
  display: block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-bottom: 26px;
}
.cta-phone:hover { opacity: 0.85; }
.btn-cta {
  background: white;
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  display: inline-block;
  transition: transform 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); }

/* LEGAL / PROSE PAGES */
.prose { max-width: 760px; margin: 0 auto; padding: 60px 24px 84px; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.prose .updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 38px; }
.prose h2 { font-size: 1.22rem; font-weight: 700; color: var(--navy); margin: 34px 0 12px; }
.prose p, .prose li { font-size: 0.96rem; color: var(--text); line-height: 1.78; margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose a { color: var(--teal2); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* Verbatim reproduction of the SMS consent disclosure shown on the quote form.
   Do not reword the text inside this block — it is the language reviewed and
   approved for the A2P messaging campaign and must match the form exactly. */
.consent-quote {
  background: var(--offwhite);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 8px 0 18px;
}
.consent-quote p { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin: 0; }

/* BREADCRUMB */
.breadcrumb { max-width: 1100px; margin: 0 auto; padding: 16px 24px 0; font-size: 0.82rem; color: var(--muted); }
.breadcrumb a { color: var(--teal2); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.83rem;
  line-height: 2;
}
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer strong { color: rgba(255,255,255,0.9); }
.footer-logo { width: 56px; height: 56px; border-radius: 12px; margin-bottom: 14px; }

/* FLOAT BTN */
.float-call {
  display: none;
  position: fixed;
  bottom: 22px; right: 22px;
  background: var(--teal);
  color: var(--navy);
  width: 60px; height: 60px;
  border-radius: 50%;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26,203,208,0.5);
  z-index: 999;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .float-call { display: flex; }
  nav { padding: 12px 18px; }
  .nav-brand { font-size: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  section { padding: 56px 20px; }
}


/* ── SERVICE PAGE COMPONENTS ───────────────────────────────────────── */

/* Split hero: copy on the left, photo on the right */
.svc-hero { background: linear-gradient(135deg, var(--navy) 0%, #162060 55%, #16256d 100%); padding: 0; }
.svc-hero-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 66px 24px 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.svc-hero-copy h1 {
  font-size: clamp(1.95rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: white;
  margin-bottom: 16px;
}
.svc-hero-copy h1 .accent { color: var(--teal); }
.svc-hero-copy > p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 30px;
}
.svc-hero .hero-ctas { justify-content: flex-start; margin-top: 0; }
.svc-hero-media { position: relative; }
.svc-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 22px 60px rgba(0,0,0,0.42);
  border: 3px solid rgba(26,203,208,0.55);
}
/* Uncropped hero photo — shows the full frame at its natural ratio */
.svc-hero-media.natural img { aspect-ratio: auto; height: auto; }

/* Before / after pair */
.ba-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.ba-pair .photo-card { position: relative; }
.ba-pair .photo-card img { aspect-ratio: 5 / 3; }
.ba-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 50px;
  color: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ba-tag.before { background: rgba(32,42,111,0.92); }
.ba-tag.after { background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%); }

.svc-hero-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(32,42,111,0.9);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(26,203,208,0.5);
}
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0 0 28px; padding: 0; }
.hero-points li {
  color: rgba(255,255,255,0.9);
  font-size: 0.87rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-points li::before { content: "✓"; color: var(--teal); font-weight: 800; }

/* Direct-response offer banner */
.offer-banner {
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%);
  color: white;
  text-align: center;
  padding: 16px 24px;
  font-size: 0.98rem;
  font-weight: 600;
}
.offer-banner strong { font-size: 1.12rem; font-weight: 800; }
.offer-banner a { color: white; text-decoration: underline; font-weight: 700; }

/* Benefit cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 22px;
  margin-top: 42px;
}
.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(32,42,111,0.08);
  border-top: 4px solid var(--teal);
  box-shadow: 0 3px 16px rgba(32,42,111,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 16px 42px rgba(32,42,111,0.14); }
.benefit-card .b-icon { font-size: 2.1rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* Numbered process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 44px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 26px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(26,203,208,0.4);
}
.process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 12px 0 10px; }
.process-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* Photo gallery with captions */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 42px;
}
.photo-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(32,42,111,0.1);
  display: flex;
  flex-direction: column;
}
.photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card figcaption {
  padding: 16px 20px 20px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}
.photo-card figcaption strong { display: block; color: var(--navy); font-size: 0.94rem; font-weight: 700; margin-bottom: 5px; }
.photo-card.wide { grid-column: span 2; }
.photo-card.wide img { aspect-ratio: 16 / 9; }

/* Debris / condition tiles (icon-led, used where photography is not available) */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.tile {
  background: linear-gradient(160deg, var(--offwhite) 0%, #e3f4ff 100%);
  border: 1px solid rgba(29,115,222,0.16);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.tile .t-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.tile strong { display: block; font-size: 0.92rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.tile span { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* Service-area CTA banner */
.area-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1b3a8f 55%, var(--blue) 100%);
  border-radius: 22px;
  padding: 46px 40px;
  color: white;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}
.area-banner h3 { font-size: clamp(1.3rem, 2.6vw, 1.85rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.area-banner p { font-size: 0.94rem; color: rgba(255,255,255,0.82); line-height: 1.75; }
.area-banner .banner-ctas { display: flex; flex-direction: column; gap: 12px; }
.area-banner .btn-cta { text-align: center; padding: 15px 28px; font-size: 0.95rem; }

/* Trust markers */
.trust-marks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.trust-mark {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.trust-mark .m-icon { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.trust-mark strong { display: block; color: white; font-size: 0.94rem; font-weight: 700; margin-bottom: 4px; }
.trust-mark span { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* Inline related-service links */
.related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.related-links a {
  background: white;
  border: 1.5px solid rgba(26,203,208,0.45);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.related-links a:hover { background: var(--offwhite); border-color: var(--teal); }

@media (max-width: 900px) {
  nav { flex-wrap: wrap; row-gap: 10px; }
  .nav-links { order: 3; width: 100%; gap: 20px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
  .nav-links::-webkit-scrollbar { display: none; }
  .svc-hero-wrap { grid-template-columns: 1fr; gap: 34px; padding: 48px 24px 56px; }
  .svc-hero-copy > p { max-width: none; }
  .area-banner { grid-template-columns: 1fr; padding: 36px 26px; }
}
@media (max-width: 640px) {
  .ba-pair { grid-template-columns: 1fr; }
  .photo-card.wide { grid-column: span 1; }
  .photo-card.wide img { aspect-ratio: 3 / 2; }
  .svc-hero .hero-ctas { flex-direction: column; align-items: stretch; }
  .svc-hero .hero-ctas a { text-align: center; }
}
