/* ====================================================
   SPRINGFIELD HVAC SPECIALISTS — Professional CSS Design System
   Color Palette: Deep Navy, Flame Orange, Pure White, Slate
   ==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ====================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ==================================================== */
:root {
  /* Contractor Core Colors */
  --bg-main:         #ffffff;
  --bg-alt:          #f8fafc; /* Slate 50 */
  --bg-card:         #ffffff;
  --bg-card-hover:   #f1f5f9; /* Slate 100 */
  --border-light:    #e2e8f0; /* Slate 200 */
  --border-focus:    #3b82f6; /* Blue 500 */
  
  /* Brand Accents */
  --navy:            #0f2e5a; /* Deep Trust Navy Blue */
  --navy-dark:       #0a1e3b; /* Shadow Navy */
  --orange:          #ff5e14; /* Heating Orange / Main CTA */
  --orange-hover:    #e04f0d;
  --cyan:            #0ea5e9; /* Cool AC Blue */
  --sky-light:       #f0f9ff;
  
  /* Text Colors */
  --text-primary:    #0f172a; /* Slate 900 */
  --text-secondary:  #475569; /* Slate 600 */
  --text-muted:      #64748b; /* Slate 500 */
  --white:           #ffffff;

  /* Typography */
  --font-heading:    'Outfit', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Layout and Geometry */
  --max-w:           1200px;
  --radius-sm:       4px;
  --radius-md:       8px;
  --radius-lg:       12px;
  --radius-pill:     50px;

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md:       0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.1);
  --shadow-lg:       0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
  --shadow-hover:    0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);

  /* Transitions */
  --ease:            all 0.2s ease-in-out;
}

/* ====================================================
   GLOBAL BASE & TYPOGRAPHY
   ==================================================== */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-main);
  overflow-x: hidden;
}

body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
ul, ol { margin-top: 0; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .section-sm { padding: 40px 0; }
}

.text-center { text-align: center; }
.accent { color: var(--navy); }
.accent-warm { color: var(--orange); }

/* Custom Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 46, 90, 0.06);
  border: 1px solid rgba(15, 46, 90, 0.12);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.section-label.white-label {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.section-label.navy-label {
  background: rgba(255, 94, 20, 0.08);
  border-color: rgba(255, 94, 20, 0.15);
  color: var(--orange);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
  margin: 0 auto;
}

/* Background Utility Classes */
.bg-white { background: var(--white); }
.bg-off-white { background: var(--bg-alt); }
.bg-card { background: var(--bg-alt); }

/* ====================================================
   BUTTONS (CLEAN CONTRACTOR STYLE)
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.15);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 94, 20, 0.25);
}

.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  font-size: 1.05rem;
  padding: 14px 36px;
}
@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: normal;
  }
  .btn-lg {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ====================================================
   TWO-TIER HEADER BLOCK
   ==================================================== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  font-weight: 500;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-left .separator {
  opacity: 0.3;
}
.top-bar-right {
  font-weight: 600;
  color: var(--orange);
}
@media (max-width: 768px) {
  .top-bar { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(15, 46, 90, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--ease);
}
.site-logo:hover .logo-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(15, 46, 90, 0.22);
}

.logo-text { line-height: 1.15; }
.logo-text .name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text .tagline {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--orange);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--ease);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--orange);
  background: var(--sky-light);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle:hover {
  color: var(--orange);
  background: var(--sky-light);
}
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 580px;
  z-index: 100;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  display: grid;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--ease);
}
.nav-dropdown-item:hover {
  background: var(--sky-light);
  color: var(--orange);
  transform: translateX(4px);
}
.nav-dropdown-item .dd-icon {
  width: 24px;
  height: 24px;
  background: rgba(15, 46, 90, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .header-cta { display: flex; }
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-phone .phone-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header-phone .phone-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
}
.header-phone:hover .phone-num {
  color: var(--orange-hover);
}

/* Mobile Toggle */
.mobile-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 1024px) { .mobile-btn { display: none; } }
.mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: var(--ease);
}

