/* ════════════════════════════════════
   Fast Austin Locksmith — styles.css
   ════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #D4A017;
  --gold-light: #F0C842;
  --gold-bg:    rgba(212,160,23,0.08);
  --dark:       #0B0B0B;
  --dark2:      #111111;
  --dark3:      #181818;
  --mid:        #222222;
  --border:     rgba(255,255,255,0.07);
  --text:       #FFFFFF;
  --muted:      #ffffff;
  --white:      #FFFFFF;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 32px rgba(0,0,0,.55);
  --tr:         0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: all var(--tr);
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); font-size: 1.05rem; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.4); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 1.1rem; }
.btn--sm { padding: 9px 20px; font-size: .875rem; }

/* ══ TOP CALL BAR ═════════════════════════════ */
.top-call-bar {
  background: var(--gold);
  padding: 4px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--tr);
}

.top-call-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.top-call-icon {
  font-size: 1.1rem;
}

.top-call-text {
  font-weight: 600;
}

.top-call-number {
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
}

/* ══ NAVBAR ═════════════════════════════ */
#navbar {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 999;
  background: rgba(11,11,11,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.7); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem;
  letter-spacing: .08em; color: var(--white);
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.logo-icon {
  width: 34px; height: 34px; background: var(--gold);
  border-radius: 7px; display: grid; place-items: center; flex-shrink: 0;
}
.logo-icon svg { width: 18px; height: 18px; stroke: var(--dark); }

.logo-image {
  width: 50px; height: 40px;
  border-radius: 7px; flex-shrink: 0;
  object-fit: cover;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--tr);
  margin-left: auto;
}

.nav-call:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,160,23,0.4);
}

.nav-call-icon {
  font-size: 1rem;
}

.nav-call-text {
  font-weight: 600;
}

.nav-call-number {
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-link {
  background: none; border: none; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: .93rem; font-weight: 500;
  padding: 8px 14px; border-radius: 7px; cursor: pointer;
  transition: all var(--tr); white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-bg); }

.caret { font-size: .7rem; transition: transform var(--tr); }
.dropdown-btn[aria-expanded="true"] .caret { transform: rotate(180deg); }

.nav-cta {
  background: var(--gold); color: var(--dark); font-weight: 700;
  padding: 9px 18px; border-radius: 8px; font-size: .9rem;
  transition: all var(--tr); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 210px; padding: 8px;
  box-shadow: var(--shadow); z-index: 200;
}
.dropdown-menu.open { display: block; }
.drop-link {
  display: block; padding: 10px 14px; border-radius: 7px;
  font-size: .93rem; font-weight: 500; transition: all var(--tr);
}
.drop-link:hover { background: var(--gold-bg); color: var(--gold); padding-left: 20px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 7px; transition: background var(--tr);
}
.hamburger:hover { background: var(--mid); }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,160,23,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 80%, rgba(212,160,23,.05) 0%, transparent 50%),
    linear-gradient(160deg, #0B0B0B 0%, #141414 50%, #0B0B0B 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px);
}
.hero-content { position: relative; z-index: 1; padding: 80px 24px; max-width: 860px; }

.hero-badge {
  display: inline-block; background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.3); color: var(--gold);
  font-size: .85rem; font-weight: 600; padding: 6px 16px;
  border-radius: 100px; letter-spacing: .04em; margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: .95; letter-spacing: .04em; color: var(--white); margin-bottom: 12px;
}
.hero h1 span { color: var(--gold); }

.hero-tagline {
  font-size: 1.15rem; font-weight: 600; color: var(--gold);
  letter-spacing: .02em; margin-bottom: 20px;
}
.hero-body { max-width: 720px; margin-bottom: 32px; }
.hero-body p { font-size: .97rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }

