/* Quick Locksmith Services - locksmithcullman.com */
:root {
  --navy: #0e1a35;
  --navy-2: #16264d;
  --blue: #2456e6;
  --blue-dark: #17357e;
  --accent: #ffc21a;
  --accent-dark: #f0ad00;
  --ink: #1d2434;
  --muted: #5b6579;
  --bg: #ffffff;
  --bg-alt: #f5f7fc;
  --line: #e4e9f3;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(14, 26, 53, 0.08);
  --shadow-lg: 0 16px 48px rgba(14, 26, 53, 0.16);
  --font-head: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 830px; }
.center { text-align: center; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 0.55rem; }
h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Phone numbers: always large, bold, and easy to read */
.phone-digits,
a[href^="tel:"] {
  font-family: var(--font-head);
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.icon svg, .stars svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- top bar ---------- */
.topbar { background: var(--navy); color: #ccd5ec; font-size: 0.88rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar .icon { color: var(--accent); margin-right: 5px; }
.topbar-phone {
  color: var(--accent) !important; font-weight: 800; font-size: 1.02rem;
}
.topbar-phone:hover { color: #fff !important; text-decoration: none; }

/* ---------- header ---------- */
.site-header {
  background: #fff; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 var(--line), 0 4px 18px rgba(14, 26, 53, 0.06);
}
.header-inner { display: flex; align-items: center; gap: 22px; padding-top: 13px; padding-bottom: 13px; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none !important; }
.logo-badge {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 13px;
  background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 90%);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(255, 194, 26, 0.25);
}
.logo-badge svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.logo-text strong { font-family: var(--font-head); color: var(--navy); font-size: 1.18rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-text small { color: var(--muted); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 2px; }
.main-nav a {
  display: block; padding: 9px 13px; border-radius: 9px; color: var(--ink);
  font-weight: 600; font-size: 0.94rem;
}
.main-nav a:hover { background: var(--bg-alt); text-decoration: none; color: var(--blue); }
.main-nav a.active { color: var(--blue); background: #ecf1ff; }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; margin-left: auto; padding: 6px; }
.nav-toggle-label span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 12px; font-weight: 800; font-size: 1.02rem;
  font-family: var(--font-head); letter-spacing: 0.01em;
  text-decoration: none !important; transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--navy); box-shadow: 0 8px 22px rgba(255, 194, 26, 0.38); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: #fff; }
.btn-outline:hover { background: #ecf1ff; }
.btn-lg { padding: 16px 30px; font-size: 1.12rem; }
.btn-block { width: 100%; }
.header-call { padding: 11px 20px; font-size: 0.98rem; white-space: nowrap; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 560px at 88% -12%, rgba(36, 86, 230, 0.5), transparent 62%),
    radial-gradient(760px 420px at -8% 112%, rgba(255, 194, 26, 0.14), transparent 55%),
    linear-gradient(158deg, var(--navy) 0%, var(--navy-2) 58%, var(--blue-dark) 100%);
  color: #e9edf9; padding: 76px 0 84px;
}
.hero-inner { display: grid; grid-template-columns: 1.45fr 1fr; gap: 52px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255, 194, 26, 0.12);
  border: 1px solid rgba(255, 194, 26, 0.45); color: var(--accent); font-weight: 700;
  font-family: var(--font-head);
  padding: 7px 16px; border-radius: 999px; font-size: 0.88rem; margin-bottom: 20px;
}
.hero-sub { font-size: 1.12rem; max-width: 58ch; opacity: 0.93; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }
.center-ctas { justify-content: center; }
.hero-badges { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; font-weight: 600; font-size: 0.93rem; }
.hero-badges .icon { color: var(--accent); margin-right: 5px; }

.hero-card {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--accent);
}
.hero-card h2 { font-size: 1.42rem; }
.hero-card > p { color: var(--muted); margin-bottom: 1rem; }
.hero-card ul { list-style: none; margin-bottom: 22px; }
.hero-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.hero-card li:last-child { border-bottom: none; }
.hero-card .icon { color: var(--blue); margin-right: 9px; }
.hero-card .btn { font-size: 1.18rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(36, 86, 230, 0.45), transparent 60%),
    linear-gradient(158deg, var(--navy) 0%, var(--navy-2) 62%, var(--blue-dark) 100%);
  color: #e9edf9; padding: 54px 0 60px;
}
.page-hero h1 { color: #fff; margin-bottom: 0.85rem; }
.page-hero .hero-badges { margin-top: 20px; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 18px; opacity: 0.88; font-weight: 500; }
.breadcrumbs a { color: var(--accent); }
.breadcrumbs span { margin: 0 7px; opacity: 0.55; }

/* ---------- sections ---------- */
.section { padding: 68px 0; }
.section.alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--font-head);
  color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; margin-bottom: 10px;
}
.section-sub { color: var(--muted); max-width: 68ch; margin-bottom: 36px; font-size: 1.03rem; }

