/* =====================================================
   HEATWAVE LOCKSMITH - styles
   Theme: dark navy + warm orange accent
   ===================================================== */

:root {
  --bg: #0e1014;
  --bg-2: #14171d;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --line-dark: #232831;
  --line-light: #e7e9ee;
  --text-dark: #11141a;
  --text-body: #4a4f5a;
  --text-muted: #6b7280;
  --text-on-dark: #ececee;
  --text-on-dark-soft: #a4a8b1;
  --orange: #f97316;
  --orange-soft: #ff8a3c;
  --orange-deep: #c95a0c;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 14px 40px rgba(8, 11, 16, 0.45);
  --shadow-soft: 0 8px 24px rgba(20, 25, 40, 0.08);
  --container: 1180px;
  --transition: 200ms ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--surface);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-body); }
.accent { color: #c2410c; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c2410c;
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--orange-soft); }

.lead, .section-lead { font-size: 1.05rem; color: var(--text-body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

.btn-primary {
  background: #c2410c;
  color: #fff;
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.25);
}
.btn-primary:hover { background: #a83509; box-shadow: 0 14px 30px rgba(194, 65, 12, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--line-light);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line-light);
}
.header-inner {
  display: flex; align-items: center; gap: 16px; height: 78px;
}
.brand { display: inline-flex; align-items: center; }
.logo-img { height: 56px; width: auto; }
.logo-img--footer { height: 64px; }

.primary-nav {
  display: none;
  margin-left: auto;
  gap: 28px;
}
.primary-nav a {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.primary-nav a:hover { color: var(--orange); }

.header-cta { display: none; margin-left: 8px; }

.menu-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px;
  height: 2px; background: var(--text-dark);
  transition: all var(--transition);
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(249, 115, 22, 0.08), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(249, 115, 22, 0.04), transparent 60%),
    #ffffff;
  color: var(--text-dark);
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--line-light);
}
.hero h1 { color: var(--text-dark); margin: 14px 0 18px; }
.hero .lead { color: var(--text-body); max-width: 540px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid #fde68a;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(245,166,35,.15);
  transition: box-shadow var(--transition), transform var(--transition);
}
.hero-rating-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.25); }
.hero-rating-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 0.06em; line-height: 1; }
.hero-rating-text { font-size: 0.92rem; color: var(--text-body); }
.hero-rating-text strong { color: var(--text-dark); font-size: 1rem; }
.hero-trust {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.hero-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-light);
  aspect-ratio: 3 / 4;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ---------- Intro strip ---------- */
.intro-strip {
  background: var(--surface);
  padding: 80px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.intro-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-copy h2 { margin: 12px 0 16px; }
.intro-copy p { margin-bottom: 22px; max-width: 520px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text-on-dark);
  padding: 60px 0;
  border-block: 1px solid var(--line-dark);
}
.cta-band-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-band-inner h2 { color: var(--text-on-dark); }
.cta-band-inner p { color: var(--text-on-dark-soft); margin: 14px 0 24px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head--light h2 { color: var(--text-on-dark); }
.section-head--light .section-lead { color: var(--text-on-dark-soft); }
.section-lead { margin-top: 12px; }

/* ---------- Service rows ---------- */
.services { background: var(--surface); }
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 60px;
}
.service-row:last-child { margin-bottom: 0; }
.service-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.service-text h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-text p { margin-bottom: 18px; }
.bullets { margin-bottom: 24px; }
.bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--text-body);
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}

/* ---------- Why section (dark) ---------- */
.why-section {
  background: var(--bg);
  color: var(--text-on-dark);
  padding: 90px 0;
  border-block: 1px solid var(--line-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.why-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-dark);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.why-copy h2 { color: var(--text-on-dark); margin: 12px 0 16px; }
.why-copy p { color: var(--text-on-dark-soft); margin-bottom: 22px; }
.why-list { margin-bottom: 26px; }
.why-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text-on-dark-soft);
}
.why-list li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.why-list strong { color: var(--text-on-dark); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--surface-soft); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.faq-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.faq-photo img { width: 100%; height: 100%; object-fit: cover; }
.faq-content h2 { margin: 12px 0 14px; }
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 800;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; font-size: 0.95rem; }

/* ---------- Process (dark / orange) ---------- */
.process-section {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(249, 115, 22, 0.14), transparent 60%),
    var(--bg);
  color: var(--text-on-dark);
  padding: 90px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}
.process-step h3 { color: var(--text-on-dark); margin-bottom: 10px; }
.process-step p { color: var(--text-on-dark-soft); }

/* ---------- Areas ---------- */
.areas-section { background: var(--surface); }
.city-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.city-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.city-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow-soft);
}
.city-card h3 { margin-bottom: 6px; }
.city-card p { font-size: 0.94rem; color: var(--text-muted); }
.city-card span {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--surface-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.testimonial {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(20,25,40,.12);
  border-color: #d1d5db;
}
.t-google {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px !important;
  margin-left: auto;
  flex-shrink: 0;
}
.t-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  width: 100%;
}
.t-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.t-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.t-meta { font-size: 0.8rem; color: var(--text-muted); }
.t-stars {
  color: #f5a623;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--text-body);
}
.reviews-note {
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--surface-soft);
  padding: 72px 0 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.contact-info h2 { margin: 12px 0 14px; }
.contact-info p { margin-bottom: 26px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-list a:hover { color: var(--orange); }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-soft);
}
.contact-form h3 { margin-bottom: 18px; font-size: 1.4rem; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: var(--surface-soft);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: 0.86rem; color: var(--text-muted); text-align: center; }
.form-note a { color: var(--orange); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: #07090c;
  color: var(--text-on-dark-soft);
  padding: 72px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-on-dark-soft); max-width: 380px; font-size: 0.93rem; }
.footer-col h4 {
  font-size: 0.78rem;
  color: var(--orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.93rem; }
.footer-col a { color: #c8cdd6; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange-soft); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c8cdd6;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px 14px;
  transition: color var(--transition), border-color var(--transition);
}
.footer-back-top:hover { color: var(--orange-soft); border-color: var(--orange-soft); }


/* ---------- Floating call ---------- */
.floating-call {
  position: fixed; right: 18px; bottom: 18px;
  width: 58px; height: 58px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
  z-index: 60;
  transition: transform var(--transition);
}
.floating-call svg { width: 24px; height: 24px; }
.floating-call:hover { transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (min-width: 900px) {
  .hero { padding: 96px 0 110px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .intro-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .service-row { grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 90px; }
  .service-row.reverse .service-photo { order: 2; }
  .why-grid { grid-template-columns: 1fr 1.4fr; gap: 56px; }
  .faq-grid { grid-template-columns: 1fr 1.5fr; gap: 56px; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 24px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-call { display: none; }

  .menu-toggle { display: none; }
  .primary-nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
}

@media (max-width: 899px) {
  .primary-nav {
    position: absolute; top: 78px; left: 0; right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line-light);
    flex-direction: column;
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .primary-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line-light);
  }
  .primary-nav a:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
