@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* =============================================
   DESIGN SYSTEM — GA Heating & Air (Redesign)
   Clean & Modern | Navy + Red | White Base
   ============================================= */
:root {
  --navy:        #0F2557;
  --navy-mid:    #1E3A8A;
  --navy-light:  #2B4DB8;
  --red:         #DC2626;
  --red-dark:    #B91C1C;
  --red-glow:    rgba(220,38,38,0.18);
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --grey-100:    #F1F4F9;
  --grey-200:    #E4E9F2;
  --grey-300:    #C8D2E6;
  --grey-500:    #64748B;
  --grey-700:    #374151;
  --text:        #0A1628;
  --text-muted:  #5B6680;

  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;

  --shadow-xs:   0 1px 3px rgba(15,37,87,0.07);
  --shadow-sm:   0 2px 8px rgba(15,37,87,0.10);
  --shadow-md:   0 6px 24px rgba(15,37,87,0.13);
  --shadow-lg:   0 16px 48px rgba(15,37,87,0.18);
  --shadow-red:  0 8px 24px rgba(220,38,38,0.25);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-pill: 100px;

  --transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.65; font-size: 16px; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -0.02em; }
a { text-decoration: none; color: var(--navy-mid); transition: var(--transition); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: var(--shadow-xs);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 12px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(15,37,87,0.3);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--navy);
  cursor: pointer;
  padding: 4px;
}

.nav-links {
  display: flex;
  gap: 4px;
  font-weight: 500;
  align-items: center;
  font-family: var(--font-head);
}
.nav-links > a, .nav-links > .dropdown > a {
  color: var(--grey-700);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-links > a:hover, .nav-links > .dropdown > a:hover {
  color: var(--navy);
  background: var(--grey-100);
}
.nav-links > a.active { color: var(--navy); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  padding: 8px;
  z-index: 100;
}
@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu { display: block; }
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--grey-700);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.dropdown-menu a:hover {
  background: var(--grey-100);
  color: var(--navy);
}

/* Mobile Menu CSS */
@media (max-width: 900px) {
  .header-container { gap: 16px; }
  .mobile-menu-btn { display: block; }
  .header-right .btn-primary { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--grey-200);
    align-items: flex-start;
  }
  .nav-links.active { display: flex; }
  .nav-links > a, .nav-links > .dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 24px;
    margin-top: 10px;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .stat-item { border: none !important; }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer; border: none;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(220,38,38,0.35); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer; border: none;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--grey-300);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--grey-100); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---- HERO (Homepage) ---- */
