/* ====================================================
   LOCAL LOCKSMITH PRO LLC — Main Stylesheet
   Milwaukee, WI · (414) 366-7448
==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy:    #0D2137;
  --navy2:   #132D4A;
  --blue:    #1652A0;
  --amber:   #F59E0B;
  --amber2:  #D97706;
  --red:     #DC2626;
  --red2:    #B91C1C;
  --white:   #FFFFFF;
  --off:     #F8FAFC;
  --light:   #EEF3FA;
  --muted:   #64748B;
  --dark:    #0F172A;
  --border:  #E2E8F0;
  --font-h:  'Barlow Condensed', sans-serif;
  --font-b:  'DM Sans', sans-serif;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(13,33,55,.10);
  --shadow2: 0 8px 40px rgba(13,33,55,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--dark); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.05; letter-spacing: -.5px; }
h1 { font-size: clamp(44px, 6vw, 72px); font-weight: 900; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
p  { font-size: 16px; line-height: 1.75; color: var(--muted); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-family: var(--font-h); font-size: 18px; font-weight: 700; letter-spacing: .5px; cursor: pointer; border: none; transition: all .2s; white-space: nowrap; }
.btn-red  { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(220,38,38,.35); }
.btn-red:hover  { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,38,38,.45); }
.btn-amber{ background: var(--amber); color: #fff; }
.btn-amber:hover{ background: var(--amber2); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 18px 40px; font-size: 22px; }
.btn-sm { padding: 10px 20px; font-size: 15px; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-label { display: inline-block; font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 17px; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.header-top { background: var(--navy2); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-top-left { font-size: 13px; color: rgba(255,255,255,.6); }
.header-top-left strong { color: var(--amber); }
.header-main { padding: 0 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 38px; height: 44px; flex-shrink: 0; }
.logo-text { font-family: var(--font-h); font-weight: 900; font-size: 22px; color: #fff; line-height: 1.15; text-transform: uppercase; }
.logo-accent { color: var(--amber); }
.logo-sub { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,.5); font-family: var(--font-b); text-transform: uppercase; }
nav { display: flex; gap: 4px; }
nav a { color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all .18s; }
nav a:hover, nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: #fff; letter-spacing: .5px; }
.header-phone span { display: block; font-family: var(--font-b); font-size: 10px; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }

/* ── HERO ── */
.hero { background: var(--navy); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(22,82,160,.4) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3); border-radius: 20px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--amber); margin-bottom: 24px; }
.hero h1 { color: #fff; margin-bottom: 8px; }
.hero h1 em { color: var(--amber); font-style: normal; display: block; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.72); margin: 20px 0 36px; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }
.hero-trust-item::before { content: '✓'; color: var(--amber); font-weight: 700; }
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 32px; backdrop-filter: blur(8px); }
.hero-card-title { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-stat { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,.55); }
.hero-stat-val { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--amber); }

