:root {
  --navy: #1a3a6b;
  --navy2: #0f2447;
  --green: #2e7d32;
  --green2: #1b5e20;
  --green-lt: #43a047;
  --sky: #e8f1fb;
  --white: #ffffff;
  --off: #f5f8fc;
  --border: #dde8f4;
  --txt: #1a2e4a;
  --muted: #5a7295;
  --shadow: rgba(20, 50, 100, .12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--txt); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

.topbar { background: var(--navy2); padding: 8px 0; font-size: 13px; color: rgba(255,255,255,.75); }
.topbar-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { color: rgba(255,255,255,.8); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,.2); transition: all .2s; }
.topbar-right a:hover { background: rgba(255,255,255,.1); color: #fff; }
.topbar-right .btn-req { background: rgba(46,125,50,.25); border-color: rgba(46,125,50,.5); }

nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 12px var(--shadow); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 14px; font-weight: 700; color: var(--navy); padding: 8px 13px; border-radius: 6px; transition: all .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(46,125,50,.06); }
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }
.btn-call { display: flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all .25s; }
.btn-call:hover { background: var(--navy2); transform: translateY(-2px); }
.hamburger { display: none; font-size: 22px; color: var(--navy); background: none; padding: 6px; }
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 998; background: rgba(15,36,71,.85); backdrop-filter: blur(6px); }
.mobile-nav.open { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-nav a { font-size: 20px; font-weight: 800; color: #fff; }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 24px; font-size: 28px; color: #fff; background: none; }

.page-hero { background: linear-gradient(135deg, var(--sky) 0%, #c8dff5 100%); padding: 48px 24px 40px; text-align: center; }
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.page-label::before, .page-label::after { content: ''; width: 32px; height: 2px; background: var(--green); border-radius: 2px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--navy2); line-height: 1.15; margin-bottom: 10px; }
.page-hero p { font-size: 15px; color: var(--muted); max-width: 540px; margin: 0 auto; }

.page-main { background: var(--off); padding: 48px 24px 72px; min-height: 50vh; }
.page-container { max-width: 860px; margin: 0 auto; }
.page-container.wide { max-width: 720px; }
.page-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 32px; box-shadow: 0 8px 32px var(--shadow); }

.prose h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: var(--navy2); margin: 28px 0 10px; }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 20px; }
.prose li { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.prose a { color: var(--green); font-weight: 700; }
.prose a:hover { text-decoration: underline; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--white); transition: border-color .2s; }
.faq-item.open { border-color: rgba(46,125,50,.35); }
.faq-q { width: 100%; text-align: left; background: none; padding: 16px 18px; font-size: 14px; font-weight: 800; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-q i { color: var(--green); font-size: 12px; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 18px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.form-label .req { color: #c62828; }
.form-input, .form-select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--txt); background: var(--white); transition: border-color .2s; }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--navy); }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--txt); cursor: pointer; }
.radio-opt input { accent-color: var(--green); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-check input { margin-top: 3px; accent-color: var(--green); }
.form-check a { color: var(--green); font-weight: 700; }
.btn-submit { background: var(--green); color: #fff; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 800; transition: all .25s; margin-top: 8px; }
.btn-submit:hover { background: var(--green2); transform: translateY(-2px); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* Quote-widget style form (matches index.html) */
.form-section { background: var(--off); padding: 56px 24px 72px; }
.form-section-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.section-label { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.section-label-line { flex: 1; max-width: 80px; height: 2px; background: var(--green); border-radius: 2px; }
.section-label span { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--green); }
.section-h2 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--navy2); margin-bottom: 8px; line-height: 1.15; }
.section-h2 em { color: var(--green); font-style: italic; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

.quote-widget {
  max-width: 620px; margin: 0 auto;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 8px 48px rgba(15,36,71,.13);
  overflow: hidden; text-align: left;
}
.qw-top-bar { height: 5px; background: linear-gradient(90deg, var(--green) 0%, var(--green-lt) 100%); }
.qw-body { padding: 32px 32px 24px; }
.qw-title-row { margin-bottom: 22px; }
.qw-title { font-size: 22px; font-weight: 800; color: var(--navy2); margin-bottom: 4px; }
.qw-subtitle { font-size: 13px; color: var(--muted); font-weight: 500; }
.qw-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.qw-tab {
  flex: 1; min-width: 140px;
  padding: 10px 16px; border-radius: 99px;
  border: 1.5px solid var(--border);
  font-size: 13.5px; font-weight: 700; color: var(--muted);
  background: var(--white); cursor: pointer; transition: all .2s;
  text-align: center;
}
.qw-tab:hover { border-color: var(--green); color: var(--green); }
.qw-tab.active { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 3px 12px rgba(46,125,50,.3); }
.qw-tab-sub { display: block; font-size: 10px; font-weight: 600; opacity: .7; margin-top: 2px; }
.qw-tab.active .qw-tab-sub { opacity: .9; }
.qw-label { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.qw-field-group { margin-bottom: 0; }
.qw-select {
  width: 100%; border: 1.5px solid #e2e8f0; border-radius: 10px;
  padding: 13px 16px; font-size: 14px; font-weight: 600;
  color: var(--txt); background: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%231a3a6b'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  appearance: none; outline: none; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.qw-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,.1); }
input[type="date"].qw-select, input[type="time"].qw-select { background-image: none; }
.qw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.qw-input-wrap { position: relative; }
.qw-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 13px; pointer-events: none; }
.qw-input { padding-left: 38px !important; background-image: none !important; cursor: text; }
.qw-input::placeholder { color: #b0bec5; font-weight: 500; }
.qw-cta {
  width: 100%; background: var(--green); color: #fff;
  border: none; border-radius: 10px; padding: 15px;
  font-size: 15px; font-weight: 800; cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 18px rgba(46,125,50,.3); margin: 8px 0 14px;
}
.qw-cta:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,.4); }
.qw-trust { text-align: center; font-size: 12px; color: var(--muted); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.qw-trust i { color: var(--muted); font-size: 12px; }
.qw-trust a { color: var(--green); font-weight: 700; }
.qw-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 16px;
}
.qw-check input { margin-top: 3px; accent-color: var(--green); flex-shrink: 0; }
.qw-check a { color: var(--green); font-weight: 700; }
.schedule-fields { transition: opacity .2s; }
.schedule-fields.hidden { display: none; }

footer { background: var(--navy2); margin-top: auto; }
.footer-top { max-width: 1180px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 44px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 20px; max-width: 280px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: 13px; margin-bottom: 8px; font-weight: 600; transition: color .2s; }
.footer-contact a:hover { color: #86efac; }
.footer-contact a i { width: 16px; }
.footer-col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 10px; font-weight: 600; transition: color .2s; }
.footer-col a:hover { color: #86efac; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 24px; max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .page-hero h1 { font-size: 28px; }
  .page-card { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .qw-body { padding: 24px 20px 20px; }
  .qw-row { grid-template-columns: 1fr; }
  .section-h2 { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