.hero-section {
  background: linear-gradient(160deg, #EEF2FF 0%, #F8F9FC 50%, #FFF1F1 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--grey-200);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(15,37,87,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---- INTERNAL PAGE HERO ---- */
.page-hero {
  background: linear-gradient(160deg, #EEF2FF 0%, #F8F9FC 50%, #FFF1F1 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--grey-200);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .breadcrumbs {
  justify-content: center;
  margin-bottom: 16px;
}
.page-hero .breadcrumbs span {
  color: var(--text-muted);
}

@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 28px;
  font-family: var(--font-head);
}
.hero-badge i { color: var(--red); }
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--grey-200);
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--grey-700);
  font-family: var(--font-head);
}
.trust-badge i { color: var(--red); font-size: 1.1rem; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; object-fit: cover; display: block; }
.hero-image-label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
}
.hero-image-label i { color: var(--red); font-size: 1.4rem; }
.hero-image-label span { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.hero-image-label small { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ---- SERVICES STRIP ---- */
.services-strip {
  background: var(--navy);
  padding: 80px 0 40px 0;
}
.services-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.strip-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.strip-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}
.strip-card:hover { background: rgba(255,255,255,0.06); }
.strip-card:hover::after { background: var(--red); }
.strip-card i { font-size: 2.2rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; transition: var(--transition); }
.strip-card:hover i { color: var(--white); }
.strip-card span { color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.9rem; font-family: var(--font-head); transition: var(--transition); }
.strip-card:hover span { color: var(--white); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  background: var(--grey-100);
  color: var(--navy);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ---- WHY US (3-col stats) ---- */
.why-section { padding: 96px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.why-card {
  padding: 36px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
  opacity: 0; transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--grey-300); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 52px; height: 52px;
  background: var(--grey-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--navy);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--navy); color: var(--white); }
.why-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ---- STATS BANNER ---- */
.stats-banner { background: var(--navy); padding: 0 0 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
@media (max-width: 600px) { 
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 10px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-bottom: none; }
}
.stat-num { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-num span { color: var(--red); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 96px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.97rem; color: var(--grey-700); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.reviewer-city { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CITY HERO (dark) ---- */
.city-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.city-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%;
  background: radial-gradient(circle at top right, rgba(220,38,38,0.15) 0%, transparent 70%);
}
.city-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .city-hero-grid { grid-template-columns: 1fr; } }

/* ---- TAG PILL ---- */
.city-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  padding: 7px 18px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.city-tag i { color: #fbbf24; }
.trust-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.trust-pill i { color: #60A5FA; }

/* ---- IMAGE CARD (floating) ---- */
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  position: relative;
}
.image-card img { width: 100%; display: block; object-fit: cover; }
.image-card-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
}
.image-card-badge i { color: var(--red); font-size: 1.3rem; }
.image-card-badge b { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 700; }
.image-card-badge small { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ---- CONTENT SECTION ---- */
.content-section { padding: 72px 0; background: var(--white); }
.content-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px) { .content-layout { grid-template-columns: 2.5fr 1fr; } }
.main-content h2 { font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 800; color: var(--navy); margin: 40px 0 14px; }
.main-content h2:first-child { margin-top: 0; }
.main-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy-mid); margin: 24px 0 10px; }
.main-content p { margin-bottom: 18px; color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.main-content ul { margin: 0 0 24px 20px; color: var(--text-muted); list-style: disc; }
.main-content li { margin-bottom: 8px; line-height: 1.7; }
.main-content a[href] { color: var(--red); font-weight: 600; }
.main-content a[href]:hover { color: var(--red-dark); text-decoration: underline; }

/* ---- SIDEBAR ---- */
.sidebar {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky; top: 90px;
  box-shadow: var(--shadow-sm);
  align-self: start;
}
.sidebar h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--grey-200); font-family: var(--font-head); }

/* ---- FAQ ACCORDION ---- */
.faq-wrapper { max-width: 820px; margin: 0 auto; }
.acc-item { margin-bottom: 12px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md); transition: var(--transition); overflow: hidden; }
.acc-item.active { border-color: var(--navy-mid); box-shadow: var(--shadow-sm); }
.acc-question { width: 100%; padding: 20px 24px; text-align: left; background: none; border: none; font-size: 1rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-head); transition: var(--transition); }
.acc-question:hover { color: var(--navy-mid); background: var(--off-white); }
.acc-question i { flex-shrink: 0; color: var(--red); font-size: 1.1rem; }
.acc-answer { padding: 0 24px; display: none; border-top: 1px solid var(--grey-200); }
.acc-answer p { margin: 18px 0; color: var(--text-muted); line-height: 1.8; }
.acc-item.active .acc-answer { display: block; }

/* ---- LOCATIONS GRID ---- */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 36px; }
.locations-grid a { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--off-white); border: 1px solid var(--grey-200); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; color: var(--navy); transition: var(--transition); }
.locations-grid a i { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }
.locations-grid a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.locations-grid a:hover i { color: rgba(255,255,255,0.7); }