/* ── TRUST BAR ── */
.trust-bar { background: #081929; padding: 20px 0; }
.trust-bar-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 38px; height: 38px; background: rgba(245,158,11,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.trust-label { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: #fff; }
.trust-sub { font-size: 11px; color: rgba(255,255,255,.45); }

/* ── SERVICE CARDS ── */
.service-card { background: #fff; border-radius: 14px; padding: 36px 28px; box-shadow: var(--shadow); border: 1.5px solid transparent; transition: all .25s; cursor: pointer; }
.service-card:hover { border-color: var(--amber); transform: translateY(-5px); box-shadow: var(--shadow2); }
.service-card-icon { width: 60px; height: 60px; background: var(--light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: background .2s; }
.service-card:hover .service-card-icon { background: rgba(245,158,11,.12); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 22px; }
.service-card p { font-size: 14px; margin-bottom: 18px; }
.service-card-link { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--amber); letter-spacing: .3px; display: flex; align-items: center; gap: 6px; }

/* ── WHY US ── */
.why-point { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.why-point:last-child { border-bottom: none; }
.why-num { min-width: 48px; height: 48px; background: var(--navy); color: var(--amber); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 20px; font-weight: 800; }
.why-point-title { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-point-desc { font-size: 14px; }

/* ── STEPS ── */
.step-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 36px 28px; text-align: center; }
.step-num { width: 68px; height: 68px; background: var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 30px; font-weight: 900; color: #fff; margin: 0 auto 20px; }
.step-title { font-family: var(--font-h); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,.6); }

/* ── REVIEWS ── */
.review-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--amber); }
.review-stars { color: var(--amber); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; font-style: italic; color: var(--dark); margin-bottom: 18px; line-height: 1.72; }
.review-author { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--navy); }
.review-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.faq-q { padding: 20px 24px; font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background .2s; user-select: none; }
.faq-q:hover { background: var(--off); }
.faq-chevron { color: var(--amber); font-size: 20px; transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ── EMERGENCY BANNER ── */
.emergency-banner { background: var(--red); padding: 72px 0; text-align: center; }
.emergency-banner h2 { color: #fff; margin-bottom: 14px; }
.emergency-banner p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-white { background: #fff; color: var(--red); font-family: var(--font-h); font-size: 22px; font-weight: 900; padding: 18px 44px; border-radius: var(--radius); border: none; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 10px; }
.btn-white:hover { background: #f5f5f5; transform: scale(1.03); }

/* ── CITIES GRID ── */
.city-chip { background: var(--light); border-radius: 8px; padding: 11px 16px; font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; font-family: var(--font-h); letter-spacing: .3px; }
.city-chip::before { content: '✓'; color: var(--amber); font-weight: 800; font-size: 14px; }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .3px; }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-b); font-size: 15px; color: var(--dark); background: #fff; transition: border-color .2s, box-shadow .2s; outline: none; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,82,160,.12); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(22,82,160,.35) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.7); max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.breadcrumb a { color: var(--amber); }
.breadcrumb-sep { opacity: .4; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 16px; line-height: 1.8; }
.footer-col h4 { font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); margin: 0; }

/* ── STAT BOX ── */
.stat-box { background: var(--light); border-radius: 14px; padding: 28px; text-align: center; }
.stat-val { font-family: var(--font-h); font-size: 52px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ── MISC ── */
.bg-navy { background: var(--navy); }
.bg-off   { background: var(--off); }
.bg-light { background: var(--light); }
.divider  { height: 4px; background: var(--amber); width: 60px; margin: 14px 0 24px; border-radius: 2px; }
.divider-center { margin: 14px auto 24px; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-green  { background: #DCFCE7; color: #166534; }
.badge-amber  { background: #FEF9C3; color: #854D0E; }
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.highlight-box { background: var(--light); border-left: 4px solid var(--amber); border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 20px 0; }
.highlight-box p { font-size: 15px; color: var(--dark); }

/* ── COOKIE BAR ── */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 295; background: var(--navy2); border-top: 2px solid rgba(245,158,11,.25); padding: 14px 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 -4px 20px rgba(0,0,0,.25); flex-wrap: wrap; transition: opacity .3s, transform .3s; }
.cookie-bar--hide { opacity: 0; transform: translateY(100%); }
.cookie-bar p { font-size: 13px; color: rgba(255,255,255,.75); margin: 0; flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-bar p a { color: var(--amber); text-decoration: underline; }
.cookie-bar button { background: var(--amber); color: var(--navy); font-family: var(--font-h); font-size: 14px; font-weight: 700; padding: 9px 22px; border: none; border-radius: var(--radius); cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background .18s; }
.cookie-bar button:hover { background: var(--amber2); }
@media (max-width: 768px) { .cookie-bar { bottom: 58px; } }

/* ── HAMBURGER BUTTON ── */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px; transition: background .18s; flex-shrink: 0; }
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav { flex-direction: column; background: var(--navy2); border-top: 1px solid rgba(255,255,255,.08); max-height: 0; overflow: hidden; transition: max-height .32s ease; display: flex; }
.mobile-nav.open { max-height: 420px; }
.mobile-nav a { padding: 15px 24px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.06); transition: background .18s, color .18s; }
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.07); color: #fff; }

/* ── MOBILE STICKY ── */
.mobile-sticky { display: none; }

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .header-top-left:last-child { display: none; }
  .header-top-inner { justify-content: center; }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .hero { padding: 64px 0 56px; }
  .page-hero { padding: 48px 0 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .mobile-sticky { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--red); padding: 14px 20px; justify-content: center; align-items: center; box-shadow: 0 -4px 20px rgba(0,0,0,.3); }
  .mobile-sticky a { color: #fff; font-family: var(--font-h); font-size: 18px; font-weight: 800; }
  body { padding-bottom: 58px; }
  .emergency-banner { padding: 56px 0; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 16px 28px; font-size: 19px; }
  .header-phone { font-size: 16px; }
  .trust-bar-inner { gap: 12px; }
  .emergency-banner { padding: 44px 0; }
}
