/* =========================================
   ServiceBeaver - style.css v2
   Redesign: Navy + Cobalt + Orange palette
   Hand-coded, zero dependencies, no bloat
   ========================================= */

/* ── Self-hosted fonts (WOFF2, latin subset) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/raleway.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
  --navy:         #0F1F3D;
  --navy-mid:     #162847;
  --cobalt:       #374BBB;
  --cobalt-light: #4a60d4;
  --orange:       #F04527;
  --orange-dark:  #d03a1f;
  --white:        #ffffff;
  --off-white:    #f8f9fc;
  --text:         #1a1a1a;
  --text-mid:     #444444;
  --text-light:   #6b7280;
  --border:       #e4e7ee;
  --font-body:    'Inter', 'Open Sans', sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --max-width:    1170px;
  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 4px 20px rgba(15,31,61,0.10);
  --shadow-lg:    0 8px 40px rgba(15,31,61,0.16);
  --transition:   0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--navy); line-height: 1.15; }
h1 { font-size: 52px; font-weight: 700; margin-bottom: 1.2rem; }
h2 { font-size: 38px; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 26px; font-weight: 600; margin-bottom: 0.8rem; }
h4 { font-size: 20px; font-weight: 600; margin-bottom: 0.6rem; }
h5 { font-size: 17px; font-weight: 700; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-sub { font-size: 19px; color: var(--text-light); margin-bottom: 3rem; line-height: 1.6; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-cobalt { color: var(--cobalt); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,69,39,0.35); }
.btn-secondary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.btn-secondary:hover { background: var(--cobalt-light); border-color: var(--cobalt-light); color: #fff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-lg { font-size: 16px; padding: 18px 38px; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background var(--transition);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 72px;
}
.logo img { height: 46px; width: auto; }

.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 26px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-list > li > a:hover { color: var(--orange); }
.arrow { font-size: 8px; margin-left: 3px; opacity: 0.7; }

.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown li a:hover { background: #f0f3ff; color: var(--cobalt); padding-left: 26px; }
.dropdown-heading {
  padding: 12px 20px 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  cursor: default;
}

.header-actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--orange); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
  margin-top: 72px;
  overflow: visible;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; will-change: transform; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,31,61,0.42) 0%, rgba(15,31,61,0.22) 50%, rgba(55,75,187,0.05) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 80px 24px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(240,69,39,0.12);
  border: 1px solid rgba(240,69,39,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}
.hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.75), 0 8px 32px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.80); font-size: 19px; line-height: 1.7; margin-bottom: 2.2rem; max-width: 580px; text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 3px 12px rgba(0,0,0,0.7); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Trust Bar --- */
.trust-bar { background: var(--cobalt); padding: 16px 0; }
.trust-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2.5rem; align-items: center; }
.trust-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; font-family: var(--font-heading); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.trust-list li svg { flex-shrink: 0; opacity: 0.9; }
.trust-bar .stars { color: #ffe066; letter-spacing: 2px; font-size: 14px; }
.badge-bbb { background: #fff; color: var(--cobalt); font-weight: 800; font-size: 12px; padding: 3px 8px; border-radius: 3px; letter-spacing: 0.05em; }

/* --- Section Defaults --- */
.section-light { padding: 96px 0; background: var(--white); }
.section-tinted { padding: 96px 0; background: var(--off-white); }
.section-navy { padding: 96px 0; background: var(--navy); }
.section-cobalt { padding: 96px 0; background: var(--cobalt); }
.section-light h2,
.section-tinted h2 { color: var(--navy); }
.section-navy h2,
.section-cobalt h2 { color: #fff; }
.section-navy .section-sub { color: rgba(255,255,255,0.65); }
.section-cobalt .section-sub { color: rgba(255,255,255,0.75); }

/* --- Map Background --- */
.section-map-bg {
  position: relative;
  background-image: url('/staging/images/Map.JPG');
  background-size: cover;
  background-position: center;
}
.section-map-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.82);
  pointer-events: none;
}
.section-map-bg > * { position: relative; z-index: 1; }

/* --- Verticals Grid --- */
.verticals-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.vertical-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: border-top-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.vertical-tile:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  color: inherit;
}
.vertical-icon { font-size: 46px; margin-bottom: 1.2rem; line-height: 1; }
.vertical-tile h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.vertical-tagline { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.vertical-cta {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.vertical-tile:hover .vertical-cta { color: var(--orange); }

/* --- Why Choose Us --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-image { position: relative; }
.why-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.why-image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.why-image-badge strong { display: block; font-family: var(--font-heading); font-size: 32px; font-weight: 800; line-height: 1; }
.why-image-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }
.why-text h2 { margin-bottom: 0.6rem; }
.why-text .lead { font-size: 18px; color: var(--text-light); margin-bottom: 2rem; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 2.5rem; }
.why-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.why-feature-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(55,75,187,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.why-feature-text strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.why-feature-text span { font-size: 13px; color: var(--text-light); }

/* --- Reviews --- */
.reviews-intro { text-align: center; max-width: 580px; margin: 0 auto 3.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.1rem; }
.google-g {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-light);
}
.review-stars { color: #f4b400; font-size: 15px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text-mid); flex: 1; font-style: italic; margin-bottom: 1.2rem; }
.review-author { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); }
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--navy); font-family: var(--font-heading); }
.reviewer-name:hover { color: var(--cobalt); }
.review-date { font-size: 12px; color: var(--text-light); }
.reviews-cta { text-align: center; }

