/* THE SIGNATURE DETAILING — Dark Luxury Automotive */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

html { scroll-behavior: smooth; }

* {
  padding: 0; margin: 0; box-sizing: border-box;
  list-style: none;
}
/* NOTE: text-decoration removed from wildcard — was breaking all links */

:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --fg: #F0ECE8;
  --muted: #8A8582;
  --gold: #C8A951;
  --gold-light: #E6C86A;
  --gold-dim: rgba(200, 169, 81, 0.18);
  --silver: #9DA3AE;
  --border: rgba(200, 169, 81, 0.2);
  --border-soft: rgba(255, 255, 255, 0.08);
  --glow: 0 0 60px rgba(200, 169, 81, 0.12);
  --ease: cubic-bezier(0.2, 0, 0.1, 1);
}

body {
  background: var(--bg); color: var(--fg);
  font-family: "Raleway", sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

a { color: inherit; }

/* ─── Nav ─── */
nav#navv {
  background: rgba(8, 8, 8, 0.85) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 90px; width: 100%; position: fixed; top: 0; z-index: 100;
}
.logoo { height: 88px; cursor: pointer; }
nav ul { float: right; margin-right: 40px; margin-top: 0; }
nav ul li { display: inline-block; line-height: 90px; margin: 0 2px; }
nav ul li a {
  color: rgba(240, 236, 232, 0.75); font-size: 13px;
  padding: 6px 12px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600; transition: color 0.25s; font-family: "Raleway", sans-serif;
  text-decoration: none;
}
nav ul li a:hover { color: var(--gold) !important; background: none !important; }
.social-iconn { color: var(--muted); margin-left: 4px; font-size: 16px; transition: color 0.3s; }
.social-iconn:hover { color: var(--gold) !important; }
.insta { margin-left: 16px; }

.book-noww {
  display: inline-block; margin-left: 16px;
  height: auto !important; width: auto !important;
  padding: 0.6rem 1.5rem !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important; color: var(--gold) !important;
  font-size: 12px !important; letter-spacing: 0.15em !important;
  text-transform: uppercase !important; font-weight: 700 !important;
  font-family: "Raleway", sans-serif !important;
  transition: background 0.25s !important, color 0.25s !important;
  cursor: pointer; text-decoration: none !important;
  line-height: normal !important;
}
.book-noww:hover {
  background: var(--gold) !important; color: var(--bg) !important;
}
.checkbtn {
  font-size: 20px; color: var(--fg); float: right;
  line-height: 90px; margin-right: 24px; cursor: pointer; display: none;
}
#check { display: none; }

@media (max-width: 1099px) {
  .checkbtn { display: block; }
  nav ul {
    position: fixed; width: 100%; height: 100vh !important;
    background: var(--surface) !important; top: 90px; left: -100%;
    text-align: center; transition: left 0.4s var(--ease); z-index: 99;
    display: flex !important; flex-direction: column !important;
    justify-content: center; gap: 2rem;
    list-style: none !important;
  }
  nav ul li { display: block; margin: 0; line-height: normal; }
  nav ul li a { font-size: 1.25rem !important; display: block; padding: 0.75rem; }
  #check:checked ~ ul { left: 0; }
  .book-noww { margin-top: 1rem; display: inline-block; }
}

