/* =========================================
   TEMPLE CITY HVAC — Design System
   Sky Blue + White + Orange accent
   ========================================= */

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

:root {
  --blue:        #0369A1;   /* deep sky blue — primary brand */
  --blue-dark:   #075985;   /* darker blue for hover states */
  --blue-light:  #0EA5E9;   /* bright sky blue */
  --blue-xlight: #BAE6FD;   /* very light blue for accents */
  --orange:      #F97316;   /* CTA / action orange */
  --orange-dark: #EA6B0B;   /* darker orange hover */
  --white:       #FFFFFF;
  --bg:          #F0F9FF;   /* ice-blue tinted background */
  --bg-alt:      #E0F2FE;   /* slightly deeper background */
  --text:        #0F172A;   /* near-black text */
  --text-light:  #475569;   /* softer body text */
  --border:      #BAE6FD;   /* light blue border */
  --border-gray: #E2E8F0;

  --font:        'Inter', sans-serif;

  --shadow-sm:   0 1px 3px rgba(3,105,161,0.08);
  --shadow-md:   0 4px 16px rgba(3,105,161,0.12);
  --shadow-lg:   0 10px 40px rgba(3,105,161,0.18);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

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

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
a { text-decoration: none; color: var(--blue); transition: var(--transition); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ---- TOP BAR ---- */
.top-bar {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--blue-xlight); }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 16px; align-items: center; font-weight: 700; }
.top-bar .emergency-badge {
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--blue-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(3,105,161,0.10);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo text placeholder */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.logo-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.logo-name span { color: var(--orange); }
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- DESKTOP NAV ---- */
.main-nav ul { display: flex; list-style: none; gap: 8px; align-items: center; }
.main-nav > ul > li > a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav > ul > li > a:hover { color: var(--blue); background: var(--bg); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-light);
  z-index: 200;
  padding: 8px 0;
  animation: dropIn 0.18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (min-width: 993px) { .dropdown:hover .dropdown-content { display: block; } }
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-gray);
  transition: var(--transition);
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: var(--bg); color: var(--blue); padding-left: 24px; }
.dropbtn i { font-size: 11px; transition: var(--transition); }

/* CTA in header */
.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--orange);
  transition: var(--transition);
}
.header-cta a:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}

/* Mobile toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  color: var(--blue);
  cursor: pointer;
  padding: 6px 10px;
  transition: var(--transition);
}
.mobile-menu-btn:hover { background: var(--bg); }

/* ---- MOBILE HEADER ---- */
@media (max-width: 992px) {
  .mobile-menu-btn { display: block; }
  .header-cta { display: none; }
  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px 30px;
    flex-direction: column;
    border-top: 2px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .main-nav.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; width: 100%; gap: 4px; }
  .main-nav > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    border-radius: 0;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--blue-light);
    border-radius: 0;
    margin: 4px 0 4px 12px;
    padding: 0;
    display: none;
    animation: none;
  }
  .dropdown-content a { font-size: 14px; padding: 10px 12px; }
  .dropdown.active .dropdown-content { display: block; }
  .top-bar-left span { display: none; }
  .top-bar-inner { justify-content: center; }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* ---- BREADCRUMBS ---- */
.breadcrumb-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
}
.bc-inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--text-light); }
.bc-inner a { color: var(--text-light); }
.bc-inner a:hover { color: var(--blue); }
.bc-sep { color: var(--border); }
.bc-current { color: var(--blue); font-weight: 700; }

/* ---- INNER PAGE BANNER ---- */
.page-inner-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-inner-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--orange);
}
.page-inner-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}
.page-inner-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 700px; position: relative; }
.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 700;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ---- SECTIONS ---- */
.section-white  { background: var(--white); padding: 80px 0; }
.section-bg     { background: var(--bg); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-blue   { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 80px 0; }

/* Section heading */
.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--blue); line-height: 1.2; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 640px; }

/* ---- CONTENT GRID (main + sidebar) ---- */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.main-content h2 { font-size: 1.9rem; color: var(--blue); margin: 40px 0 16px; font-weight: 800; }
.main-content h2:first-child { margin-top: 0; }
.main-content h3 { font-size: 1.4rem; color: var(--blue-dark); margin: 30px 0 14px; font-weight: 700; }
.main-content p  { margin-bottom: 18px; color: var(--text-light); font-size: 1.05rem; line-height: 1.75; }
.main-content ul { margin-bottom: 20px; padding-left: 0; list-style: none; }
.main-content li { margin-bottom: 10px; font-size: 1.05rem; display: flex; gap: 10px; align-items: flex-start; }

/* ---- SIDEBAR ---- */
.sidebar { position: sticky; top: 110px; }
.sidebar-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.sidebar-box h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 10px;
}
.sidebar-nav ul { list-style: none; padding: 0; }
.sidebar-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gray);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--orange); padding-left: 6px; }
.sidebar-nav li:last-child a { border-bottom: none; }

/* ---- PROCESS STEPS BOX ---- */
.process-box {
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  border: 2px solid var(--border);
  border-left: 6px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 36px;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}
