/* ═══════════════════════════════════════════
   AK Locksmith — styles.css
   Flat, clean, no gradients
════════════════════════════════════════════ */

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

:root {
  --black:      #0a0a0a;
  --off-black:  #111111;
  --grey-1:     #333333;
  --grey-2:     #666666;
  --grey-3:     #999999;
  --grey-4:     #d4d4d4;
  --grey-5:     #f0f0f0;
  --grey-6:     #f7f7f7;
  --white:      #ffffff;
  --amber:      #e8a020;

  --header-h:   62px;
  --radius:     8px;
  --max-w:      1060px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { display: block; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Container ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--grey-5);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--black);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .5px;
  border-radius: 6px;
}
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.2px;
}

.header-nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}
@media (min-width: 640px) {
  .header-nav {
    display: flex;
    margin-left: auto;
  }
}
.header-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey-2);
  transition: color .15s;
}
.header-nav a:hover { color: var(--black); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background .15s;
  margin-left: auto;
}
@media (min-width: 640px) { .header-cta { margin-left: 0; } }
.header-cta:hover { background: var(--off-black); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  padding: 88px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-5);
}


.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 22px;
}
h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey-1);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: filter .15s, transform .1s;
}
.cta-primary:hover { filter: brightness(.92); }
.cta-primary:active { transform: scale(.97); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--grey-2);
  padding: 14px 4px;
  border-bottom: 1px solid var(--grey-4);
  transition: color .15s, border-color .15s;
}
.cta-secondary:hover {
  color: var(--black);
  border-color: var(--black);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-pills li {
  font-size: .8rem;
  font-weight: 500;
  color: var(--grey-2);
  background: var(--grey-6);
  border: 1px solid var(--grey-5);
  padding: 5px 12px;
  border-radius: 999px;
}

.ownership-notice {
  margin-top: 18px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--grey-2);
  background: #fffbf0;
  border: 1px solid #f5dfa0;
  border-left: 3px solid var(--amber);
  padding: 10px 14px;
  border-radius: var(--radius);
  max-width: 420px;
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services {
  padding: 80px 0;
  background: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--grey-3);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.2;
}

/* Three-column service layout */
.service-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--grey-4);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
}

@media (min-width: 700px) {
  .service-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-group {
  padding: 32px 28px;
  border-bottom: 1px solid var(--grey-4);
}
@media (min-width: 700px) {
  .service-group {
    border-bottom: none;
    border-right: 1px solid var(--grey-4);
  }
  .service-group:last-child {
    border-right: none;
  }
}

.group-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--grey-3);
  margin-bottom: 18px;
  padding-left: 10px;
  border-left: 2px solid var(--amber);
}

.service-list li {
  font-size: .95rem;
  font-weight: 500;
  color: var(--grey-1);
  padding: 7px 0;
  border-bottom: 1px solid var(--grey-6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* Brands bar */
.brands-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 28px;
  background: var(--grey-6);
  border: 1px solid var(--grey-5);
  border-radius: 12px;
  margin-top: 12px;
}
@media (min-width: 560px) {
  .brands-bar {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.brands-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--grey-3);
  flex-shrink: 0;
}

.brands-list {
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-1);
}

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery {
  padding: 0 0 64px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--grey-5);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ════════════════════════════════════════════
   TRUST
════════════════════════════════════════════ */
.trust {
  background: var(--black);
  background-image: radial-gradient(circle, #1e1e1e 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 52px 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 140px;
}

.trust-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -.5px;
  line-height: 1;
}

.trust-desc {
  font-size: .82rem;
  color: var(--grey-3);
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #222;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 640px) { .trust-divider { display: block; } }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact {
  padding: 88px 0;
  border-top: 1px solid var(--grey-5);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }
}

.contact-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.7px;
  line-height: 1.2;
  margin: 10px 0 14px;
}
.contact-text p {
  font-size: .95rem;
  color: var(--grey-2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.contact-phone {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--amber);
  transition: color .15s;
  line-height: 1;
}
.contact-phone:hover { color: var(--amber-d); }

.contact-email {
  font-size: .95rem;
  font-weight: 500;
  color: var(--grey-2);
  border-bottom: 1px solid var(--grey-4);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .15s, border-color .15s;
}
.contact-email:hover {
  color: var(--black);
  border-color: var(--black);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--grey-2);
  border-bottom: 1px solid var(--grey-4);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .15s, border-color .15s;
}
.contact-whatsapp:hover {
  color: var(--black);
  border-color: var(--black);
}

.contact-area {
  font-size: .85rem;
  color: var(--grey-3);
  line-height: 1.6;
  padding-top: 4px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--grey-6);
  border-top: 1px solid var(--grey-5);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy {
  font-size: .8rem;
  color: var(--grey-3);
}

.footer-phone {
  font-size: .875rem;
  font-weight: 700;
  color: var(--grey-1);
  transition: color .15s;
}
.footer-phone:hover { color: var(--black); }

/* ════════════════════════════════════════════
   MOBILE STICKY BAR
════════════════════════════════════════════ */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 16px 12px;
  background: var(--white);
  border-top: 1px solid var(--grey-5);
  display: flex;
  gap: 8px;
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 1;
  padding: 14px;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: .975rem;
  border-radius: var(--radius);
  transition: filter .15s;
}
.mobile-bar a:hover { filter: brightness(.92); }
.mobile-bar .mobile-bar-alt { background: var(--black); }

@media (min-width: 768px) { .mobile-bar { display: none; } }