/* ─── Hero ─── */
.hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; padding-top: 90px;
}
.hero video {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 100%; object-fit: cover; z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.11); } }
.overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.85) 100%);
}
.overlay::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(transparent, var(--bg));
}
.hero-content {
  position: relative; z-index: 2; color: var(--fg);
  text-align: center; padding-top: 14vh;
}
.hero-content h1 {
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.03em; max-width: 900px; margin: 0 auto 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-content p {
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.35rem); color: rgba(240,236,232,0.7);
  margin: 0 auto 2.5rem; max-width: 560px;
}
.book-now {
  display: inline-block; margin-top: 0 !important;
  height: auto !important; width: auto !important;
  padding: 1rem 3rem !important; background: var(--gold) !important;
  color: var(--bg) !important; border: none !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important;
  transition: background 0.25s !important; cursor: pointer;
  border-radius: 0 !important; text-decoration: none !important;
}
.book-now:hover { background: var(--gold-light) !important; color: var(--bg) !important; border-color: var(--gold-light) !important; }
.star {
  margin-top: 2rem; display: flex; align-items: center;
  justify-content: center; gap: 4px;
}
.rating-text { margin-left: 12px; }
.rating-text p {
  font-size: 0.88rem !important; color: rgba(240,236,232,0.65) !important;
  font-family: "Raleway", sans-serif !important; text-align: left !important; margin: 0 !important;
}
.rating-text p span {
  font-weight: 700 !important; color: var(--gold) !important;
  font-family: "Raleway", sans-serif !important;
}

/* ─── How It Works ─── */
#how-it-workss { background: var(--surface); }
.how-it-works {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 1.5px;
  flex-wrap: wrap; padding: 6rem 1.5rem; background: transparent;
  min-height: auto; position: relative;
}
.how-it-works-header {
  width: 100%; text-align: center; padding-bottom: 3rem;
  font-family: "Space Grotesk", sans-serif;
}
.how-it-works-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  letter-spacing: -0.04em; color: var(--fg);
}
.how-it-works-header h2::after {
  content: ''; display: block; width: 60px; height: 2px;
  background: var(--gold); margin: 1.25rem auto 0;
}

.step-card {
  background: var(--surface-2); border: 1px solid var(--border-soft);
  border-top: 2px solid var(--border); border-radius: 0 !important;
  padding: 2.5rem 2rem; width: 280px; text-align: center;
  box-shadow: none !important; transition: border-top-color 0.3s, transform 0.3s !important;
  cursor: pointer; flex-shrink: 0;
}
.step-card:hover {
  transform: translateY(-6px) !important; border-top-color: var(--gold) !important;
  box-shadow: var(--glow) !important; background: #1F1F1F;
}
.step-number {
  background: var(--gold); color: var(--bg); width: 40px; height: 40px;
  border-radius: 0 !important; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-weight: 800; font-size: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
}
.step-card i { font-size: 2.5rem; color: var(--gold); margin: 1rem 0; transition: transform 0.3s; }
.step-card:hover i { transform: scale(1.15) !important; color: var(--gold-light) !important; }
.step-card h3 { color: var(--fg); margin: 1rem 0 0.75rem; font-size: 1rem; font-weight: 700; font-family: "Space Grotesk", sans-serif; }
.step-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-top: 0; }

/* ─── Services ─── */
#our-services { scroll-margin-top: 90px; }
.services {
  background: var(--bg); padding: 6rem 1.5rem; height: auto !important;
  max-width: 1200px; margin: 0 auto;
}
.our-services-header { width: 100%; text-align: center; padding-bottom: 3rem; }
.our-services-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.04em; color: var(--fg);
}
.our-services-header h2::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); margin: 1.25rem auto 0; }
.services-cards { display: flex; flex-wrap: wrap; gap: 1.5px; justify-content: center; background: var(--border); }