.process-box h3 { color: var(--blue); font-size: 1.4rem; margin-bottom: 12px; margin-top: 0; }
.process-box p  { color: var(--text-light); margin-bottom: 18px; }
.process-box li { margin-bottom: 14px; font-weight: 600; color: var(--blue-dark); line-height: 1.6; }

/* ---- CHECK LIST ---- */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--blue-light);
}
.check-list li i { color: var(--blue); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.check-list li span { color: var(--text-light); font-weight: 500; line-height: 1.6; }

/* ---- FAQ ACCORDION ---- */
.faq-wrapper { max-width: 820px; margin: 0 auto; }
.acc-item {
  margin-bottom: 10px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.acc-item.active { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.acc-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  transition: var(--transition);
}
.acc-question:hover { color: var(--blue); }
.acc-question i { flex-shrink: 0; color: var(--blue); font-size: 0.9rem; }
.acc-answer { padding: 0 24px; display: none; border-top: 1px solid var(--border); }
.acc-answer p  { margin: 18px 0; color: var(--text-light); line-height: 1.75; }
.acc-item.active .acc-answer { display: block; }

/* ---- CTA BLOCK ---- */
.rs-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.rs-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.rs-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; font-weight: 900; position: relative; }
.rs-cta p  { font-size: 1.1rem; margin-bottom: 36px; opacity: 0.88; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--blue-dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 18px;
  text-align: center;
}
.trust-item {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.trust-item i { color: var(--orange); font-size: 22px; }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  display: block;
}
.service-card-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-title i { color: var(--orange); }
.service-card-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  border-top: 1px solid var(--border-gray);
  padding-top: 12px;
}

/* ---- TESTIMONIALS ---- */
.review-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 5rem;
  color: var(--bg-alt);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { display: flex; gap: 3px; color: #F59E0B; font-size: 18px; margin-bottom: 12px; }
.review-text  { color: var(--text-light); font-style: italic; line-height: 1.75; margin-bottom: 16px; }
.review-author { font-weight: 700; color: var(--blue); font-size: 14px; }

/* ---- WHY-US CARDS ---- */
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--bg-alt), var(--blue-xlight));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.6rem;
  color: var(--blue);
}
.why-body strong { display: block; color: var(--blue); font-size: 1rem; margin-bottom: 5px; }
.why-body span   { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ---- STATS ROW ---- */
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label  { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ---- CONTACT STRIP ---- */
.contact-strip {
  background: var(--orange);
  padding: 24px 0;
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-strip strong { color: var(--white); font-size: 1.1rem; font-weight: 800; }
.contact-strip span   { color: rgba(255,255,255,0.85); font-size: 14px; display: block; }
.contact-strip .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: 2px solid var(--white);
  font-size: 15px;
  white-space: nowrap;
  transition: var(--transition);
}
.contact-strip .btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ---- FOOTER ---- */
.site-footer {
  background: #0C1B2E;
  color: var(--white);
  padding: 80px 0 0;
  border-top: 5px solid var(--blue-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul   { list-style: none; padding: 0; }
.footer-col li   { margin-bottom: 12px; }
.footer-col a    { color: #94A3B8; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-col a:hover { color: var(--white); }
.footer-col p    { color: #94A3B8; font-size: 14px; line-height: 1.75; }
.footer-logo-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-logo-name span { color: var(--orange); }
.footer-tagline { font-size: 12px; color: #64748B; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-guarantee li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #CBD5E1;
}
.footer-guarantee li i { color: var(--orange); }
.footer-bottom {
  background: #060F1C;
  padding: 20px 0;
  text-align: center;
  color: #4B5563;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom a { color: #6B7280; }
.footer-bottom a:hover { color: var(--white); }

/* ---- MAP ---- */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.map-wrap iframe { display: block; }

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(135deg, #0C1B2E 0%, #0369A1 60%, #0EA5E9 100%);
  overflow: hidden;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('/images/hvac_van_hero.webp') right center / cover;
  opacity: 0.10;
}
.hero-container { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; position: relative; z-index: 2; padding: 80px 24px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-content { flex: 1; min-width: 300px; }
.hero-image-wrap { flex: 1; min-width: 300px; }
.hero-image-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 40px rgba(14,165,233,0.15);
}
.hero-image-box img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
.hero-badge-float {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(12, 27, 46, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}
.trust-pill i { color: var(--orange); }

/* ---- CONTACT FORM ---- */
.contact-form { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- PRIVACY / TERMS ---- */
.prose h2 { font-size: 1.5rem; color: var(--blue); margin: 36px 0 12px; font-weight: 800; }
.prose h3 { font-size: 1.2rem; color: var(--blue-dark); margin: 24px 0 10px; font-weight: 700; }
.prose p  { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose li { color: var(--text-light); margin-bottom: 8px; line-height: 1.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .hero-container { padding: 50px 24px; }
  .hero-image-wrap { display: none; }
  .section-white, .section-bg, .section-blue, .rs-cta { padding: 60px 0; }
  .page-inner-banner { padding: 60px 0; }
  .contact-strip-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.6rem !important; }
  .btn-primary, .btn-outline, .btn-outline-white { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
