/* ============================================================
   MOBILE DETAILING TAURANGA — styles.css
   ------------------------------------------------------------
   1.  Variables & Base
   2.  Navigation
   3.  Hero
   4.  Stats
   5.  Sections (shared)
   6.  Services
   7.  Testimonials
   8.  Areas
   9.  FAQ
   10. Contact & Form
   11. Footer
   12. Animations
   13. Responsive
   ============================================================ */


/* ============================================================
   1. VARIABLES & BASE
   ============================================================ */

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

:root {
  /* Brand */
  --yellow:      #D3AF37;
  --white:       #FFFFFF;
  --blue:        #4c37d3;
  --blue-light:  #3fa6e1;
  --blue-dim:    rgba(0,175,239,0.1);

  /* Dark palette (hero, footer, contact) */
  --ink:         #080B0F;
  --ink-2:       #0E1318;
  --ink-3:       #141C24;
  --ink-4:       #1C2733;

  /* Light palette (content sections) */
  --paper:       #ffffff;
  --paper-2:     #EAECEF;
  --paper-3:     #E0E4E8;

  /* Type */
  --text-dark:   #1A2330;
  --text-body:   #3D4E5C;
  --text-muted:  #6B7D8F;
  --text-light:  #ffffff;
  --text-xlight: #8A9BAC;

  /* Borders */
  --border-dark:  rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.08);
  --border-blue:  rgba(0,175,239,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}


/* ============================================================
   2. NAVIGATION
   ============================================================ */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(8,11,15,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: border-color 0.3s;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-xlight);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

/* Dropdown */
.has-dropdown { position: relative; }

.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.5;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  min-width: 240px;
  z-index: 300;
  padding-top: 0.75rem;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: 0.5rem; left: 0; right: 0; bottom: 0;
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  z-index: -1;
}

.dropdown li { position: relative; z-index: 1; }

.dropdown li a {
  display: block;
  padding: 0.8rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-xlight) !important;
  text-transform: none !important;
  font-weight: 300;
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.15s, color 0.15s;
}

.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--ink-3); color: var(--text-light) !important; }

.has-dropdown:hover .dropdown { display: block; }

/* CTA button */
.nav-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  border: 1px solid var(--yellow);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.nav-btn:hover { background: var(--blue); color: var(--ink); }

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--yellow);
  transition: opacity 0.2s;
}


/* ============================================================
   3. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: var(--ink);
}

/* Subtle grid overlay */
/* .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
} */

/* Blue radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,175,239,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-location {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-xlight);
  margin-bottom: 2.5rem;
}

.hero-logo {
  height: 52px;
  width: auto;
  display: block;
  margin: 0 auto 3rem;
}

.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.hero-heading em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 0.97rem;
  color: var(--text-xlight);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-xlight);
  opacity: 0.5;
}

.hero-scroll-line {
  width: 4px;
  height: 50px;
  background: linear-gradient(to bottom, var(--border-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  border: none;
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--white); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  /* border: 1px solid var(--border-dark); */
  border: 1px solid var(--yellow);
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--white); color: var(--white); }


/* ============================================================
   4. STATS
   ============================================================ */

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 2rem 4rem;
  gap: 3rem;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-xlight);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
}


/* ============================================================
   5. SECTIONS (SHARED)
   ============================================================ */

.section { padding: 7rem 4rem; }
.section--light { background: var(--paper); }
.section--grey  { background: var(--paper-2); }
.section--dark  { background: var(--ink); }

.section-inner { max-width: 1160px; margin: 0 auto; }
.section-inner--narrow { max-width: 760px; margin: 0 auto; }

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header--light { text-align: center; }