/* Override Bootstrap cards */
.card.cards-modify {
  background: var(--surface) !important; color: var(--fg) !important;
  border: none !important; border-radius: 0 !important;
  flex: 1 1 300px; max-width: 400px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s !important;
  position: relative; overflow: hidden;
}
.card.cards-modify::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.35s var(--ease);
  transform-origin: left;
}
.card.cards-modify:hover { transform: translateY(-6px) !important; box-shadow: var(--glow) !important; }
.card.cards-modify:hover::after { transform: scaleX(1); }
.img-setting { height: 240px !important; object-fit: cover !important; display: block; width: 100%; }
.card-body { padding: 1.75rem !important; }
.card-title { font-family: "Space Grotesk", sans-serif; font-size: 1.1rem !important; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.card-body h5 { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; font-family: "Space Grotesk", sans-serif; }
.card-text { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }

.features, .featuress {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.teext { color: rgba(240,236,232,0.75); font-size: 0.82rem; margin: 0; }
.features svg, .featuress svg { flex-shrink: 0; }

.book-nowww {
  display: block; text-align: center; padding: 0.85rem;
  background: transparent; color: var(--gold); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s; margin-top: auto;
  font-family: "Raleway", sans-serif; text-decoration: none !important;
}
.book-nowww:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ─── Testimonials ─── */
.testimonials-section {
  background: var(--surface); padding: 6rem 1.5rem;
  border-top: 1px solid var(--border-soft);
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700;
  letter-spacing: -0.04em; color: var(--fg);
}
.section-header h2::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); margin: 1.25rem auto 0; }
.section-subtitle { color: var(--muted); margin-top: 0.75rem; font-size: 0.95rem; }
.testimonials-grid { display: grid; gap: 1.5px; background: var(--border); max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--surface-2); padding: 2.5rem;
  border-top: 2px solid var(--border-soft); transition: border-top-color 0.3s;
}
.testimonial-card:hover { border-top-color: var(--gold); }
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.testimonial-text { color: rgba(240,236,232,0.65); font-size: 0.9rem; line-height: 1.75; margin-bottom: 2rem; }
.customer-info { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--border-soft); }
.customer-avatar { width: 52px; height: 52px; overflow: hidden; flex-shrink: 0; }
.customer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.customer-details h4 { color: var(--fg); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; font-family: "Space Grotesk", sans-serif; }
.customer-details p { color: var(--gold); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }

/* ─── FAQ ─── */
.faq-sectionn { background: var(--bg); padding: 6rem 1.5rem; }
.container { max-width: 860px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700;
  letter-spacing: -0.04em; color: var(--fg);
}
.faq-header h2::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); margin: 1.25rem auto 0; }
.faq-header p { color: var(--muted); margin-top: 0.75rem; }
.faq-container { border: 1px solid var(--border-soft); }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem; cursor: pointer; color: var(--fg);
  font-weight: 600; font-size: 0.95rem; transition: color 0.2s, background 0.2s;
  font-family: "Space Grotesk", sans-serif;
}
.faq-question:hover { color: var(--gold); background: rgba(200,169,81,0.04); }
.faq-icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; font-weight: 300; line-height: 1; }
.faq-answer { display: none; }
.faq-answer-content {
  padding: 0 2rem 1.5rem; color: var(--muted);
  font-size: 0.9rem; line-height: 1.8;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--gold); }
.faq-item.active .faq-icon { transform: rotate(45deg); display: inline-block; }

/* ─── Footer ─── */
.footer {
  background: var(--surface); padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: grid; gap: 2.5rem; max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) { .footer-content { grid-template-columns: repeat(3, 1fr); } }
.footer-section h3 { font-family: "Space Grotesk", sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-section h3 i { margin-right: 0.5rem; }
.footer-section p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; }
.contact-info { display: grid; gap: 0.75rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; }
.contact-item i { color: var(--gold); width: 16px; }
.contact-item p { margin: 0; }
.contact-item a { color: var(--muted); transition: color 0.2s; text-decoration: none; }
.contact-item a:hover { color: var(--gold); }
.footer-section.last p b { color: var(--fg); font-weight: 700; }

/* ─── Responsive fixes ─── */
@media (max-width: 767px) {
  .hero-content { padding-top: 8vh; }
  .hero-content h1 { font-size: 2.25rem !important; }
  .hero-content p { font-size: 1rem !important; }
  .how-it-works { flex-direction: column; align-items: center; gap: 1.5px; }
  .step-card { width: 100%; max-width: 460px; }
  .services-cards { flex-direction: column; align-items: stretch; background: none; gap: 1.5px; }
  .card.cards-modify { max-width: 100%; flex: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 1.25rem 1.25rem; }
  .faq-answer-content { padding: 0 1.25rem 1.25rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