.hero-stats {
  display: flex; align-items: center; gap: 0; margin-bottom: 32px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 28px; width: fit-content;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat strong { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.stat span { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-areas { font-size: .85rem; color: var(--muted); }

/* ══ PRICING PROMISE ═════════════════════ */
.pricing-promise {
  background: rgba(212,160,23,.08);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0 24px 0;
  text-align: center;
  max-width: 800px;
}

.pricing-promise h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-promise p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

.pricing-promise strong {
  color: var(--gold);
  font-weight: 600;
}

/* ══ TRUST BAR ══════════════════════════ */
.trust-bar {
  background: var(--dark3);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 500; color: var(--text); white-space: nowrap; }

/* ══ SECTIONS ══════════════════════════ */
.section { padding: 96px 0; }
.section--dark { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05; color: var(--white); letter-spacing: .04em; margin-bottom: 16px;
}
.section-header h2 span { color: var(--gold); }
.section-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ══ TWO-COL LAYOUT ════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px; align-items: start;
}
.two-col--reverse { grid-template-columns: 360px 1fr; }
.two-col--reverse .two-col__text { order: 2; }
.two-col--reverse .two-col__aside { order: 1; }

/* Text body */
.two-col__text h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: .04em; color: var(--white); margin: 32px 0 10px;
}
.two-col__text h3:first-child { margin-top: 0; }
.two-col__text h4 {
  font-size: .95rem; font-weight: 700; color: var(--text); margin: 18px 0 8px;
}
.two-col__text p { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }

/* Content lists */
.content-list { margin: 10px 0 16px 0; }
.content-list li {
  font-size: .93rem; color: var(--text);
  padding: 6px 0 6px 22px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.content-list--cols { columns: 2; gap: 16px; }
.content-list--cols li { break-inside: avoid; }

/* Section divider */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* Makes section */
.makes-section { margin-top: 32px; }
.makes-section h3 { margin-bottom: 14px !important; }
.makes-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }
.makes-list--sm { margin: 12px 0 20px; }
.makes-list span {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: .82rem; color: var(--text); font-weight: 500; transition: all var(--tr);
}
.makes-list span:hover { border-color: var(--gold); color: var(--gold); }

/* Call CTA within section */
.call-cta {
  background: rgba(212,160,23,.05); border: 1px solid rgba(212,160,23,.2);
  border-radius: var(--radius-lg); padding: 28px; margin-top: 40px;
}
.call-cta h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .04em; color: var(--white); margin-bottom: 12px !important; margin-top: 0 !important; }
.call-cta p { font-size: .93rem; color: var(--muted); margin-bottom: 10px; }
.call-cta .btn { margin-top: 8px; }

/* ══ SIDEBAR CARDS ═════════════════════ */
.service-detail-card {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.sticky-card { position: sticky; top: 90px; }
.service-detail-card--red { border-color: rgba(192,57,43,.35); background: linear-gradient(135deg, rgba(192,57,43,.06) 0%, var(--mid) 100%); }
.service-detail-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: .05em; color: var(--gold); margin-bottom: 16px; }

.detail-list { margin-bottom: 20px; }
.detail-list li {
  font-size: .88rem; color: var(--text);
  padding: 7px 0 7px 20px; border-bottom: 1px solid var(--border);
  position: relative;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Info boxes */
.info-box {
  background: rgba(212,160,23,.05); border: 1px solid rgba(212,160,23,.18);
  border-radius: var(--radius); padding: 20px; margin-top: 18px;
}
.info-box--warn { background: rgba(192,57,43,.06); border-color: rgba(192,57,43,.25); }
.info-box--gold { background: rgba(212,160,23,.08); border-color: rgba(212,160,23,.3); }
.info-box h4 { font-size: .92rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.info-box p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--text); }

/* Response badge */
.response-badge {
  text-align: center; margin-top: 18px; padding: 24px;
  background: var(--mid); border: 1px solid var(--border); border-radius: var(--radius);
}
.rb-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); line-height: 1; }
.rb-label { font-size: .83rem; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* ══ AREAS SECTION ═════════════════════ */
.areas-intro { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.areas-intro p { font-size: .97rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }

.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.area-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all var(--tr);
}
.area-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.area-card--primary {
  grid-column: span 3;
  border-color: rgba(212,160,23,.25);
  background: linear-gradient(135deg, rgba(212,160,23,.06) 0%, var(--dark3) 100%);
}
.area-card--more { display: flex; flex-direction: column; gap: 12px; }
.area-icon { font-size: 1.5rem; margin-bottom: 10px; }
.area-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .04em; color: var(--white); margin-bottom: 10px; }
.area-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 8px; }
.area-list { margin-top: 8px; }
.area-list li { font-size: .87rem; color: var(--muted); padding: 4px 0 4px 18px; position: relative; }
.area-list li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.areas-extra { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.areas-extra h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .04em; color: var(--white); margin: 32px 0 12px; }
.areas-extra h3:first-child { margin-top: 0; }
.areas-extra p { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }

