/* ═══════════════════════════════════════════
   AZARO AUTO SPA — Premium CSS
   ═══════════════════════════════════════════ */

:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-dark: #A87D0E;
  --red: #C0392B;
  --dark: #0A0A0C;
  --dark-2: #111116;
  --dark-3: #18181F;
  --dark-4: #1E1E28;
  --text-muted: #7a7a8c;
  --border: rgba(212, 160, 23, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: #e8e8f0;
  overflow-x: hidden;
}

.gold-text { color: var(--gold); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #0a0a0c;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-gold:hover::after { background: rgba(255,255,255,0.12); }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.45);
  color: #0a0a0c;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.brand-sub {
  color: var(--gold);
  font-weight: 400;
  font-size: 0.95rem;
  display: block;
}

.nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { color: #fff !important; }
.nav-link:hover::after { transform: scaleX(1); }

.toggler-icon { color: #fff; font-size: 1.6rem; }
.navbar-toggler { border: none; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }

/* ═══════════════════ HERO ═══════════════════ */
.hero-section {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(192,57,43,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #07070a 0%, #0f0f15 50%, #0a0a10 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-stats { align-items: center; }
.stat-box { display: flex; flex-direction: column; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Car visual */
.hero-car-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-car-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.18) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-car-icon {
  font-size: 9rem;
  color: rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(212,160,23,0.3));
  animation: float-car 4s ease-in-out infinite;
}
@keyframes float-car {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════ SECTION COMMONS ═══════════════════ */
.section-dark { background-color: var(--dark-2); }
.section-darker { background-color: var(--dark-3); }

.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  color: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════ SERVICE CARDS ═══════════════════ */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  background: rgba(212,160,23,0.06);
  border-color: rgba(212,160,23,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,160,23,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: rgba(212,160,23,0.07);
  border-color: rgba(212,160,23,0.3);
}
.service-card.featured::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.service-card.coming-soon {
  opacity: 0.6;
  background: rgba(255,255,255,0.02);
}
.service-card.coming-soon:hover { transform: none; opacity: 0.7; }

.featured-badge, .coming-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.featured-badge { background: var(--gold); color: #000; }
.coming-badge { background: rgba(255,255,255,0.1); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(212,160,23,0.2);
  transform: scale(1.1);
}

.service-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.stag {
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ═══════════════════ WHY US ═══════════════════ */
.why-visual {
  position: relative;
  padding: 2rem;
}
.why-card-big {
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
}
.why-floating-badge {
  position: absolute;
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-right { top: 0.5rem; right: 0; }
.bottom-left { bottom: 0.5rem; left: 0; }

.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.why-item h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.why-item p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════ PRICING ═══════════════════ */
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.price-card:hover {
  border-color: rgba(212,160,23,0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.price-featured {
  background: rgba(212,160,23,0.07);
  border-color: rgba(212,160,23,0.35);
  transform: scale(1.03);
}
.price-featured:hover { transform: scale(1.03) translateY(-4px); }

.price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-header { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.price-header h4 { color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; }
.price-num { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }

.price-list { list-style: none; padding: 0; flex: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.price-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.price-list li i.bi-check-circle-fill { color: var(--gold); flex-shrink: 0; }
.price-list li.disabled { color: var(--text-muted); }
.price-list li.disabled i { color: rgba(255,255,255,0.15); }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-info-card, .contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
}
.contact-info-card { border-color: rgba(212,160,23,0.15); }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.contact-label { display: block; font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 2px; }
.contact-value { display: block; color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: color 0.2s; }
a.contact-value:hover { color: var(--gold); }

/* Form */
.form-dark {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.form-dark:focus {
  border-color: rgba(212,160,23,0.5) !important;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1) !important;
  background: rgba(255,255,255,0.06) !important;
  outline: none !important;
}
.form-dark::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-dark option { background: var(--dark-3); color: #fff; }

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), transparent);
}
.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.footer-heading {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #b0b0c0; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* Footer text overrides — fond noir = texte plus clair */
.site-footer .text-muted { color: #b0b0c0 !important; }
.site-footer p.text-muted { color: #b0b0c0 !important; }
.site-footer .small { color: #b0b0c0 !important; }
.footer-text { color: #c8c8d8; font-size: 0.88rem; line-height: 1.7; }

.social-links { display: flex; gap: 0.75rem; }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(212,160,23,0.15);
  border-color: rgba(212,160,23,0.3);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-divider { border-color: rgba(255,255,255,0.06); }

/* ═══════════════════ TOAST ═══════════════════ */
.toast {
  background: var(--dark-4) !important;
  border: 1px solid rgba(212,160,23,0.25) !important;
  color: #fff;
}

/* ═══════════════════ PARTICLES ═══════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10,10,14,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 0.75rem;
  }
  .price-featured { transform: scale(1); }
  .price-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 767.98px) {
  .hero-section { padding-top: 80px; }
  .hero-title { font-size: 2.2rem; }
  .why-floating-badge { display: none; }
}

/* ─── AOS tweaks ─── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