/* ---- SERVICES CARDS ---- */
.services-section { padding: 96px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.service-card {
  display: block;
  color: var(--text);
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  text-align: left;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--grey-300); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--navy);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--navy); color: var(--white); }
.service-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--navy); font-family: var(--font-head); }
.service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.88rem; color: var(--red); font-family: var(--font-head); }
.service-card-link:hover { color: var(--red-dark); gap: 10px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(220,38,38,0.08) 0%, transparent 60%);
}
.cta-banner h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; color: var(--navy); font-size: 0.9rem; font-family: var(--font-head); }
.form-group input, .form-group select, .form-group textarea { padding: 13px 16px; border: 1px solid var(--grey-300); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(30,58,138,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item i { font-size: 1.6rem; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { margin-bottom: 4px; font-size: 1rem; color: var(--white); font-family: var(--font-head); }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.8); font-size: 1rem; }
.contact-item a:hover { color: var(--white); text-decoration: underline; }

/* ---- ABOUT VALUES ---- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-xs); border: 1px solid var(--grey-200); transition: var(--transition); text-align: center; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--grey-300); }
.value-icon { font-size: 2.5rem; color: var(--navy); margin-bottom: 14px; }
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; font-family: var(--font-head); font-weight: 800; }
.value-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: var(--white); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-desc { color: rgba(255,255,255,0.65); line-height: 1.75; font-size: 0.93rem; margin-bottom: 24px; }
.footer-col-title { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ---- BREADCRUMBS ---- */
.breadcrumbs { font-size: 0.83rem; font-weight: 500; color: rgba(255,255,255,0.55); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.breadcrumbs a:hover { color: var(--white); text-decoration: underline; }
.breadcrumbs i { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* ---- UTILS ---- */
.text-center { text-align: center; }
.section-pad { padding: 96px 0; }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ---- SERVICE PAGE BOXES ---- */
.feature-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.feature-box-icon {
  background: var(--grey-100);
  color: var(--navy);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.feature-box h3 { margin-top: 0; margin-bottom: 10px; color: var(--navy); font-size: 1.3rem; }
.feature-box p { margin: 0; font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 600px) { .feature-box { flex-direction: column; gap: 12px; } }

.trust-box {
  background: rgba(220, 38, 38, 0.04);
  border-left: 4px solid var(--red);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 30px;
}
.trust-box h3 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}
.trust-box p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.75;
  font-size: 1rem;
}

/* ---- DETAILED LOCATIONS GRID ---- */
.locations-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.location-card-detailed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-main);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.location-card-detailed:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--grey-300);
  transform: translateY(-2px);
}
.lc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lc-left i {
  color: var(--red);
  font-size: 1.2rem;
}
.lc-city {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.lc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.lc-county {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.lc-zip {
  font-size: 0.8rem;
  color: var(--grey-500);
  background: var(--grey-100);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
@media (max-width: 768px) {
  .services-img-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .locations-grid-detailed { grid-template-columns: 1fr; }
}

/* ---- SERVICE CARDS (Reference Design) ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-icon {
  width: 54px;
  height: 54px;
  background: var(--grey-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card-icon i {
  color: var(--red);
  font-size: 1.6rem;
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---- FIX GAP ---- */
main { 
  padding-bottom: 0 !important; 
  margin-bottom: 0 !important;
  background: transparent;
}
.cta-banner { 
  margin: 0 !important; 
}
.site-footer { 
  margin: 0 !important; 
}

/* ---- MOBILE CALL FAB ---- */
.call-fab {
  display: none;
}

@media (max-width: 900px) {
  .call-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 1.6rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    animation: fab-pulse 2s ease-in-out infinite;
  }
  .call-fab i {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .call-fab:hover {
    background: #b91c1c;
    color: var(--white);
    transform: scale(1.1);
  }
}

@keyframes fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
  50%  { box-shadow: 0 0 0 14px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
/* force rebuild 07/04/2026 01:41:52 */

/* ==============================
   SERVICES LISTING PAGE
   ============================== */

/* --- Hero --- */
.svc-list-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1e40af 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.svc-list-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(220,38,38,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.svc-list-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.svc-list-hero-inner h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.svc-list-hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  min-width: 110px;
  transition: var(--transition);
}
.svc-hero-badge:hover { background: rgba(255,255,255,0.14); }
.svc-hero-badge i { font-size: 1.6rem; color: #fbbf24; }
.svc-hero-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 700; line-height: 1.3; }

/* --- Service Cards Grid --- */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.svc-list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  color: var(--text);
}
.svc-list-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.svc-list-card-img {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.svc-list-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc-list-card:hover .svc-list-card-img img { transform: scale(1.06); }
.svc-list-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,37,87,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.svc-list-card:hover .svc-list-card-overlay { opacity: 1; }
.svc-list-card-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-list-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.svc-list-card-tag {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}
.svc-list-card-body h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.svc-list-card-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}
.svc-list-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.svc-list-card-badges {
  display: flex;
  gap: 8px;
}
.svc-list-card-badges span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}
.svc-list-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--red);
  transition: gap 0.2s ease;
}
.svc-list-card:hover .svc-list-card-cta { gap: 10px; }

