/* Brothers Air, Heat & Plumbing — Custom Styles */
/* Brand: Navy #073674 | Blue #0575bc | Gold #ffcd39 */
/* Fonts: Rajdhani (headings) + Source Sans 3 (body) */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --primary: #0575bc;
  --dark: #073674;
  --gold: #ffcd39;
  --gold-dark: #e0a800;
  --text: #1c2340;
  --text-muted: #5a6070;
  --bg: #ffffff;
  --bg-light: #f0f5fb;
  --bg-dark: #060f2a;
  --border: #d4e3f5;
  --shadow: 0 4px 24px rgba(7, 54, 116, 0.12);
  --shadow-lg: 0 12px 48px rgba(7, 54, 116, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--dark);
  color: #fff;
  padding: .5rem 1rem;
  text-decoration: none;
  z-index: 9999;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── Top Bar ── */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .45rem 1rem;
}
.top-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}
.top-bar a { color: var(--gold); font-weight: 700; }
.top-bar a:hover { color: #fff; text-decoration: none; }
.top-bar .divider { opacity: .4; margin: 0 .5rem; }
.badge-sm {
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  padding: .15rem .45rem;
  border-radius: 20px;
  letter-spacing: .03em;
}

/* ── Header / Nav ── */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; gap: .75rem; }
.site-logo img { height: 52px; width: auto; }
.logo-text { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; line-height: 1.2; }
.logo-text span { font-size: .8rem; font-weight: 400; opacity: .85; display: block; }

.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a {
  color: rgba(255,255,255,0.9);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 800 !important;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: .4rem .6rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://brotherair.com/media/kt2chltj/technician-van.jpg?width=1920&height=700');
  background-size: cover;
  background-position: center 40%;
  opacity: .4;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,54,116,.95) 0%, rgba(5,117,188,.75) 55%, rgba(7,54,116,.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  animation: fadeSlideUp .6s ease both;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.08;
  max-width: 700px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  animation: fadeSlideUp .7s ease .1s both;
}
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.55;
  animation: fadeSlideUp .7s ease .2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  animation: fadeSlideUp .7s ease .3s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  animation: fadeSlideUp .7s ease .4s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
}
.trust-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(255,205,57,.4);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(255,205,57,.5);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}
.btn-blue {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-blue:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ── Stats Band ── */
.stats-band {
  background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 100%);
  padding: 2.5rem 1rem;
}
.stats-band .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: .5rem; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ── Section Layout ── */
.section { padding: 5rem 1rem; }
.section.bg-light { background: var(--bg-light); }
.section.bg-dark { background: var(--bg-dark); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { margin-bottom: 3rem; }
.section-title h2 { color: var(--dark); }
.section-title p { color: var(--text-muted); font-size: 1.05rem; margin-top: .5rem; max-width: 580px; }
.section-title .eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .4rem;
}

/* ── Award Bar ── */
.award-bar {
  background: var(--gold);
  padding: .85rem 1rem;
  text-align: center;
}
.award-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.award-bar .text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: .04em;
}
.award-star { color: var(--dark); font-size: 1rem; }

/* ── Service Category Cards ── */
.service-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.service-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-header {
  background: var(--dark);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cat-header h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
}
.cat-body { padding: 1.25rem 1.5rem 1.5rem; }
.service-list-mini li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-list-mini li:last-child { border-bottom: none; }
.service-list-mini .check { color: var(--primary); font-weight: 700; }
.cat-cta { display: block; text-align: center; margin-top: 1rem; }

/* ── Promotions ── */
.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.promo-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 2px solid rgba(255,205,57,.2);
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,205,57,.08);
  border-radius: 50%;
}
.promo-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.promo-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.promo-card h4 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.promo-desc { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.5; }
.promo-expire {
  display: inline-block;
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
}

/* ── Testimonials ── */
.testimonial-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.tc-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tc-slide {
  min-width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
}
.tc-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: .1em; margin-bottom: 1rem; }
.tc-quote {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.tc-cite { font-weight: 700; color: var(--dark); font-style: normal; font-size: .95rem; }
.tc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.tc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.3); }

/* ── Why Choose ── */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow);
}
.reason-icon { font-size: 2rem; margin-bottom: .75rem; }
.reason-card h4 { color: var(--dark); margin-bottom: .4rem; }
.reason-card p { color: var(--text-muted); font-size: .95rem; }

/* ── Pro Plan ── */
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.plan-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color .3s, transform .3s;
}
.plan-card.featured { border-color: var(--primary); position: relative; }
.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .25rem .85rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: .25rem;
}
.plan-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-features { margin: 1.25rem 0; }
.plan-features li {
  padding: .35rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

/* ── Service Area Map ── */
#service-area-map { height: 380px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  user-select: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 1rem; color: var(--text-muted); line-height: 1.7; font-size: .97rem; }

/* ── About Page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.cert-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.cert-badge {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ── Services Page ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(7,54,116,.07);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .85rem;
}
.service-card h4 { color: var(--dark); margin-bottom: .4rem; font-size: 1.1rem; }
.service-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.6; }
.service-category-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark);
  border-left: 5px solid var(--primary);
  padding-left: .85rem;
  margin: 2.5rem 0 1.25rem;
}
.service-category-title:first-child { margin-top: 0; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-text .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; opacity: .6; font-weight: 600; }
.contact-item-text .value { color: #fff; font-weight: 600; font-size: .97rem; }
.contact-item-text .value a { color: var(--gold); }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .97rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,117,188,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: var(--radius);
  padding: 1rem;
  color: #2e7d32;
  font-weight: 600;
  text-align: center;
}

/* ── Locations ── */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.location-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 2px solid var(--border);
}
.location-card h4 { color: var(--dark); margin-bottom: .75rem; }
.location-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; }
.location-card a { color: var(--primary); font-weight: 600; }

/* ── Partners ── */
.partners-bar { background: var(--bg-light); padding: 2.5rem 1rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-bar .inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.partners-bar .label { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 1rem; }
.partners-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; align-items: center; }
.partner-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 4.5rem 1rem;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 1rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: .25rem;
}
.footer-brand .ars-note { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .2rem .55rem;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.social-links { display: flex; gap: .75rem; margin-top: .75rem; }
.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--gold);
  color: var(--dark);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,205,57,.5);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(255,205,57,.6);
  color: var(--dark);
  text-decoration: none;
}

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(105deg, var(--dark) 0%, var(--primary) 100%);
  padding: 4rem 1rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .4rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb .sep { opacity: .4; }

/* ── Animations ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Emergency Banner ── */
.emergency-banner {
  background: #c0392b;
  color: #fff;
  text-align: center;
  padding: .6rem 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
}
.emergency-banner a { color: var(--gold); font-size: 1.05rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-categories { grid-template-columns: 1fr 1fr; }
  .promos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-band .inner { grid-template-columns: repeat(2, 1fr); }
  .service-categories { grid-template-columns: 1fr; }
  .promos-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hamburger { display: block; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); padding: 1rem; gap: .25rem; }
  .site-nav.open { display: flex; }
  .site-header { position: relative; }
  .header-inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .stats-band .inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 3.5rem 1.25rem; }
}
