/* =========================================================
   Wave Auto Glass — Stylesheet
   Palette: Navy (#0B2545) · Sky Blue (#2E86C1) · Accent (#13B5EA)
            White (#FFFFFF) · Light gray (#F4F7FA) · Dark text (#1A2A3A)
   ========================================================= */

:root {
  --navy: #0B2545;
  --navy-dark: #081B36;
  --sky: #2E86C1;
  --sky-light: #5DADE2;
  --accent: #13B5EA;
  --white: #ffffff;
  --bg: #F4F7FA;
  --text: #1A2A3A;
  --muted: #5B6B7D;
  --border: #E1E8EF;
  --success: #16A34A;
  --shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 18px 44px rgba(11, 37, 69, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Account for sticky header height so anchor jumps don't hide the title */
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration: none; }
a:hover { color: var(--navy); }

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

/* ===================== TOP UTILITY BAR ===================== */
.topbar {
  background: var(--navy-dark);
  color: #cfe1f5;
  font-size: 0.88rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: #cfe1f5; }
.topbar a:hover { color: var(--white); }
.topbar .tb-left span { margin-right: 18px; }
.topbar .tb-left i { color: var(--accent); margin-right: 6px; }

/* ===================== HEADER / NAV ===================== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-text .tag {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 10px 10px;
  border-radius: 6px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--sky);
  background: rgba(46, 134, 193, 0.06);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: -2px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--sky) 0%, var(--accent) 100%);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(19, 181, 234, 0.4);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 37, 69, 0.28);
}
/* Prevent the active-link underline from appearing under the CTA pill */
.nav-cta::after,
.nav-cta.active::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(11,37,69,0.88), rgba(46,134,193,0.78)),
    url("https://images.unsplash.com/photo-1595977910374-793e731cb36e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--accent); }
.hero .lead {
  font-size: 1.18rem;
  color: #e2effb;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: all .2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover { background: var(--white); color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--sky); }

/* hero quick card */
.quick-card {
  background: var(--white);
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.quick-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.35rem;
}
.quick-card p { color: var(--muted); margin: 0 0 18px; font-size: 0.95rem; }
.quick-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.quick-card input, .quick-card select, .quick-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fbfdff;
  transition: border .2s, box-shadow .2s;
}
.quick-card input:focus, .quick-card select:focus, .quick-card textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.18);
}
.quick-card .btn { width: 100%; margin-top: 6px; }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  color: var(--sky);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: inline-block;
}
.section-head h2 {
  font-size: 2.3rem;
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
}
.section-dark .section-head h2 { color: var(--white); }
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
  margin: 0 auto;
}
.section-dark .section-head p { color: #cfe1f5; }

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
/* Whole card IS the link — entire box is clickable, no overlay hack needed */
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-light);
  outline: none;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; fill: var(--white); }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.25rem; }
.service-card p { color: var(--muted); margin: 0 0 14px; font-size: 0.96rem; }
.service-card .learn-more {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--sky);
  display: inline-block;
}
.service-card .learn-more::after {
  content: " →";
  transition: margin .2s;
  display: inline-block;
}
.service-card:hover .learn-more::after { margin-left: 6px; }

/* ===================== WARRANTY / FEATURES ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  text-align: center;
  padding: 26px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.section-dark .feature {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.feature .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.feature h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--navy);
}
.section-dark .feature h4 { color: var(--white); }
.feature p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.section-dark .feature p { color: #b7cae0; }

/* ===================== WARRANTY HIGHLIGHT ===================== */
.warranty-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.warranty-banner .seal {
  width: 100px;
  height: 100px;
  border: 3px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 800;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.1;
}
.warranty-banner .seal .big { font-size: 1.4rem; color: var(--accent); }
.warranty-banner h3 { margin: 0 0 6px; font-size: 1.55rem; }
.warranty-banner p { margin: 0; color: #d8e7f6; }
.warranty-banner .btn { white-space: nowrap; }

/* ===================== INSURANCE ===================== */
.insurance-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.insurance-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(225,236,247,0.85) 100%);
  border: 1px solid rgba(46,134,193,0.20);
  padding: 11px 22px 11px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.94rem;
  box-shadow: 0 2px 8px rgba(11,37,69,0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.insurance-pill::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(19,181,234,0.3);
}
.insurance-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11,37,69,0.12);
  border-color: var(--sky);
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(208,228,245,0.95) 100%);
}
/* "+ many more" gets a softer, dashed look so it reads as a category indicator */
.insurance-pill.more {
  background: transparent;
  border: 1px dashed rgba(46,134,193,0.45);
  color: var(--muted);
  font-style: italic;
  font-weight: 500;
  padding-left: 22px;
  box-shadow: none;
}
.insurance-pill.more::before { display: none; }
.insurance-pill.more:hover {
  background: transparent;
  border-color: var(--sky);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(11,37,69,0.06);
}