/* --- Request Service --- */
.request-service .form-intro { text-align: center; max-width: 600px; margin: 0 auto 1rem; }
.service-minimum { text-align: center; font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }
.embed-wrap { width: 100%; }

/* --- Plans --- */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.plan-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.plan-card:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.3); }
.plan-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(240,69,39,0.15);
  border: 1px solid rgba(240,69,39,0.3);
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 1rem;
}
.plan-card h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.plan-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; margin-bottom: 1.8rem; }

/* --- Promise --- */
.promise-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.promise-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(55,75,187,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55,75,187,0.12);
  transition: border-color var(--transition), background var(--transition);
}
.promise-item:hover { background: rgba(55,75,187,0.10); border-color: rgba(55,75,187,0.25); }
.promise-icon { font-size: 32px; margin-bottom: 1rem; }
.promise-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.promise-item p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
/* Promise items on navy background — invert to white for contrast */
.section-navy .promise-item { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.section-navy .promise-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.section-navy .promise-item h4 { color: #ffffff; }
.section-navy .promise-item p { color: rgba(255,255,255,0.80); }
.promise-guarantee { text-align: center; margin-top: 3rem; padding: 2rem; background: var(--orange); border-radius: var(--radius-lg); color: #fff; }
.promise-guarantee p { font-size: 18px; font-weight: 600; margin-bottom: 1rem; }

/* --- Book Now --- */
.book-now h2 { color: #fff; text-align: center; }
.book-now .section-sub { text-align: center; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(55,75,187,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-detail-text strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); font-family: var(--font-heading); margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text p { font-size: 16px; color: var(--navy); font-weight: 500; margin: 0; }
.contact-detail-text a:hover { color: var(--cobalt); }
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.social-btn { font-size: 12px; font-weight: 700; font-family: var(--font-heading); color: var(--text-mid); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.05em; transition: all var(--transition); }
.social-btn:hover { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.cities-section h3 { margin-bottom: 1.2rem; }
.cities-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px 1rem; }
.cities-list a { font-size: 14px; color: var(--text-mid); padding: 4px 0; display: block; transition: color var(--transition); }
.cities-list a:hover { color: var(--cobalt); }

/* --- Footer --- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 1.2rem; color: rgba(255,255,255,0.6); }
.footer-nap { font-size: 14px; line-height: 2; font-style: normal; color: rgba(255,255,255,0.6); }
.footer-nap a { color: rgba(255,255,255,0.6); }
.footer-nap a:hover { color: var(--orange); }
.site-footer h4 { font-family: var(--font-heading); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 1.2rem; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.site-footer ul a:hover { color: var(--orange); }
.credentials-list li { font-size: 13px; padding: 4px 0; color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.06); }
.credentials-list li:last-child { border-bottom: none; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--orange); }
.footer-legal { display: flex; gap: 1.5rem; }

/* --- Breadcrumb --- */
.breadcrumb-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 10px 0; margin-top: 72px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumb li { font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb li + li::before { content: '›'; margin-right: 0.5rem; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: rgba(255,255,255,0.9); font-weight: 600; }

/* --- Hero Short (category pages) --- */
.hero-short { min-height: 420px; margin-top: 0; }
.hero-short .hero-content { padding: 80px 24px 70px; }
@media (max-width: 768px) { .hero-short { min-height: 320px; } .hero-short .hero-content { padding: 60px 24px 50px; } }

/* --- Service Columns (3-up grid for category pages) --- */
.service-columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.service-column {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none; color: inherit;
  transition: border-top-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-column:hover { border-top-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-col-icon { font-size: 2.2rem; margin-bottom: 1rem; line-height: 1; }
.service-column h3 { font-size: 20px; color: var(--navy); margin-bottom: 0.6rem; }
.service-column p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.service-col-list { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.service-col-list li { font-size: 14px; color: var(--text-mid); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.service-col-list li::before { content: '✓'; color: var(--cobalt); font-weight: 700; flex-shrink: 0; }
.service-col-list li:last-child { border-bottom: none; }
.service-column .vertical-cta { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--cobalt); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.04em; }
.service-column:hover .vertical-cta { color: var(--orange); }
.service-columns-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-top: 2.5rem; }

@media (max-width: 560px) { .service-columns-4 { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .service-columns-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-columns-3 { grid-template-columns: 1fr; } }

/* --- Why Features Grid (6-up icon grid) --- */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-feature { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; display: flex; flex-direction: column; align-items: flex-start; }
.why-feature-icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.why-feature h4 { font-size: 17px; color: var(--navy); margin-bottom: 0.5rem; }
.why-feature p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0; }
@media (max-width: 900px) { .why-features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-features-grid { grid-template-columns: 1fr; } }

/* --- Scroll Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .service-column, .review-card, .plan-card, .promise-item, .why-feature {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .service-column.visible, .review-card.visible, .plan-card.visible, .promise-item.visible, .why-feature.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  h1 { font-size: 42px; }
  .hero-content h1 { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .promise-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .plans-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    overflow-y: auto;
    padding: 0.5rem 0 4rem;
    border-top: 3px solid var(--orange);
    z-index: 999;
  }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li > a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); font-size: 14px; }
  .dropdown {
    position: static; box-shadow: none; border-top: none; border-radius: 0;
    opacity: 1; pointer-events: all; transform: none;
    background: rgba(255,255,255,0.05); display: none; transition: none;
  }
  .dropdown li a { color: rgba(255,255,255,0.65); padding: 10px 24px 10px 36px; }
  .dropdown li a:hover { background: rgba(255,255,255,0.05); color: var(--orange); padding-left: 36px; }
  .dropdown.open { display: block; }
  .dropdown-heading { color: var(--orange); padding: 10px 24px 4px 36px; }
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .hero-content h1 { font-size: 30px; }
  .hero { min-height: 520px; }
  .hero-content { padding: 60px 24px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .trust-list { gap: 0.5rem 1.5rem; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cities-list { grid-template-columns: repeat(2,1fr); }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .section-light, .section-tinted, .section-navy, .section-cobalt { padding: 60px 0; }
}
@media (max-width: 480px) {
  .header-inner, .container { padding: 0 16px; }
  h1, .hero-content h1 { font-size: 26px; }
  h2 { font-size: 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .btn-lg { font-size: 15px; padding: 16px 26px; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}

/* ── Hero Search ── */
.hero-search {
  position: relative;
  max-width: 580px;
  margin: 1.75rem auto 0;
}
.hero-search input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: none;
  border-radius: 6px;
  outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  box-sizing: border-box;
  color: #1a1a1a;
}
.hero-search input::placeholder { color: #888; }
#search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  display: none;
}
#search-results.open { display: block; }
#search-results li a {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.1s;
}
#search-results li:last-child a { border-bottom: none; }
#search-results li a:hover,
#search-results li.active a { background: #e8ecf7; }
#search-results .result-name { font-weight: 700; color: #0F1F3D; font-size: 0.93rem; }
#search-results .result-cat  { font-size: 0.78rem; color: #555; margin-top: 2px; }
#search-results .no-results { padding: 0.8rem 1.25rem; color: #666; font-size: 0.9rem; }
