/* 
  Edit these quick items first:
  1) Search for 260-555-1234 in the HTML files and replace with your real number.
  2) Search for info@example.com and replace with your real email.
  3) To change the hero image, replace images/hero-locksmith.jpg with your own image.
*/

:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-alt: #eef2f6;
  --text: #1e2933;
  --muted: #5d6b78;
  --line: #d9e0e7;
  --brand: #124b87;
  --brand-dark: #0c355f;
  --shadow: 0 16px 40px rgba(10, 24, 39, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.btn-small {
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(8, 20, 33, 0.45), rgba(8, 20, 33, 0.55)),
    url('images/hero-locksmith.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,30,0.72) 0%, rgba(7,18,30,0.45) 55%, rgba(7,18,30,0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.hero-card {
  max-width: 660px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c7d7e6;
}

h1, h2, h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.12rem;
  color: inherit;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem;
}

.notice {
  margin: 0.5rem 0 0;
  color: #e2ebf3;
  font-size: 0.96rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.info-box {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.checklist {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.checklist li + li {
  margin-top: 0.65rem;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, #edf3f8, #f6f7f9);
  border-bottom: 1px solid var(--line);
}

.cta {
  background: #10283f;
  color: #fff;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.text-link {
  font-weight: 700;
}

.footer {
  background: #0f1b26;
  color: #dbe5ec;
  padding: 2rem 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    padding: 0.85rem 0;
  }

  .nav {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 0;
  }

  .hero-card {
    padding: 1.35rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .nav-wrap,
  .nav,
  .cta-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav .btn-small {
    width: 100%;
    text-align: center;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}
