/* ============================================================
   COLUMBUS GARAGE DOOR SERVICE — style.css
   Palette: #3A3A3A topbar · #2B2B2B nav/footer · #FFFFFF body
            #F5F5F5 sections · #FFBF00 accent
   Typography: Barlow Condensed (headings) · Barlow (body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --dark:          #2B2B2B;
  --dark-top:      #3A3A3A;
  --dark-mid:      #444444;
  --dark-light:    #666666;
  --yellow:        #FFBF00;
  --yellow-hover:  #E6AC00;
  --yellow-light:  #FFF8E1;
  --yellow-mid:    #FFE082;
  --white:         #FFFFFF;
  --off-white:     #F9F9F9;
  --gray-light:    #F5F5F5;
  --gray-mid:      #E8E8E8;
  --gray-border:   #DCDCDC;
  --gray-text:     #666666;
  --gray-dark:     #444444;
  --text-primary:  #1A1A1A;
  --text-secondary:#555555;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  --transition: 0.18s ease;
  --max-width: 1240px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark-top);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 24px;
  font-size: 12px;
  color: #BDBDBD;
}

.topbar-inner {
  display: flex;
  gap: 20px;
}

.topbar-item { font-weight: 400; }

.topbar-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}

.topbar-phone:hover { color: #fff; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav-logo-main {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links > li > a:hover {
  color: var(--dark);
  background: var(--yellow-light);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}

.dropdown-menu li a:hover {
  color: var(--dark);
  background: var(--yellow-light);
}

/* Nav phone */
.nav-phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}

.nav-phone:hover { color: var(--dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,26,0.82) 0%,
    rgba(26,26,26,0.58) 50%,
    rgba(26,26,26,0.22) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  padding: 80px 24px;
  max-width: 680px;
  margin-left: max(24px, calc((100vw - var(--max-width)) / 2));
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: background var(--transition), border-color var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--dark);
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip {
  padding: 48px 0;
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-border);
}

.services-strip-header {
  text-align: center;
  margin-bottom: 32px;
}

.services-strip-header h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  margin-bottom: 4px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-mid);
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.service-card:hover .card-link { color: var(--dark); }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 72px 0; }

.bg-white   { background: var(--white); }
.bg-gray    { background: var(--gray-light); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.bg-dark    { background: var(--dark); }
.bg-off-white { background: var(--off-white); }

/* Section header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header-light { color: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
}

.section-label-light {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 10px;
  display: block;
}

.section-header h2,
.section-header-light h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
}

.text-light { color: var(--white) !important; }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

.section-sub-light { color: rgba(255,255,255,0.65); }

.location-grid-second { margin-top: 20px; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-text { display: flex; flex-direction: column; gap: 16px; }
.split-text .section-label { margin-bottom: 0; }

.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.1;
  color: var(--dark);
}

.split-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Field note / anecdote */
.field-note {
  background: var(--yellow-light);
  border-left: 3px solid var(--yellow);
  padding: 16px 18px;
  font-size: 14px;
  font-style: italic;
  color: var(--dark-mid) !important;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.65;
}

/* ============================================================
   PROCESS GRID
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--yellow-mid);
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
}

.process-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   NEIGHBORHOOD / LOCATION CARDS
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.location-card {
  background: var(--dark-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.location-card:hover img { transform: scale(1.03); }

.location-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.location-card-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
}

.location-card-body p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  flex: 1;
}

.card-link-light {
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  margin-top: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-item h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cta-phone {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
  transition: background var(--transition);
}

.btn-cta-phone:hover { background: var(--yellow-hover); }

.btn-cta-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), color var(--transition);
}

.btn-cta-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1A1A1A;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo { display: flex; flex-direction: column; }

.footer-logo-main {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-logo-sub {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
}

.footer-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.40);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.70); }

/* ============================================================
   SERVICE / LOCATION PAGE COMPONENTS
   ============================================================ */

/* Page hero */
.page-hero {
  background: var(--dark);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-content .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.breadcrumb a { color: rgba(255,255,255,0.50); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.30); }

.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
  max-width: 800px;
}

.page-hero-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 24px;
}

.page-hero-phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  display: inline-block;
  transition: color var(--transition);
}

.page-hero-phone:hover { color: var(--white); }

/* Page call card */
.page-call-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.page-call-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.page-call-card .pcc-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pcc-phone {
  display: block;
  background: var(--yellow);
  color: var(--dark);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: background var(--transition);
}

.pcc-phone:hover { background: var(--yellow-hover); }

.pcc-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-mid);
}

.pcc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pcc-dot {
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sidebar layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.main-content { display: flex; flex-direction: column; gap: 32px; }

.main-content h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 12px;
}

.main-content h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 10px;
}

.main-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 14px;
}

.main-content p:last-child { margin-bottom: 0; }

.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }

/* Content image */
.content-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 8px 0 16px;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Pricing callout */
.pricing-callout {
  background: var(--yellow-light);
  border: 1px solid var(--yellow-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pricing-callout h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--dark);
  margin-bottom: 14px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--yellow-mid);
  font-size: 13px;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row-label { color: var(--dark-mid); font-weight: 400; }
.pricing-row-value { color: var(--dark); font-weight: 700; }

/* Related services */
.related-services {
  padding: 56px 0;
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.related-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}

.related-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
}

.related-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.3px;
}

.btn-form-submit:hover { background: var(--yellow-hover); }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.thankyou-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--dark);
}

.thankyou-inner h1 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
}

.thankyou-inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .location-grid        { grid-template-columns: 1fr 1fr; }
  .process-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .split                { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse        { direction: ltr; }
  .split-image img      { height: 300px; }
  .services-grid        { grid-template-columns: 1fr 1fr; }
  .faq-grid             { grid-template-columns: 1fr; }
  .related-grid         { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar              { position: static; }
  .cta-inner            { flex-direction: column; align-items: flex-start; }
  .nav-links            { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-mid); padding: 12px 0; gap: 0; box-shadow: var(--shadow-md); }
  .nav-links.nav-open   { display: flex; }
  .nav-links > li > a   { padding: 12px 24px; border-radius: 0; }
  .dropdown-menu        { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-light); padding: 0; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a   { padding: 10px 40px; }
  .nav-toggle           { display: flex; }
  .nav-phone            { display: none; }
  .site-header          { position: sticky; }
  .nav-inner            { position: relative; }
  .trust-strip-inner    { gap: 20px; }
}

@media (max-width: 640px) {
  .topbar               { padding: 6px 16px; }
  .topbar-inner         { display: none; }
  .hero-content         { padding: 60px 24px; margin-left: 0; }
  .hero-h1              { font-size: 30px; }
  .services-grid        { grid-template-columns: 1fr; }
  .location-grid        { grid-template-columns: 1fr; }
  .process-grid         { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .related-grid         { grid-template-columns: 1fr; }
  .cta-actions          { flex-direction: column; width: 100%; }
  .btn-cta-phone,
  .btn-cta-secondary    { text-align: center; }
  .content-section      { padding: 48px 0; }
}

.btn-primary-spaced {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  margin-top: 8px;
  transition: background var(--transition);
}
.btn-primary-spaced:hover { background: var(--yellow-hover); }
