/* ============================================================
   AceComfort Heating & Air Conditioning — Main Stylesheet
   Brand Colors: Blue #0072e5 | Dark #071323 | Orange #fb8e28
   ============================================================ */

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

:root {
  --navy:       #071323;
  --navy-dark:  #050d18;
  --navy-light: #0c4fa5;
  --orange:     #fb8e28;
  --orange-dark:#e07820;
  --orange-light:#fca04f;
  --green:      #27AE60;
  --green-dark: #1e8449;
  --white:      #ffffff;
  --off-white:  #f0f2f3;
  --light-gray: #e8eaed;
  --mid-gray:   #787676;
  --dark-gray:  #34495e;
  --text:       #111827;
  --text-light: #555555;
  --border:     #e0e4ec;
  --shadow-sm:  0 2px 8px rgba(7,19,35,0.08);
  --shadow-md:  0 4px 20px rgba(7,19,35,0.12);
  --shadow-lg:  0 8px 40px rgba(7,19,35,0.18);
  --shadow:     0 4px 20px rgba(7,19,35,0.12);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  animation: pageIn 0.25s ease forwards;
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
a[href^="tel"] { color: #16a34a; }
a[href^="tel"]:hover { color: #15803d; }

img { max-width: 100%; height: auto; display: block; }

p { margin-bottom: 1rem; color: var(--dark-gray); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--dark-gray); }

/* ---------- Typography Utilities ---------- */
.text-navy  { color: var(--navy) !important; }
.text-orange{ color: var(--orange) !important; }
.text-green { color: var(--green) !important; }
.text-white { color: var(--white) !important; }
.text-mid   { color: var(--mid-gray) !important; }

.fw-700 { font-weight: 700; }
.fs-sm  { font-size: 0.875rem; }
.fs-lg  { font-size: 1.125rem; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,80,10,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.35);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  display: inline-block;
  background: rgba(232,80,10,0.1);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; color: var(--mid-gray); }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.825rem;
  padding: 0.5rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a[href^="tel"] { color: #4ade80; font-weight: 700; }
.top-bar a:hover { color: var(--orange-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; }
.top-bar span { display: flex; align-items: center; gap: 0.4rem; }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Logo image — drop images/logo.png into the project and the emoji fallback disappears */
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 0; list-style: none; padding: 0; margin: 0; flex: 1; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: rgba(232,80,10,0.07);
}
.nav-link .chevron {
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  color: var(--dark-gray);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown a:hover {
  background: rgba(232,80,10,0.07);
  color: var(--orange);
  padding-left: 1.2rem;
}
.dropdown a span.icon { font-size: 1rem; }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone:hover { color: var(--orange); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #12284d 0%, #1b3d6e 60%, #1e4a82 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::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.03'%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");
}
.hero-content { position: relative; z-index: 2; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 80px 1.5rem; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,80,10,0.2);
  border: 1px solid rgba(232,80,10,0.4);
  color: #f47328;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.trust-item strong { color: var(--white); }
.trust-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.hero-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.5rem; }
.hero-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 1.5rem; }

.quick-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.qs-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.qs-item:hover {
  background: rgba(232,80,10,0.25);
  border-color: rgba(232,80,10,0.5);
  color: var(--white);
}
.qs-item .icon { font-size: 1.25rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
}
.trust-bar .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.tb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.tb-item .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.tb-item .label-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,80,10,0.2);
}

.service-card {
  padding: 2rem;
  text-align: center;
}
.service-card .icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(27,61,110,0.07);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}
.card:hover .icon-wrap {
  background: rgba(232,80,10,0.1);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--mid-gray); }

.service-list { list-style: none; padding: 0; margin: 1rem 0; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dark-gray);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why-us { background: var(--off-white); }
.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: all var(--transition);
}
.reason-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.reason-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,80,10,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.reason-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.reason-body p { font-size: 0.875rem; color: var(--mid-gray); margin: 0; }

/* ---------- Promo / Special Pricing ---------- */
.promo-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.promo-banner h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.promo-banner p { color: rgba(255,255,255,0.9); margin: 0; }

/* ---------- Brands ---------- */
.brands { background: var(--light-gray); padding: 50px 0; }
.brands-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2.5rem; }
.brand-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 70px;
  transition: all var(--transition);
}
.brand-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.brand-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.03em;
}

/* ---------- Membership Cards ---------- */
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.membership-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.membership-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.membership-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,80,10,0.1);
}