/* ===================== PROCESS ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  text-align: center;
  padding: 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
}
.step h4 { color: var(--white); margin: 0 0 6px; }
.step p { color: #cfe1f5; font-size: 0.92rem; margin: 0; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial .stars {
  color: #F5B301;
  margin-bottom: 12px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.testimonial p { color: var(--text); font-style: italic; margin: 0 0 18px; }
.testimonial .who { color: var(--navy); font-weight: 700; }
.testimonial .who small { display: block; color: var(--muted); font-weight: 400; font-style: normal; }

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: var(--sky-light);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, color .25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}
.faq-item summary:hover { color: var(--sky); }
.faq-item .faq-answer {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-item .faq-answer a { font-weight: 600; }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: linear-gradient(90deg, var(--navy), var(--sky));
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-band h2 { font-size: 2rem; margin: 0 0 12px; }
.cta-band p { color: #d6e6f6; margin: 0 0 24px; font-size: 1.05rem; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy-dark);
  color: #b8cadf;
  padding: 60px 0 0;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h5 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #b8cadf; }
.footer a:hover { color: var(--accent); }
.footer .brand-block .logo-text .brand { color: var(--white); }
.footer .brand-block p { margin: 16px 0 0; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===================== PAGE BANNER (sub-pages) ===================== */
.page-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(11,37,69,0.85), rgba(46,134,193,0.78)),
    var(--navy);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
  font-size: 2.6rem;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.page-banner .breadcrumb { color: #e2effb; font-size: 0.95rem; }
.page-banner .breadcrumb a { color: var(--accent); }

/* Per-page banner background photos (free Unsplash, no attribution required) */
.page-banner.services {
  background:
    linear-gradient(135deg, rgba(11,37,69,0.85), rgba(46,134,193,0.78)),
    url("https://images.unsplash.com/photo-1526459915562-c5ca724b1d02?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}
.page-banner.contact {
  background:
    linear-gradient(135deg, rgba(11,37,69,0.85), rgba(46,134,193,0.78)),
    url("https://images.unsplash.com/photo-1543528863-9e57878f7dee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

/* ===================== SERVICE DETAIL ===================== */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.svc-detail:nth-child(even) > .svc-visual { order: -1; }
.svc-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--sky-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.svc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,37,69,0.18), rgba(46,134,193,0.10));
  pointer-events: none;
}
/* Per-service photo backgrounds (free Unsplash, no attribution required) */
.svc-visual.windshield { background-image: url("https://images.unsplash.com/photo-1508786250378-b165238d6e8b?auto=format&fit=crop&w=900&q=80"); }
.svc-visual.chip       { background-image: url("https://images.unsplash.com/photo-1525318918729-f0d695cc5573?auto=format&fit=crop&w=900&q=80"); }
.svc-visual.adas       { background-image: url("https://images.unsplash.com/photo-1470162015499-2b9772941cde?auto=format&fit=crop&w=900&q=80"); }
.svc-visual.sidewindow { background-image: url("https://images.unsplash.com/photo-1602970890693-e576d76a900f?auto=format&fit=crop&w=900&q=80"); }
.svc-visual.mirror     { background-image: url("https://images.unsplash.com/photo-1618934116136-16d28f184b10?auto=format&fit=crop&w=900&q=80"); }
.svc-visual.sunroof    { background-image: url("https://images.unsplash.com/photo-1533630217389-3a5e4dff5683?auto=format&fit=crop&w=900&q=80"); }
.svc-text h2 { color: var(--navy); font-size: 1.9rem; margin: 0 0 14px; }
.svc-text p { color: var(--muted); font-size: 1.02rem; }
.svc-text ul { padding-left: 0; list-style: none; margin-top: 18px; }
.svc-text li {
  padding: 8px 0 8px 32px;
  position: relative;
}
.svc-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h2 { margin-top: 0; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.92rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fbfdff;
  transition: border .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.18);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 6px 0 18px;
}
.checkbox-row input { width: auto; margin-top: 4px; }

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-info h2 { margin-top: 0; color: var(--white); }
.contact-info p { color: #cfe1f5; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-item:last-child { border-bottom: none; }
.info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-item .icon svg { width: 20px; height: 20px; fill: var(--accent); }
.info-item h5 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
}
.info-item p { margin: 0; color: #cfe1f5; font-size: 0.94rem; }

.form-success {
  display: none;
  background: #e8f8ee;
  border: 1px solid var(--success);
  color: #14532d;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ===================== UTIL ===================== */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .warranty-banner { grid-template-columns: 1fr; text-align: center; }
  .warranty-banner .seal { margin: 0 auto; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) > .svc-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { padding: 70px 0 80px; }
  .hero h1 { font-size: 2.1rem; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .topbar .container { justify-content: center; text-align: center; }
  .warranty-banner { padding: 30px 20px; }
  .page-banner h1 { font-size: 1.9rem; }
}