/* ====================================================
   MOBILE NAVIGATION DRAWER
   ==================================================== */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--navy-dark);
  color: var(--white);
  z-index: 2000;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav .logo-text .name {
  color: var(--white);
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
}
.mobile-nav a:hover {
  color: var(--orange);
}
.mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-cta .cta-call {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.mobile-cta .cta-quote {
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ====================================================
   HERO SECTION (TRUST-FORWARD SPLIT LAYOUT)
   ==================================================== */
.hero {
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle, rgba(15, 46, 90, 0.03) 0%, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 70px; }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-text h1 .line-accent {
  color: var(--orange);
  display: block;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #10b981; /* Green */
  border-radius: 50%;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-actions .btn {
  flex: 1 1 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero Booking Card */
.hero-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-badge {
  position: absolute;
  top: -14px; left: 40px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-form-badge .status-dot {
  width: 6px;
  height: 6px;
  background: #ff5e14;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-form-card h2 {
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 10px;
}
.hero-form-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Giant Call Button */
.hero-giant-call-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sky-light);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  color: var(--navy) !important;
  transition: var(--ease);
  margin-bottom: 24px;
}
.hero-giant-call-btn:hover {
  background: var(--navy);
  border-color: transparent;
  color: var(--white) !important;
}
.call-icon-pulse {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: call-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes call-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 94, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0); }
}
.call-text-wrap {
  display: flex;
  flex-direction: column;
}
.call-btn-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.call-btn-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .hero-giant-call-btn {
    padding: 14px 16px;
    gap: 12px;
  }
  .call-icon-pulse {
    width: 40px;
    height: 40px;
  }
  .call-btn-number {
    font-size: 1.15rem;
  }
}
@media (max-width: 350px) {
  .call-btn-number {
    font-size: 1.05rem;
  }
}

.call-guarantees-list {
  list-style: none;
  padding: 0; margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.call-guarantees-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.call-guarantees-list li svg {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}
.card-trust-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ====================================================
   TRUST CERTIFICATIONS STRIP
   ==================================================== */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}
.tb-icon {
  color: var(--orange);
  display: flex;
  align-items: center;
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-strip .container { justify-content: grid; grid-template-columns: repeat(2, 1fr); text-align: center; }
  .trust-badge { justify-content: center; }
}

/* ====================================================
   SERVICES SECTION (INTERACTIVE TAB PANEL)
   ==================================================== */
.services-tab-wrapper {
  margin-top: 40px;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease);
}
.tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--navy);
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-cell {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.service-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.service-cell-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.sc-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.sc-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.sc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
}
.sc-arrow svg {
  transition: transform 0.2s;
}
.service-cell:hover .sc-arrow svg {
  transform: translateX(4px);
}

/* ====================================================
   STATS BAR SECTION
   ==================================================== */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}
.stat-block {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ====================================================
   WHY CHOOSE US & FAIRFAX COMFORT WIDGET
   ==================================================== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 1024px) {
  .features-layout { grid-template-columns: 0.9fr 1.1fr; gap: 70px; }
}

.features-image-block {
  position: relative;
}
.features-image-block img {
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.img-badge .big-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
}
.img-badge .lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--sky-light);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Comfort Widget */
.comfort-widget {
  background: #f0fdf4; /* Soft Green Alert background */
  border: 1px solid #bbf7d0;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.comfort-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.comfort-icon {
  font-size: 2rem;
  line-height: 1;
}
.comfort-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #166534; /* Green-800 */
  margin-bottom: 4px;
}
.comfort-desc {
  font-size: 0.88rem;
  color: #1e6b37;
  max-width: 600px;
}
.comfort-widget .btn {
  background: #166534;
  color: var(--white) !important;
}
.comfort-widget .btn:hover {
  background: #14532d;
}