/* ══ WHY GRID ═══════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; transition: border-color var(--tr);
}
.why-item:hover { border-color: var(--gold); }
.why-icon { font-size: 1.4rem; flex-shrink: 0; }
.why-item strong { display: block; font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ══ FAQ ════════════════════════════════ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; }
.faq-group-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem;
  letter-spacing: .05em; color: var(--gold); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 600; padding: 13px 0;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: color var(--tr);
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform var(--tr); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--gold); }
.faq-a { font-size: .88rem; color: var(--muted); line-height: 1.7; padding-bottom: 13px; }

/* ══ CTA BANNER ═════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #1a1200 0%, #2a1e00 50%, #1a1200 100%);
  border-top: 1px solid rgba(212,160,23,.3);
  border-bottom: 1px solid rgba(212,160,23,.3);
  padding: 64px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: .04em; color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: var(--muted); font-size: 1rem; }

/* ══ CONTACT ════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.ci-item strong { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 3px; }
.ci-item a, .ci-item span { font-size: .97rem; color: var(--white); line-height: 1.5; }
.ci-item a:hover { color: var(--gold); }

.contact-form { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .05em; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--mid); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: .93rem;
  padding: 12px 16px; transition: border-color var(--tr); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
.form-group select option { background: var(--dark2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #2ecc71; border-radius: var(--radius); padding: 14px 18px; font-size: .9rem; margin-top: 12px; text-align: center; display: none; }
.form-success.visible { display: block; }
.field-error { font-size: .78rem; color: #e74c3c; margin-top: 4px; }
.sms-consent { 
  font-size: .78rem; 
  color: var(--muted); 
  line-height: 1.5; 
  margin-top: 12px; 
  padding: 12px 16px; 
  background: rgba(212,160,23,.05); 
  border: 1px solid rgba(212,160,23,.15); 
  border-radius: var(--radius); 
  text-align: center;
}

.story-coupons {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 24px;
}

.story-coupons h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

.story-coupon {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: all var(--tr);
}

.story-coupon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

.story-coupon h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.story-coupon p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.story-coupon .coupon-code {
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

.story-cta {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.story-cta p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
}

/* ══ COUPONS ═════════════════════════════ */
.coupons-grid {
  display: grid;
  gap: 48px;
  margin-top: 48px;
}

.coupon-category {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coupon-category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--tr);
  position: relative;
}

.coupon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

.coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.coupon-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  flex: 1;
}

.coupon-badge {
  background: var(--gold);
  color: var(--dark);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.coupon-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px 0;
}

