/* ============================================================
   Door2Door - Garage Door Services
   style.css - Main Stylesheet
   ============================================================ */

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

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e45;
  --blue:       #1a6fc4;
  --blue-light: #2484e0;
  --orange:     #e8600a;
  --orange-lt:  #f47c2b;
  --white:      #ffffff;
  --off-white:  #f6f8fb;
  --gray-lt:    #eef1f5;
  --gray:       #8a95a3;
  --gray-dk:    #4a5568;
  --text:       #1c2b3a;

  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 2px 12px rgba(13,27,42,.10);
  --shadow-md: 0 6px 28px rgba(13,27,42,.14);
  --transition: 0.22s ease;
  --max-w: 1160px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }
ul { list-style: none; }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--white); }
.top-bar .phone-link {
  font-weight: 700;
  font-size: .95rem;
  color: var(--orange-lt);
  letter-spacing: .01em;
}
.top-bar .emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.top-bar .emergency-badge::before {
  content: '⚡';
  font-size: .8rem;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(13,27,42,.08);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-name span { color: var(--orange); }
.logo-sub {
  font-size: .72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: block;
  padding: 8px 13px;
  color: var(--navy-mid);
  font-weight: 600;
  font-size: .88rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active { background: var(--gray-lt); color: var(--blue); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 999;
  padding: 6px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  padding: 9px 16px !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  color: var(--text) !important;
}
.dropdown a:hover { background: var(--off-white) !important; color: var(--blue) !important; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-call-sm {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-call-sm:hover { background: var(--orange-lt); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 13px 26px;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: #c95208; border-color: #c95208; color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/garage-door-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.97) 45%, rgba(26,47,69,.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0 80px;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,96,10,.18);
  border: 1px solid rgba(232,96,10,.4);
  color: var(--orange-lt);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--orange-lt); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.7);
  font-size: .84rem;
}
.hero-trust-item::before {
  content: '✓';
  color: var(--orange-lt);
  font-weight: 700;
  font-size: .9rem;
}

/* ============================================================
   SECTIONS - GENERAL
   ============================================================ */
.section { padding: 72px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt { background: var(--off-white); }
.section-mid { background: var(--gray-lt); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  color: var(--gray-dk);
  font-size: 1.02rem;
  max-width: 560px;
  line-height: 1.6;
}
.section-dark .section-sub { color: rgba(255,255,255,.72); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-lt);
}
.intro-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro-text h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.intro-text p { color: var(--gray-dk); margin-bottom: 20px; }
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .stat-num span { color: var(--orange); }
.stat-box .stat-label { font-size: .8rem; color: var(--gray-dk); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,111,196,.25);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  border: 1px solid var(--gray-lt);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { font-size: .875rem; color: var(--gray-dk); margin-bottom: 16px; line-height: 1.55; }
.service-card a.learn-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-card a.learn-more:hover { color: var(--orange); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 28px 20px;
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p { font-size: .865rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ============================================================
   EMERGENCY SECTION
   ============================================================ */
.emergency-section {
  background: linear-gradient(135deg, var(--orange) 0%, #c95208 100%);
  padding: 60px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.emergency-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.emergency-text p { color: rgba(255,255,255,.85); font-size: .98rem; max-width: 500px; }
.emergency-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); font-weight: 800; }
.btn-white:hover { background: var(--off-white); color: #c95208; border-color: var(--off-white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); font-weight: 700; }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy-mid);
  transition: all var(--transition);
}
.area-tag:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
}
.review-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: .9rem;
  color: var(--gray-dk);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.review-location { font-size: .78rem; color: var(--gray); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-lt);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 18px 0;
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 400;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 0 18px;
  color: var(--gray-dk);
  font-size: .9rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-section {
  background: var(--off-white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-info p { color: var(--gray-dk); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-detail-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text span { color: var(--navy); font-weight: 600; font-size: .97rem; }
.contact-detail-text a:hover { color: var(--blue); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 22px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-dk);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d9e0;
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .78rem; color: var(--gray); margin-top: 10px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: var(--white); margin-bottom: 10px; display: block; font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; }
.footer-brand .logo-name span { color: var(--orange); }
.footer-brand p { font-size: .875rem; line-height: 1.65; margin-bottom: 16px; max-width: 280px; }
.footer-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-lt);
  margin-bottom: 6px;
}
.footer-address { font-size: .82rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 18px; }

/* ============================================================
   MOBILE STICKY CALL BAR
   ============================================================ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .01em;
  box-shadow: 0 -3px 14px rgba(0,0,0,.2);
  text-decoration: none;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 340px;
  height: 340px;
  background: rgba(26,111,196,.08);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .breadcrumb {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: var(--orange-lt); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.02rem; max-width: 580px; }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}
.service-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 28px 0 10px;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--gray-dk); margin-bottom: 16px; line-height: 1.7; }
.service-body ul { margin: 12px 0 20px 0; }
.service-body ul li {
  padding: 6px 0 6px 22px;
  color: var(--gray-dk);
  font-size: .93rem;
  position: relative;
}
.service-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.service-sidebar {}
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.sidebar-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-lt);
  font-size: .87rem;
  color: var(--gray-dk);
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-head); }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; margin-bottom: 10px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-head); line-height: 1; }
.about-badge span { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-text p { color: var(--gray-dk); margin-bottom: 16px; line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
}
.value-icon { font-size: 1.3rem; flex-shrink: 0; }
.value-item strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 3px; }
.value-item p { font-size: .82rem; color: var(--gray-dk); margin: 0; }

/* ============================================================
   AREAS PAGE
   ============================================================ */
.areas-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.area-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.area-card p { font-size: .8rem; color: var(--gray); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}
.contact-page-form .form-card { box-shadow: var(--shadow-md); }

/* ============================================================
   SUCCESS / NOTICE
   ============================================================ */
.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: .9rem;
  font-weight: 600;
}
.form-error {
  background: #ffeaea;
  border: 1px solid #ffb3b3;
  color: #c62828;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: .9rem;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Divider */
.divider { border: none; border-top: 1px solid var(--gray-lt); margin: 40px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-lt);
    box-shadow: var(--shadow-md);
    z-index: 998;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .main-nav ul li a { border-radius: 0; padding: 12px 24px; }
  .has-dropdown > a::after { display: none; }
  .dropdown { display: none !important; position: static; box-shadow: none; border: none; background: var(--off-white); padding: 0; }
  .has-dropdown.open .dropdown { display: block !important; }
  .dropdown a { padding: 10px 38px !important; }
  .header-cta .btn-call-sm { display: none; }

  .hero { min-height: auto; }
  .hero-content { padding: 56px 0 70px; }

  .intro-strip .container { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-content { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .areas-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .top-bar .container { justify-content: center; }
  .top-bar .emergency-badge { display: none; }

  .emergency-inner { text-align: center; justify-content: center; }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 54px; }

  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .areas-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .btn-lg { padding: 13px 24px; font-size: .95rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