/* ====================================================
   SERVICE CATEGORIES SECTION
   ==================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.cat-card.cool {
  border-top: 4px solid var(--cyan);
}
.cat-card.heat {
  border-top: 4px solid var(--orange);
}
.cat-card-header {
  padding: 32px 32px 20px;
}
.cat-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.cat-card.cool .cat-icon-wrap { color: var(--cyan); background: var(--sky-light); }
.cat-card.heat .cat-icon-wrap { color: var(--orange); background: rgba(255, 94, 20, 0.06); }

.cat-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.cat-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}
.cat-card-body {
  padding: 0 32px 32px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cat-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}
.cat-links li a:hover {
  color: var(--orange);
}
.cat-links li a svg {
  transition: transform 0.2s;
}
.cat-links li a:hover svg {
  transform: translateX(4px);
}

/* ====================================================
   SERVICE/LOCATION SPECIFIC PAGES LAYOUT TWEAKS
   ==================================================== */
.page-hero {
  background: var(--navy);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .current { color: var(--white); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero .hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-meta-item svg { color: var(--orange); }

/* Sticky Split Sidebar Layout */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .service-layout { grid-template-columns: 1.28fr 0.72fr; gap: 60px; }
}

.service-content {
  display: flex;
  flex-direction: column;
}
.service-image {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
  width: 100%;
}
.service-content h2, .service-content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: var(--navy);
}
.service-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  padding: 0; margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.check-list li svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 640px) {
  .check-list { grid-template-columns: 1fr; }
}

.callout-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  margin: 30px 0;
}
.callout-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.callout-box p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 40px 0;
}
@media (max-width: 640px) {
  .spec-grid { grid-template-columns: 1fr; }
}
.spec-item {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: var(--radius-sm);
}
.spec-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.spec-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0;
}
.spec-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ====================================================
   FAQ SECTION ACCORDIONS
   ==================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq-q svg {
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

/* ====================================================
   CTA BANNER SECTION
   ==================================================== */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 50px 0;
}
.cta-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.cta-text h2 {
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 600px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background: var(--orange);
}
.cta-buttons .btn-primary:hover {
  background: var(--orange-hover);
}

/* ====================================================
   SERVICE SIDEBAR & BOOKING WIDGET
   ==================================================== */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: var(--radius-sm);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.sidebar-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sky-light);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--navy) !important;
  margin-bottom: 20px;
  transition: var(--ease);
}
.sidebar-phone:hover {
  background: var(--orange);
  border-color: transparent;
  color: var(--white) !important;
}
.sidebar-phone .phone-icon {
  color: var(--orange);
}
.sidebar-phone:hover .phone-icon {
  color: var(--white);
}
.sidebar-phone .phone-info .lbl {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.sidebar-phone .phone-info .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
}

.sidebar-services {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-services li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-services li a:hover {
  color: var(--orange);
}

.sidebar-areas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-areas a {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.sidebar-areas a:hover {
  background: var(--sky-light);
  border-color: var(--orange);
  color: var(--orange);
}

/* ====================================================
   SERVICE & LOCATION SIDEBAR STICKINESS & GRIDS
   ==================================================== */
@media (min-width: 1024px) {
  .service-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
  }
}

.location-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .location-content-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
  }
}

.location-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 40px 0;
}

.loc-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--ease);
}
.loc-service-link svg {
  color: var(--orange);
  flex-shrink: 0;
}
.loc-service-link:hover {
  border-color: var(--orange);
  background: var(--sky-light);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.map-embed {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 30px 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-sm);
  display: block;
}

/* ====================================================
   SERVICE DIRECTORY GRID
   ==================================================== */
.services-listing-section {
  margin-bottom: 50px;
}
.services-listing-section h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.cat-dot.cool { background: var(--cyan); }
.cat-dot.heat { background: var(--orange); }
.cat-dot.iaq { background: #10b981; }
.cat-dot.commercial { background: var(--navy); }

.services-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-listing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.service-listing-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.slc-icon {
  color: var(--navy);
  display: flex;
  align-items: center;
}
.slc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  flex-grow: 1;
  padding: 0 16px;
}
.slc-arrow {
  color: var(--orange);
  transition: transform 0.2s;
}
.service-listing-card:hover .slc-arrow {
  transform: translateX(4px);
}