.membership-card-header {
  background: var(--navy);
  padding: 2rem;
  text-align: center;
  position: relative;
}
.membership-card.featured .membership-card-header { background: var(--orange); }

.membership-card-header .badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 8px 8px;
}

.membership-card-header h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.5rem; }
.price { color: var(--white); }
.price .amount { font-size: 3rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.price .period { font-size: 0.9rem; opacity: 0.8; }
.price .yearly { font-size: 0.85rem; opacity: 0.75; margin-top: 0.25rem; }

.membership-card-body { padding: 2rem; flex: 1; }
.benefit-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light-gray);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li .check { color: var(--green); font-size: 1rem; flex-shrink: 0; font-weight: 700; }

/* ---------- Rebates ---------- */
.rebate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.rebate-card:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.rebate-card .amount-tag {
  display: inline-block;
  background: rgba(39,174,96,0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.rebate-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.rebate-card p { font-size: 0.875rem; color: var(--mid-gray); margin: 0; }

/* ---------- Service Area Map ---------- */
.service-area { background: var(--off-white); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all var(--transition);
}
.area-badge:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); }
.testimonials .section-header .label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.7); }

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.85); font-style: italic; font-size: 0.95rem; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.author-location { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #d44000 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, rgba(18,42,77,0.94) 0%, rgba(27,61,110,0.90) 100%), url('https://picsum.photos/seed/hvac-comfort/1600/600') center/cover no-repeat;
  padding: 70px 0 60px;
  color: var(--white);
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumb a:hover { color: var(--orange-light); }
.page-hero .breadcrumb li::after { content: '›'; margin-left: 0.5rem; }
.page-hero .breadcrumb li:last-child::after { display: none; }
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; font-size: 1.05rem; }

/* ---------- Service Sub-tabs ---------- */
.service-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.service-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  gap: 0.25rem;
}
.service-nav-list a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.service-nav-list a:hover, .service-nav-list a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ---------- Accordion / FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .arrow { font-size: 0.875rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: rgba(232,80,10,0.1);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card-body p { font-size: 0.875rem; color: var(--mid-gray); margin-bottom: 1rem; }
.blog-meta { font-size: 0.8rem; color: var(--mid-gray); }

/* ---------- AI / Technology Section ---------- */
.tech-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39,174,96,0.2);
  border: 1px solid rgba(39,174,96,0.4);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.tech-section h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.tech-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.tech-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.tech-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.tech-feature .tf-icon { font-size: 1.4rem; flex-shrink: 0; }
.tech-feature h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.tech-feature p { color: rgba(255,255,255,0.65); font-size: 0.825rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item strong { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 25px rgba(232,80,10,0.4);
  transition: all var(--transition);
  white-space: nowrap;
}
.float-btn:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,80,10,0.5);
}
.float-btn.emergency { background: var(--navy); box-shadow: 0 6px 25px rgba(27,61,110,0.4); }
.float-btn.emergency:hover { background: var(--navy-dark); box-shadow: 0 10px 30px rgba(27,61,110,0.5); }

/* ---------- Badges / Tags ---------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-orange { background: rgba(232,80,10,0.1); color: var(--orange); }
.badge-navy { background: rgba(27,61,110,0.1); color: var(--navy); }
.badge-green { background: rgba(39,174,96,0.1); color: var(--green-dark); }

/* ---------- Photo Strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 280px; overflow: hidden; }
.photo-strip-item { position: relative; overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-caption { position: absolute; inset: 0; background: rgba(27,61,110,0.42); display: flex; align-items: flex-end; padding: 1.25rem; }
.photo-strip-caption span { color: #fff; font-family: Montserrat, sans-serif; font-weight: 700; font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav-phone { display: none; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .membership-grid { gap: 1.25rem; }
  .photo-strip { grid-template-columns: repeat(2,1fr); height: auto; }
  .photo-strip-item { height: 200px; }
}

@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .hero .container { grid-template-columns: 1fr; padding: 55px 1.5rem; }
  .hero-card { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2,1fr); }
  .photo-strip-item { height: 160px; }

  /* Mobile nav */
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 0.875rem 1rem; border-radius: var(--radius); font-size: 1rem; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: var(--radius);
    margin-top: 0.25rem;
    padding: 0.25rem 0.5rem;
    display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .menu-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .tech-features { grid-template-columns: 1fr; }
  .floating-cta { bottom: 1rem; right: 1rem; }
  .float-btn span.label { display: none; }
  .float-btn { padding: 0.875rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .trust-bar .container { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.95rem; }
  .quick-services { grid-template-columns: 1fr; }
}
