/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #f5f5f5;
  line-height: 1.6;
}

/* NAV */
.navbar {
  background: rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  color: #d4af37;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-cta {
  border: 1px solid #d4af37;
  padding: 8px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.75)
    ),
    url("hero.jpg") center / cover no-repeat;

  padding: 120px 20px 80px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
}

.hero p {
  max-width: 720px;
  margin: 20px auto 0;
  opacity: 0.95;
}


.hero-overlay {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-buttons {
  margin-bottom: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin: 6px;
  display: inline-block;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 14px 26px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  margin: 6px;
}

.phone {
  font-size: 20px;
  color: #d4af37;
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-sub {
  color: #bbb;
  margin-bottom: 40px;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255,215,0,0.2);
  padding: 28px;
  border-radius: 18px;
  text-align: left;
}

.card h3 {
  color: #d4af37;
  margin-bottom: 12px;
}

.card ul {
  list-style: none;
}

.card li {
  margin-bottom: 8px;
}

.featured {
  box-shadow: 0 0 30px rgba(212,175,55,0.25);
}

/* WHY */
.dark {
  background: linear-gradient(180deg, #050505, #000);
  border-top: 1px solid rgba(255,215,0,0.2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-grid ul {
  list-style: none;
  text-align: left;
}

.why-grid li {
  margin-bottom: 10px;
}

.badge {
  border: 2px solid #d4af37;
  padding: 30px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.badge span {
  font-size: 32px;
  font-weight: 800;
  color: #d4af37;
}

/* CTA */
.cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #111, #000);
}

.big {
  font-size: 18px;
  margin-top: 20px;
}

/* FOOTER */
.footer {
  padding: 30px 20px;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(255,215,0,0.2);
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}/* ✅ MOBILE FIXES */
@media (max-width: 520px) {

  /* NAV: stack + shrink so it doesn't collide */
  .nav-container{
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .logo{
    font-size: 18px;
    line-height: 1.1;
  }

  .nav-links{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-links a{
    margin-left: 0;
    font-size: 14px;
  }

  .nav-cta{
    padding: 8px 12px;
    border-radius: 999px;
  }

  /* HERO: less empty + better spacing */
  .hero{
    height: 78vh;
    padding: 28px 12px;
  }

  .hero h1{
    font-size: 30px;
    line-height: 1.15;
  }

  .hero p{
    font-size: 15px;
    margin-bottom: 18px;
  }

  /* BUTTONS: full width and clean (no splitting) */
  .hero-buttons{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .btn-primary,
  .btn-secondary{
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  /* PHONE NUMBER: stop iPhone blue underline look */
  .phone{
    font-size: 18px;
    color: #d4af37;
    font-weight: 800;
    text-decoration: none;
  }

  a[href^="tel"]{
    color: #d4af37 !important;
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
  }/* 🔥 FIX FAINT CALL BUTTON ON MOBILE */
@media (max-width: 520px) {
  .btn-primary {
    opacity: 1 !important;
    filter: none !important;
    background: linear-gradient(135deg, #d4af37, #b8962e) !important;
    color: #000 !important;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(212,175,55,0.45);
  }
}.btn-primary{
  opacity: 1 !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  text-shadow: none !important;
}


}
.seo-text {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  color: #ccc;
  font-size: 0.95rem;
}
.seo-text {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 60px;
}
/* FAQ */
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-card h3 {
  margin-bottom: 8px;
}

.faq-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

/* Legal disclaimer */
.legal-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

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

@media (max-width: 600px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA subtitle */
.cta-sub {
  margin: 10px auto 18px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
}


}

  }

  /* Prevent content from hiding behind the bar */
  body {
    padding-bottom: 70px;
  }
}
/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;   /* KEY FIX */
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  cursor: pointer;
  border: 1px solid rgba(255, 215, 0, 0.16);
  transition: transform 0.25s ease;
  display: block;
}

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

.gallery-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Button inside sticky bar */
.mobile-cta a {
  display: inline-block;
  width: 100%;
  max-width: 420px;

  background: #000;
  color: #d4af37;
  font-weight: 600;
  font-size: 1rem;

  padding: 14px 0;
  border-radius: 999px;
  text-decoration: none;
}

/* Desktop: hide sticky button */
@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}
.footer-social {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

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

.footer-social a:hover {
  text-decoration: underline;
}
/* Mobile sticky CTA (Option A - subtle) */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: env(safe-area-inset-bottom);
    left: 0;
    right: 0;
    z-index: 999;

    background: rgba(0,0,0,0.85);
    padding: 10px 14px;
  }

  .mobile-cta a {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;

    color: #d4af37;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.6);
    border-radius: 999px;
    padding: 12px 0;
    text-decoration: none;
  }
}
/* ===== Lightbox Fix ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;   /* CRITICAL: prevents zoom/crop */
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* ===============================
   NAV — CLEAN OVERRIDES (ONE TIME)
   =============================== */

/* Base nav link styling */
.navbar .nav-links a,
.navbar .nav-links a:link,
.navbar .nav-links a:visited,
.navbar .nav-links a:active,
.navbar .nav-links a:focus {
  color: #ffffff;
  text-decoration: none;
  -webkit-text-fill-color: #ffffff; /* iOS/Safari */
}

/* Hover for regular links */
.navbar .nav-links a:hover {
  color: #d4af37;
  -webkit-text-fill-color: #d4af37;
}

/* Call/Text button — SAME color everywhere */
.navbar .nav-links a.nav-cta,
.navbar .nav-links a.nav-cta:link,
.navbar .nav-links a.nav-cta:visited,
.navbar .nav-links a.nav-cta:active,
.navbar .nav-links a.nav-cta:focus {
  background: #d4af37;
  border: 1px solid #d4af37;
  color: #000000;
  -webkit-text-fill-color: #000000;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Hover button */
.navbar .nav-links a.nav-cta:hover {
  background: #c9a633;
  border-color: #c9a633;
  color: #000000;
  -webkit-text-fill-color: #000000;
}

/* Make nav layout stable */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile: keep it sideways + wrap nicely */
@media (max-width: 768px) {
  .nav-container {
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;          /* stays sideways; wraps if needed */
    justify-content: flex-end;
    gap: 14px;
  }

  .nav-links a {
    margin-left: 0;           /* overrides your old margin-left */
  }
}

/* Remove iOS blue tap highlight */
.navbar .nav-links a {
  -webkit-tap-highlight-color: transparent;
}
/* ===== Contact Form (match site theme) ===== */
#contact form {
  max-width: 520px;
  margin: 24px auto 0;
  text-align: left;
}

.form-group,
.form-row-3 {
  margin-bottom: 14px;
}

#contact input,
#contact textarea,
#contact select {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(212,175,55,0.40);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

#contact textarea {
  min-height: 110px;
  resize: vertical;
}

/* 3-column row: Year / Make / Model */
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Mobile: stack the 3 fields */
@media (max-width: 600px) {
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* Dropdown label */
#contact label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* Submit button already uses your .btn-primary.big style,
   but ensure it centers nicely */
#contact button[type="submit"] {
  display: inline-block;
  margin-top: 8px;
}