/* ====================================================
   SERVICE AREAS INDEX GRID
   ==================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.area-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.area-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.area-detail {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.area-detail svg { color: var(--orange); }

/* ====================================================
   COST ESTIMATOR STYLING
   ==================================================== */
.estimator-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .estimator-layout {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
  }
}
.est-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.est-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}
.est-step-num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.est-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .est-options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .est-options { grid-template-columns: 1fr; }
}
.est-opt {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.est-opt:hover {
  border-color: var(--orange);
}
.est-opt.selected {
  border-color: var(--orange);
  background: var(--sky-light);
}
.est-opt .opt-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.est-opt .opt-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
}

.est-result-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: sticky;
  top: 110px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.est-result-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.est-total-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.est-total-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin: 6px 0 24px;
}
.est-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.est-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.est-breakdown li:last-child {
  border-bottom: none;
}

/* ====================================================
   FOOTER SECTION
   ==================================================== */
.site-footer {
  background: #0b162c; /* Solid deep navy footer */
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  border-top: 4px solid var(--orange);
  font-size: 0.9rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--orange); }

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.9fr);
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-desc {
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.88rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin: 16px 0 24px 0;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--ease);
}
.footer-socials a:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  display: block;
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
}
.footer-bottom .lic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .lic svg { color: #10b981; }
.footer-bottom .badge {
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* ====================================================
   MOBILE STICKY CALL BUTTON & UTILITIES
   ==================================================== */
.sticky-call {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(255, 94, 20, 0.35);
  transition: var(--ease);
}
.sticky-call:hover {
  transform: scale(1.08);
  background: var(--orange-hover);
}
@media (min-width: 1024px) {
  .sticky-call { display: none; }
}

@keyframes shake-icon {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
  20%, 40%, 60%, 80% { transform: rotate(10deg); }
}
.sticky-call svg {
  animation: shake-icon 4s infinite;
}

/* ====================================================
   INTERACTIVE HERO BOOKING FORM & INPUTS
   ==================================================== */
.hero-booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group {
  position: relative;
}
.form-control {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg-alt);
  transition: var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.1);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}
@media (max-width: 480px) {
  .form-group-row { grid-template-columns: 1fr; }
}
.hero-card-phone-link {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 18px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}
.hero-card-phone-link strong {
  color: var(--orange);
}

/* ====================================================
   REVIEW & RATING TRUST STRIP
   ==================================================== */
.trust-rating-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.rating-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.rating-badge .stars {
  color: #eab308;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.rating-badge .badge-icon {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .rating-bar-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ====================================================
   SPECIAL OFFERS & PROMOTIONS COUPONS
   ==================================================== */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.coupon-card {
  background: var(--white);
  border: 2px dashed var(--border-light);
  padding: 32px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.coupon-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.coupon-tag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.coupon-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.coupon-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.coupon-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}
.coupon-code {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

/* ====================================================
   HOW WE WORK (PROCESS) SECTION
   ==================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.process-step {
  position: relative;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--ease);
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(15, 46, 90, 0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ====================================================
   CONTACT PAGE LAYOUT
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 420px; }
}

.contact-info-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
}
.contact-info-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 94, 20, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail .txt {}
.contact-detail .txt .label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 3px;
}
.contact-detail .txt .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.contact-detail .txt a { color: var(--white); }
.contact-detail .txt a:hover { color: var(--orange); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-box > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Form Styles */
.form-field {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 94, 20, 0.3);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ====================================================
   ABOUT PAGE LAYOUT
   ==================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 0;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-layout { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.about-license-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.about-license-badge .lic-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
}
.about-license-badge .lic-lbl {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.credential-item {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}
.credential-item .cr-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}
.credential-item .cr-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}
