:root {
  --black: #0A0A0A;
  --dark: #111111;
  --gold: #D4A017;
  --gold-hover: #F0C040;
  --white: #FFFFFF;
  --gray: #B8B8B8;
  --blue: #1E3A5F;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.accent {
  color: var(--gold);
}

/* LOGO FIX */
.logo img,
.footer-logo img,
.home-logo img {
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.logo img {
  width: 120px;
  height: auto;
}

.footer-logo img {
  width: 190px;
  height: auto;
}

.home-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.home-logo img {
  width: 260px;
  height: auto;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  font-weight: 600;
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta,
.btn-primary,
.btn-dark,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #080808;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 12px 24px;
  transition: 0.25s;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-dark:hover,
.sticky-call:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 95px 7%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 160, 23, 0.16), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.32), transparent 36%),
    linear-gradient(135deg, #0A0A0A 0%, #111111 100%);
  z-index: -2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  z-index: -1;
}

.hero-badge,
.section-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.86;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 650px;
  color: var(--gray);
  font-size: 20px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: 0.25s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-phone {
  justify-self: end;
  width: min(420px, 100%);
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-phone-label {
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-phone-num {
  display: block;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.hero-phone-avail {
  color: var(--white);
  font-weight: 700;
}

/* STATS */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  background: #0E0E0E;
  padding: 30px 20px;
  text-align: center;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  color: var(--gray);
  font-weight: 600;
}

.gold-link {
  color: var(--gold);
}

/* SECTIONS */
section {
  padding: 90px 7%;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 1px;
}

.dim {
  color: rgba(255,255,255,0.42);
}

.section-subtitle {
  color: var(--gray);
  margin-top: 14px;
  font-size: 18px;
}

/* CARDS */
.services-grid,
.reviews-grid,
.area-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.review-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  transition: 0.25s;
}

.service-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.42);
}

.service-num {
  color: rgba(255,255,255,0.22);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.service-icon {
  display: block;
  font-size: 38px;
  margin: 20px 0 14px;
}

.service-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-desc,
.review-text,
.why-description,
.footer-desc,
.faq-list p {
  color: var(--gray);
}

.service-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

/* AREAS */
.area-grid {
  grid-template-columns: repeat(3, 1fr);
}

.area-grid div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,0.045);
  font-weight: 800;
}

/* WHY US */
.why-us {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.why-image-block {
  position: relative;
}

.why-image-bg {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-badge-float {
  position: absolute;
  right: -20px;
  bottom: 35px;
  padding: 20px;
  border-radius: 22px;
  background: var(--gold);
  color: #080808;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.why-badge-float .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.why-badge-float .txt {
  font-weight: 800;
  line-height: 1.1;
}

.why-description {
  font-size: 19px;
  margin: 20px 0 28px;
}

.why-features {
  display: grid;
  gap: 18px;
}

.why-feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212,160,23,0.14);
}

.why-feature-title {
  font-size: 18px;
  font-weight: 800;
}

.why-feature-desc {
  color: var(--gray);
}

/* REVIEWS */
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-author {
  margin-top: 20px;
  font-weight: 800;
}

.review-location {
  color: var(--gray);
  font-size: 14px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}

details p {
  margin-top: 12px;
}

/* CTA */
.cta-band {
  margin: 40px 7% 90px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  color: #080808;
}

.cta-band-title {
  font-size: 34px;
  font-weight: 900;
  font-family: "Barlow Condensed", sans-serif;
}

.cta-band-sub {
  font-weight: 700;
}

.btn-dark {
  background: #080808;
  color: var(--white);
  box-shadow: none;
}

/* FOOTER */
footer {
  padding: 60px 7% 30px;
  border-top: 1px solid var(--border);
  background: #070707;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 42px;
}

.footer-desc {
  margin-top: 14px;
  max-width: 360px;
}

.footer-col-title {
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
  list-style: none;
  color: var(--gray);
}

.footer-links a:hover,
.footer-link-gold {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--gray);
}

.footer-bottom span {
  color: var(--gold);
}

/* STICKY CALL BUTTON */
.sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  display: none;
}

/* HOME PAGE */
.home-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 15%, rgba(212,160,23,0.18), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(30,58,95,0.35), transparent 35%),
    var(--black);
}

.location-selector {
  min-height: 100vh;
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.location-selector h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 12vw, 138px);
  line-height: 0.85;
  margin-bottom: 22px;
}

.subtitle {
  max-width: 680px;
  margin: 0 auto 38px;
  color: var(--gray);
  font-size: 20px;
}

.location-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.location-card {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  text-align: left;
  transition: 0.25s;
}

.location-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212,160,23,0.5);
}

.location-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-desc {
  color: var(--gray);
  margin-bottom: 18px;
}

.location-phone {
  font-size: 22px;
  font-weight: 900;
}

.emergency-note,
.hours-note {
  color: var(--gray);
  font-weight: 700;
}

.hours-note {
  margin-top: 8px;
  color: var(--gold);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  nav {
    padding: 16px 5%;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 75px 5%;
  }

  .hero-phone {
    justify-self: stretch;
  }

  .stats-strip,
  .services-grid,
  .reviews-grid,
  .area-grid,
  .why-us,
  .footer-top,
  .location-options {
    grid-template-columns: 1fr;
  }

  .why-image {
    height: 360px;
  }

  .why-badge-float {
    right: 18px;
  }

  section {
    padding: 70px 5%;
  }

  .cta-band {
    margin: 30px 5% 90px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .sticky-call {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 560px) {
  .logo img {
    width: 155px;
  }

  .footer-logo img {
    width: 165px;
  }

  .home-logo img {
    width: 220px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-phone-num {
    font-size: 32px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .nav-cta {
    padding: 11px 15px;
  }

  .location-card {
    padding: 26px;
  }
}