.coupon-code {
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

.coupon-cta {
  text-align: center;
  margin-top: 64px;
  padding: 48px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.coupon-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}

.coupon-cta p {
  font-size: 1rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

/* ══ REVIEWS ═════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--tr);
  position: relative;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewer-badge {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  background: var(--gold-bg);
  padding: 2px 6px;
  border-radius: 4px;
}

.review-rating {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.review-time {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

.review-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.review-content p {
  margin: 0;
}

/* ══ FOOTER ═════════════════════════════ */
.footer { background: var(--dark2); border-top: 1px solid var(--border); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: .87rem; color: var(--muted); line-height: 1.7; margin-bottom: 8px; max-width: 300px; }
.footer-areas { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.footer-links h4, .footer-contact h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: .08em; color: var(--white); margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .87rem; color: var(--muted); transition: color var(--tr); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-phone { font-size: 1.2rem; font-weight: 700; color: var(--gold); transition: color var(--tr); }
.footer-phone:hover { color: var(--gold-light); }
.footer-contact p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

.footer-map { display: flex; flex-direction: column; gap: 12px; }
.map-container { 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.map-container iframe {
  border: none;
  width: 100%;
  height: 200px;
}
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: var(--muted); }

/* ══ SCROLL TO TOP ══════════════════════ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--gold); color: var(--dark); border: none; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  opacity: 0; visibility: hidden; transition: all var(--tr);
  z-index: 900; box-shadow: 0 4px 16px rgba(212,160,23,.35);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── Mobile Performance Optimizations ── */
@media (max-width: 768px) {
  /* Reduce expensive effects on mobile */
  .hero-bg::after {
    display: none;
  }
  
  /* Optimize backdrop-filter for mobile */
  #navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(11,11,11,.98);
  }
  
  /* Reduce animations on mobile */
  .btn, .nav-link, .area-card, .review-card, .coupon-card {
    transition: transform 0.2s ease;
  }
  
  /* Optimize scroll performance */
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Reduce box shadows on mobile */
  .btn:hover, .area-card:hover, .review-card:hover, .coupon-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  /* CSS containment for better performance */
  .hero, .section, .footer {
    contain: layout style paint;
  }
  
  /* Optimize images for mobile */
  img {
    will-change: transform;
  }
  
  /* Pricing promise mobile optimization */
  .pricing-promise {
    margin: 24px 0 20px 0;
    padding: 20px 24px;
  }
  
  .pricing-promise h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .pricing-promise p {
    font-size: .9rem;
  }
}

/* ══ RESPONSIVE ═════════════════════════ */
@media (max-width: 1100px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .area-card--primary { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-map { grid-column: span 2; }
}

@media (max-width: 900px) {
  .two-col, .two-col--reverse {
    grid-template-columns: 1fr;
  }
  .two-col--reverse .two-col__text { order: 1; }
  .two-col--reverse .two-col__aside { order: 2; }
  .sticky-card { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card--primary { grid-column: span 1; }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }

  .review-card {
    padding: 20px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .review-time {
    align-self: flex-end;
  }

  .coupons-grid {
    gap: 32px;
    margin-top: 32px;
  }

  .coupon-card {
    padding: 20px;
  }

  .coupon-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .coupon-badge {
    align-self: flex-start;
  }

  .coupon-cta {
    padding: 32px 24px;
    margin-top: 48px;
  }

  .coupon-cta h3 {
    font-size: 1.5rem;
  }

  .story-coupons {
    padding: 24px;
    margin-top: 20px;
  }

  .story-coupon {
    padding: 16px;
    margin-bottom: 12px;
  }

  .story-coupon h4 {
    font-size: 0.95rem;
  }

  .story-coupon p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .top-call-bar {
    padding: 4px 0;
  }

  .top-call-link {
    font-size: 0.9rem;
  }

  .top-call-number {
    font-size: 1rem;
  }

  #navbar {
    top: 32px;
  }

  .hero {
    padding-top: 90px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-call { 
    display: flex; 
    order: -1;
    margin-bottom: 8px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .review-card {
    padding: 16px;
  }

  .nav-links {
    display: none; position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(11,11,11,.99);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px; gap: 4px;
    align-items: stretch;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; justify-content: flex-start; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; text-align: center; padding: 14px; margin-top: 8px; font-size: 1rem; }

  .dropdown-menu {
    position: static; display: none; border: none;
    background: var(--mid); margin-top: 4px;
    border-radius: var(--radius); padding: 8px; box-shadow: none;
  }
  .dropdown-menu.open { display: block; }
  .drop-link { padding: 10px 16px; }
  .dropdown-btn { width: 100%; justify-content: space-between; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0 12px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-content { padding: 60px 0 60px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-banner .btn { width: 100%; }

  .content-list--cols { columns: 1; }
  .trust-inner { gap: 8px 16px; }
  .trust-item { font-size: .8rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 3rem; }
  .contact-form { padding: 20px 16px; }
  .service-detail-card { padding: 20px; }
  .call-cta { padding: 20px; }
}