.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0; transition: opacity 0.2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #d5ddf0; }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 15px; margin-bottom: 18px;
  background: linear-gradient(135deg, #ecf1ff, #dce6ff); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 28px; height: 28px; }
.service-card h3 a { color: var(--navy); }
.service-card h3 a:hover { color: var(--blue); text-decoration: none; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0 17px; }
.tag-list li {
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--muted);
  font-size: 0.77rem; font-weight: 700; padding: 4px 11px; border-radius: 999px;
}
.text-link { font-weight: 700; font-family: var(--font-head); font-size: 0.95rem; }
.detail-card h3 { display: flex; align-items: center; gap: 9px; }
.detail-card .icon { color: var(--accent-dark); }
.contact-card { text-align: center; }
.contact-card .card-icon { margin-left: auto; margin-right: auto; }
.contact-card .btn { font-size: 1.15rem; }

/* ---------- features ---------- */
.feature { text-align: center; padding: 12px; }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px;
  background: linear-gradient(150deg, var(--blue), var(--navy)); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(14, 26, 53, 0.18);
}
.feature-icon svg { width: 30px; height: 30px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ---------- areas ---------- */
.area-col { margin-bottom: 36px; }
.area-col h3 { margin-bottom: 16px; padding-bottom: 9px; border-bottom: 3px solid var(--accent); display: inline-block; }
.city-grid {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.city-grid a {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 11px; padding: 13px 15px; color: var(--navy); box-shadow: 0 2px 8px rgba(14,26,53,0.05);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.city-grid a:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.city-grid strong { font-family: var(--font-head); font-size: 0.93rem; font-weight: 700; }
.city-grid span { font-size: 0.74rem; color: var(--muted); }

/* ---------- reviews ---------- */
.review { display: flex; flex-direction: column; }
.review .stars { color: var(--accent-dark); margin-bottom: 13px; display: flex; gap: 3px; }
.review p { flex: 1; color: var(--ink); font-size: 0.99rem; }
.review footer { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
  font-family: var(--font-head);
  background: linear-gradient(150deg, var(--blue), var(--navy)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.review small { color: var(--muted); display: block; }

/* ---------- faq ---------- */
.faq-section h2 { margin-bottom: 0.4rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  margin-bottom: 12px; box-shadow: 0 2px 10px rgba(14,26,53,0.04); overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: #cdd8ef; }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-head); font-size: 0.99rem;
  padding: 18px 52px 18px 22px; list-style: none;
  position: relative; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--blue); font-weight: 700;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.faq-item p { padding: 0 22px 18px; color: var(--muted); }

/* ---------- lists ---------- */
.check-list { list-style: none; margin: 18px 0; }
.check-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border-bottom: none; }
.check-list .icon { color: #189a4a; margin-right: 9px; }
.inline-links { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 20px; }
.inline-links a {
  display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 17px; font-weight: 600; font-size: 0.9rem; color: var(--navy);
}
.inline-links a:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(820px 320px at 92% 0%, rgba(255, 194, 26, 0.18), transparent 60%),
    linear-gradient(135deg, var(--blue-dark), var(--navy));
  color: #fff; padding: 50px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 0.35rem; }
.cta-band p { opacity: 0.88; margin: 0; }
.cta-band .btn { font-size: 1.18rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #b6c1dc; padding: 58px 0 0; font-size: 0.92rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.site-footer h4 { color: var(--accent); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 20px 0 10px; }
.footer-grid { display: grid; grid-template-columns: 1fr 2.2fr; gap: 50px; }
.footer-brand p { margin: 15px 0; }
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text small { color: #8b98bd; }
.footer-contact { list-style: none; margin-bottom: 8px; }
.footer-contact li { padding: 4px 0; }
.footer-contact a { color: var(--accent); font-weight: 700; font-size: 1.02rem; }
.footer-links { list-style: none; }
.footer-links li { padding: 3px 0; }
.footer-links a { color: #b6c1dc; }
.footer-links a:hover { color: #fff; }
.footer-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 46px; padding-top: 20px; padding-bottom: 20px;
}
.footer-bottom a { color: #b6c1dc; }

/* ---------- mobile call bar ---------- */
.mobile-call-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--accent); color: var(--navy); font-weight: 800; text-align: center;
  font-family: var(--font-head);
  padding: 16px 12px; box-shadow: 0 -6px 20px rgba(14,26,53,0.28); text-decoration: none !important;
  font-size: 1.12rem; letter-spacing: 0.01em;
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .topbar-counties { display: none; }
  .header-call { display: none; }

  .nav-toggle-label { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: 0 16px 32px rgba(14,26,53,0.18);
    border-top: 1px solid var(--line);
  }
  .nav-toggle:checked ~ .main-nav { display: block; }
  .main-nav ul { flex-direction: column; padding: 10px 16px 16px; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
  .footer-areas-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { justify-content: center; text-align: center; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 48px 0; }
  .hero-card { padding: 26px; }
}