.label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.label--yellow { color: var(--yellow); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-title--light { color: var(--text-light); }

.section-desc {
  font-size: 0.93rem;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-desc--muted { color: var(--text-xlight); }


/* ============================================================
   6. SERVICES
   ============================================================ */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  cursor: pointer;
}

.service-item:hover { background: var(--paper-2); margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  padding-top: 0.2rem;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.service-tags li {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.75rem;
}

.service-arrow {
  font-size: 1.25rem;
  color: var(--blue);
  padding-top: 0.25rem;
  transition: transform 0.2s;
}

.service-item:hover .service-arrow { transform: translateX(4px); }


/* ============================================================
   7. TESTIMONIALS
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  padding: 2rem 1.75rem;
}

.review-card--featured {
  background: var(--ink-3);
  border-color: var(--border-blue);
}

.review-stars {
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-xlight);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: var(--ink-4);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--yellow);
  flex-shrink: 0;
  border-radius: 50%;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.review-location {
  font-size: 0.72rem;
  color: var(--text-xlight);
}


/* ============================================================
   8. AREAS
   ============================================================ */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.area-card {
  background: var(--paper);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

.area-card:hover { background: var(--paper-2); }

.area-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.area-suburbs {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================================
   9. FAQ
   ============================================================ */

.faq-list { margin-top: 3rem; }

.faq-item {
  border-top: 1px solid var(--border-light);
}

.faq-item:last-child { border-bottom: 1px solid var(--border-light); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  padding-bottom: 1.25rem;
  max-width: 620px;
}


/* ============================================================
   10. CONTACT & FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-details { margin-top: 2.5rem; }

.contact-row {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-row:first-child { border-top: 1px solid var(--border-dark); }

.contact-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-xlight);
  min-width: 52px;
  flex-shrink: 0;
}

.contact-val {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-val:hover { color: var(--blue); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-xlight);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--blue); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(138,155,172,0.35); }

.form-select option { background: var(--ink-2); }

.form-textarea { resize: vertical; min-height: 110px; }


/* ============================================================
   10b. CLIENT LOGO TICKER
   ============================================================ */

.ticker {
  background: var(--ink-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.75rem 0;
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 140px;
  z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--ink-2), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--ink-2), transparent); }

.ticker-track {
  display: flex; align-items: center;
  gap: 4rem; will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.ticker-item img {
  height: 32px; width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.25s, filter 0.25s;
}
.ticker-item img:hover { opacity: 0.9; filter: grayscale(0%) brightness(1); }


/* ============================================================
   10c. OUR WORK GALLERY
   ============================================================ */

.work {
  background: var(--black, #08090B);
  border-top: 1px solid var(--line-s, rgba(255,255,255,0.05));
}

.work-header {
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.work-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold, #C9A96E);
  margin-bottom: 0.6rem;
}

.work-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--cream, #E8E2D4);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.work-sub {
  font-size: 0.84rem;
  color: var(--muted, #6A6458);
  line-height: 1.7;
}

/* Mobile — stacked, fixed height using padding trick */
.work-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.work-item {
  overflow: hidden;
  position: relative;
  background: var(--black-2, #0D0E11);
  width: 100%;
  height: 260px; /* fixed px — identical in every browser */
}

.work-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Desktop — asymmetric side by side */
@media (min-width: 700px) {
  .work-header { padding: 5rem 4rem 3rem; }

  .work-grid {
    flex-direction: row;
    height: 480px;
  }

  .work-item {
    flex: 1;
    height: 100%;
  }

  /* .work-item--large { flex: 1.6; } */
}


/* ============================================================
   11. FOOTER
   ============================================================ */

.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 4rem 2rem;
}

.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-xlight);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-location {
  font-size: 0.72rem;
  color: var(--text-xlight);
  opacity: 0.5;
}


/* ============================================================
   12. ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-location  { animation: fadeUp 0.6s ease 0.1s both; }
.hero-logo      { animation: fadeUp 0.6s ease 0.25s both; }
.hero-heading   { animation: fadeUp 0.6s ease 0.4s both; }
.hero-sub       { animation: fadeUp 0.6s ease 0.55s both; }
.hero-actions   { animation: fadeUp 0.6s ease 0.7s both; }


/* ============================================================
   12b. CONTACT PAGE
   ============================================================ */

/* Page hero */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 2.5rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 80%, rgba(201,169,110,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-xlight, #C9A96E);
  display: block;
  margin-bottom: 0.6rem;
  margin-top: 1.3rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.page-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--cream, #E8E2D4);
  animation: fadeUp 0.7s ease 0.25s both;
}
.page-h1 em { font-style: normal; color: var(--yellow, #C9A96E); }
.page-sub {
  font-size: 0.85rem;
  color: var(--text-xlight);
  margin-top: 0.75rem;
  line-height: 1.7;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* Photos strip */
.contact-photos { display: flex; gap: 2px; height: 200px; }
.contact-photo { flex: 1; overflow: hidden; position: relative; }
.contact-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.contact-photo:hover img { transform: scale(1.03); }

/* Form section */
.contact-section {
  padding: 2.5rem 1.5rem 4rem;
  background: var(--ink);
}
.contact-form-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow, #8ec96e);
  display: block;
  margin-bottom: 0.5rem;
}
.contact-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  letter-spacing: 0.05em;
  color: var(--cream, #E8E2D4);
  margin-bottom: 1.75rem;
  line-height: 1;
}

/* Form fields */
.form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.f-group { display: flex; flex-direction: column; gap: 0.35rem; }
.f-label { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-xlight); }
.f-req { color: var(--yellow, #C9A96E); }
.f-input, .f-select, .f-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.203);
  color: var(--cream, #E8E2D4);
  padding: 0.95rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--yellow, #C9A96E);
  background: rgba(201,169,110,0.04);
}
.f-input::placeholder, .f-textarea::placeholder { color: rgba(106, 100, 88, 0.503); }
.f-select option { background: #0D0E11; }
.f-textarea { resize: none; min-height: 110px; }
.f-submit {
  background: var(--yellow, #C9A96E);
  color: #06090E;
  border: none;
  padding: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.f-submit:active { transform: scale(0.99); }
.f-submit:hover { background: #DFC08C; }

/* Success */
.f-success {
  display: none; text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.15);
}
.f-success-check {
  width: 48px; height: 48px;
  border: 1px solid var(--yellow, #C9A96E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
  color: var(--yellow, #C9A96E);
}
.f-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--cream, #E8E2D4);
  margin-bottom: 0.5rem;
}
.f-success-text { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* Contact details below form */
.contact-details-section {
  padding: 0 1.5rem 4rem;
  background: var(--ink);
  border-top: 1px solid; color: var(--text-body);
}
.contact-details-inner { padding-top: 2rem; }
.contact-details-title {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-xlight);
  margin-bottom: 1rem;
}
.c-row {
  display: flex; gap: 1.25rem; align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.c-row:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.c-lbl {
  font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  min-width: 48px; flex-shrink: 0;
}
.c-val { font-size: 0.87rem; color: var(--cream, #E8E2D4); text-decoration: none; transition: color 0.2s; }
a.c-val:hover { color: var(--yellow, #C9A96E); }

/* Desktop overrides */
@media (min-width: 780px) {
  .page-hero { min-height: 45vh; padding: 8rem 4rem 3.5rem; }
  .contact-photos { height: 320px; }
  .contact-section { padding: 4rem 4rem 5rem; }
  .contact-details-section { padding: 0 4rem 5rem; }
  .contact-desktop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-details-col { position: sticky; top: 100px; border-top: none; padding-top: 0; }
  .contact-details-section { display: none; }
}


/* ============================================================
   12c. DETAILING PAGE
   ============================================================ */

/* Hero */
.dtl-hero {
  background: var(--ink);
  /* min-height: 52vh; */
  display: flex;
  align-items: flex-end;
  padding: 7rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.dtl-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(211,175,55,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.dtl-hero-inner { position: relative; z-index: 2; }
.dtl-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--yellow);
  display: block; margin-bottom: 0.6rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.dtl-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 11vw, 5.5rem);
  letter-spacing: 0.03em; line-height: 0.9;
  color: var(--text-light);
  animation: fadeUp 0.7s ease 0.25s both;
}
.dtl-h1 em { font-style: normal; color: var(--yellow); }
.dtl-hero-sub {
  font-size: 0.85rem; color: var(--text-xlight);
  margin-top: 1rem; line-height: 1.75;
  max-width: 340px;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* Fullwidth image */
.dtl-img-full {
  width: 100%; height: 260px;
  overflow: hidden; position: relative;
  background: var(--ink-2);
}
.dtl-img-full img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* About section */
.dtl-about {
  background: var(--ink);
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.dtl-about-label {
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--yellow);
  display: block; margin-bottom: 0.6rem;
}
.dtl-about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  letter-spacing: 0.04em; color: var(--text-light);
  line-height: 1; margin-bottom: 1rem;
}
.dtl-about-text {
  font-size: 0.88rem; color: var(--text-xlight);
  line-height: 1.85; max-width: 600px;
}
.dtl-about-features {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem; margin-top: 1.5rem;
}
.dtl-feature {
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-xlight);
  border: 1px solid var(--border-dark);
  padding: 0.3rem 0.8rem;
}

/* Pricing section */
.dtl-pricing {
  background: var(--ink-2);
  padding: 2.5rem 1.5rem 4rem;
}
.dtl-pricing-label {
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--yellow);
  display: block; margin-bottom: 0.5rem;
}
.dtl-pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  letter-spacing: 0.04em; color: var(--text-light);
  line-height: 1; margin-bottom: 0.5rem;
}
.dtl-pricing-sub {
  font-size: 0.82rem; color: var(--text-xlight);
  line-height: 1.7; margin-bottom: 2rem;
}

/* Vehicle tabs */
.dtl-tabs {
  display: flex; gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-bottom: 0;
}
.dtl-tab {
  flex: 1; padding: 0.85rem 0.5rem;
  text-align: center; background: var(--ink-3);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.dtl-tab.active {
  background: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow);
}
.dtl-tab-label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-xlight); display: block;
}
.dtl-tab.active .dtl-tab-label { color: var(--yellow); }
.dtl-tab-sub {
  font-size: 0.6rem; color: var(--text-xlight);
  margin-top: 0.15rem; display: block;
}

/* Tab panels */
.dtl-panel { display: none; }
.dtl-panel.active { display: flex; flex-direction: column; gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); border-top: none; }

/* Package cards */
.dtl-pkg {
  background: var(--ink);
  padding: 1.5rem;
  position: relative;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: background 0.2s;
}
.dtl-pkg-featured { background: var(--ink-2); }
.dtl-pkg-badge {
  position: absolute; top: 0; right: 1.25rem;
  background: var(--yellow); color: var(--ink);
  font-size: 0.56rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  padding: 0.2rem 0.65rem;
}
.dtl-pkg-header {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 1rem;
}
.dtl-pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.05em;
  color: var(--text-light); line-height: 1;
}
.dtl-pkg-price-wrap { text-align: right; flex-shrink: 0; }
.dtl-pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--yellow);
  letter-spacing: 0.04em; line-height: 1;
}
.dtl-pkg-gst {
  font-size: 0.6rem; letter-spacing: 0.08em;
  color: var(--text-xlight); display: block;
  margin-top: 0.1rem;
}
.dtl-pkg-desc {
  font-size: 0.82rem; color: var(--text-xlight);
  line-height: 1.7;
}
.dtl-pkg-includes {
  list-style: none; display: flex;
  flex-direction: column; gap: 0;
  border-top: 1px solid var(--border-dark);
  padding-top: 0.75rem; margin-top: 0.25rem;
}
.dtl-pkg-includes li {
  font-size: 0.8rem; color: var(--text-xlight);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex; align-items: center; gap: 0.6rem;
}
.dtl-pkg-includes li:last-child { border-bottom: none; }
.dtl-pkg-includes li::before {
  content: ''; display: block;
  width: 3px; height: 3px;
  background: var(--yellow); border-radius: 50%; flex-shrink: 0;
}
.dtl-pkg-cta {
  display: block; text-align: center;
  background: transparent; color: var(--yellow);
  border: 1px solid var(--yellow);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 0.85rem;
  margin-top: 0.25rem;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.dtl-pkg-cta:hover,
.dtl-pkg-featured .dtl-pkg-cta {
  background: var(--yellow); color: var(--ink);
}

/* CTA strip */
.dtl-cta-strip {
  background: var(--ink);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}
.dtl-cta-strip-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  letter-spacing: 0.04em; color: var(--text-light);
  margin-bottom: 0.5rem;
}
.dtl-cta-strip-sub {
  font-size: 0.85rem; color: var(--text-xlight);
  margin-bottom: 1.75rem; line-height: 1.7;
}

/* Desktop overrides */
@media (min-width: 700px) {
  .dtl-hero { padding: 9rem 4rem 4rem; min-height: 58vh; }
  .dtl-img-full { height: 400px; }
  .dtl-about { padding: 4rem; }
  .dtl-pricing { padding: 4rem 4rem 5rem; }
  .dtl-panel.active { flex-direction: row; }
  .dtl-pkg { flex: 1; }
  .dtl-cta-strip { padding: 5rem 4rem; }
}


/* ============================================================
   13. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Nav */
  #nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .nav-mobile-toggle { display: flex; }

  /* Hero */
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-logo { height: 52px; }

  /* Stats */
  .stats { padding: 1.5rem; gap: 1.5rem; flex-wrap: wrap; }
  .stat-divider { display: none; }

  /* Sections */
  .section { padding: 5rem 1.5rem; }

  /* Services */
  .service-item { grid-template-columns: 40px 1fr 24px; gap: 1rem; }
  .service-item:hover { margin: 0; padding-left: 0; padding-right: 0; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-heading { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
}