/* North Hills Mobile Detail — shared styles */

:root {
  --navy: #14181f;
  --navy-light: #1f2530;
  --teal: #c6a15c;
  --teal-dark: #96793a;
  --gold-light: #e3cd9c;
  --gold-gradient: linear-gradient(135deg, #e3cd9c 0%, #c6a15c 45%, #96793a 100%);
  --amber: #f5b942;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.14);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--gray-200); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.hero h1, .hero h2, .hero h3, .hero h4 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.section-navy .eyebrow { color: var(--teal); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; }
.section-navy .section-head p { color: var(--gray-200); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold-gradient); color: var(--navy); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }
.btn-block { width: 100%; justify-content: center; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--gray-200);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--white); font-weight: 600; font-size: 0.95rem; display: none; }
.nav-toggle {
  display: none;
  background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer;
}

@media (min-width: 860px) {
  .nav-phone { display: inline-block; }
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 480px) {
  .nav { padding: 14px 16px; flex-wrap: nowrap; gap: 8px; }
  .brand { font-size: 0.95rem; gap: 8px; flex: 1 1 auto; min-width: 0; }
  .brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
  .nav-cta { gap: 10px; flex-shrink: 0; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.85rem; white-space: nowrap; }
  .nav-toggle { font-size: 1.4rem; }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, rgba(198,161,92,0.18), transparent 45%), var(--navy);
  color: var(--white);
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18,21,27,0.94) 0%, rgba(18,21,27,0.82) 45%, rgba(18,21,27,0.6) 100%);
  z-index: 1;
}
.hero > .container, .hero > .hero-grid { position: relative; z-index: 2; }
.hero-grid { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--gray-200);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  background: var(--white);
  color: var(--gray-700);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { margin-bottom: 4px; }
.hero-card .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 8px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); }
.hero-stats span { font-size: 0.78rem; color: var(--gray-500); }

/* Grids */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(198,161,92,0.12);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card ul { padding-left: 1.1em; margin: 12px 0 0; color: var(--gray-500); font-size: 0.94rem; }
.card-link { display: inline-block; margin-top: 14px; color: var(--teal-dark); font-weight: 600; font-size: 0.92rem; }

/* Photo cards */
.card-photo {
  padding: 0;
  overflow: hidden;
}
.card-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.card-photo .card-body { padding: 24px 28px 28px; }

/* Video section */
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--navy);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame .video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* About photo */
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Steps */
.steps { counter-reset: step; }
.step {
  display: flex; gap: 18px; margin-bottom: 28px;
}
.step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.step-num::before { content: counter(step); }

/* Pricing */
.price-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  background: var(--white);
  position: relative;
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.price-tag { position: absolute; top: -12px; right: 24px; background: var(--gold-gradient); color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.price-amount { font-family: var(--font-head); font-size: 2rem; color: var(--navy); font-weight: 700; margin: 6px 0 16px; }
.price-amount span { font-size: 0.95rem; color: var(--gray-500); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.price-card ul li { padding: 8px 0; border-bottom: 1px dashed var(--gray-200); font-size: 0.94rem; }
.price-card ul li:last-child { border-bottom: none; }
.price-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 10px; }

/* Price table (full pricing page) */
.price-table-group { margin-bottom: 56px; }
.price-table-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.price-table-group .group-note {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.price-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--gray-50); }
.price-row-name { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.price-row-desc { font-size: 0.86rem; color: var(--gray-500); margin-top: 4px; }
.price-row-figures { text-align: right; flex-shrink: 0; white-space: nowrap; }
.price-row-amount { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.price-row-duration { font-size: 0.8rem; color: var(--gray-500); }
.price-row.popular { position: relative; }
.price-row.popular .price-row-name::after {
  content: "Most Popular";
  margin-left: 10px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  vertical-align: middle;
}
@media (max-width: 560px) {
  .price-row { flex-direction: column; }
  .price-row-figures { text-align: left; }
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial .stars { color: var(--amber); margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-name { font-weight: 600; color: var(--navy); margin-top: 14px; font-size: 0.92rem; }
.testimonial-loc { font-size: 0.82rem; color: var(--gray-500); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--teal-dark);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--gray-500); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--gray-200); }

/* Service area chips */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--teal-dark); }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(198,161,92,0.12); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--gray-500);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