/* --- Why Choose Us Grid --- */
.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.svc-why-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--grey-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.svc-why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.svc-why-item h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 800;
}
.svc-why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* --- Process Row --- */
.svc-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.svc-step-row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.svc-step-row-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(220,38,38,0.25);
}
.svc-step-row-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 1;
}
.svc-step-row-body {
  margin-top: 24px;
}
.svc-step-row-body h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.svc-step-row-body p { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.7; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .svc-list-hero-inner { grid-template-columns: 1fr; }
  .svc-list-hero-badges { grid-template-columns: repeat(3, 1fr); }
  .svc-list-grid { grid-template-columns: 1fr; }
  .svc-why-grid { grid-template-columns: 1fr; }
  .svc-steps-row { grid-template-columns: 1fr; gap: 32px; }
  .svc-step-row-line { display: none; }
}


/* ==============================
   SERVICE PAGE — PREMIUM REDESIGN
   ============================== */

/* --- Hero --- */
.svc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e40af 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(220,38,38,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.svc-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.svc-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 0;
}
.svc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.svc-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.svc-trust-row span i { color: #fbbf24; }
.svc-hero-img .image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.svc-hero-img .image-card img {
  width: 100%; height: 420px; object-fit: cover; display: block;
}
.svc-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.svc-badge i { color: #16a34a; font-size: 1.1rem; }

/* --- Stat Bar --- */
.svc-stat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}
.svc-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.svc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}
.svc-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.svc-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}
.svc-stat-div {
  width: 1px; height: 50px;
  background: var(--grey-200);
}

/* --- Content Cards --- */
.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}
.svc-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.svc-card-header h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0;
  font-weight: 800;
}
.svc-card-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(15,37,87,0.1);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.svc-card p { color: var(--text-muted); line-height: 1.8; margin: 0; }

/* --- Check List --- */
.svc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--red);
}
.svc-check-icon {
  width: 24px; height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-check-list li span { color: var(--text); line-height: 1.6; font-size: 0.95rem; }

/* --- Process Steps Card --- */
.svc-process-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.svc-process-card::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.svc-process-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.svc-process-header i { font-size: 1.8rem; color: #fbbf24; }
.svc-process-header h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
  font-weight: 800;
}
.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.svc-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-step p { color: rgba(255,255,255,0.88); margin: 0; line-height: 1.65; font-size: 0.95rem; }

/* --- Why Choose Us Card --- */
.svc-why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}
.svc-why-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.svc-why-header h2 { font-size: 1.4rem; color: var(--navy); margin: 0; font-weight: 800; }
.svc-why-card > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.svc-promises {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.svc-promise-item i { color: #16a34a; font-size: 1.1rem; }

/* --- Sidebar --- */
.svc-sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.svc-sidebar-cta-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(220,38,38,0.2);
  color: #f87171;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.svc-sidebar-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; border: none; }
.svc-sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.svc-sidebar-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.svc-sidebar-schedule:hover { color: var(--white); }
.svc-sidebar-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}
.svc-sidebar-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-200);
}
.svc-sidebar-box h3 i { color: var(--red); }
.svc-sidebar-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-sidebar-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}
.svc-sidebar-list li a:hover,
.svc-sidebar-list li.active a {
  background: var(--off-white);
  color: var(--navy);
}
.svc-sidebar-list li.active a {
  font-weight: 700;
  border-left: 3px solid var(--red);
}
.svc-sidebar-list li a i { color: var(--red); font-size: 0.8rem; }
.svc-sidebar-trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-sidebar-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-200);
}
.svc-sidebar-trust li i { color: #16a34a; }

/* --- FAQ Section --- */
.svc-faq-section {
  background: var(--white);
  padding: 80px 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-img { display: none; }
  .svc-hero { padding: 60px 0; }
  .svc-stats { gap: 0; }
  .svc-stat { padding: 8px 20px; }
  .svc-stat-div { height: 40px; }
  .svc-promises { grid-template-columns: 1fr; }
  .svc-process-card { padding: 28px 24px; }
  .svc-card { padding: 24px; }
}
