/* =========================================================
   EXCLUSIV CONCIERGE – PUBLIC CSS
   Luxury Dark Theme | Bootstrap 4.6 Compatible
========================================================= */

/* =========================
   ROOT VARIABLES
========================= */

:root {
  --primary: #0B0F19;
  --secondary: #1F2937;
  --accent: #C9A24D;
  --text: #E5E7EB;
  --muted: #9CA3AF;
}

/* =========================
   RESET & BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial,
               sans-serif;
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  padding-top: 76px; /* fixed navbar offset */
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #e6c46d;
  text-decoration: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background-color: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--text);
}

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

/* =========================
   HERO SECTION
========================= */

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(11, 15, 25, 0.75),
      rgba(11, 15, 25, 0.9)
    ),
    url('/assets/images/hero.webp') center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3rem;
  letter-spacing: 0.5px;
}

.hero-section .lead {
  font-size: 1.1rem;
  color: var(--muted);
}

/* =========================
   BUTTONS
========================= */

.btn {
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.btn-gold {
  background-color: var(--accent);
  color: var(--primary);
  border: none;
}

.btn-gold:hover {
  background-color: #e6c46d;
  color: var(--primary);
}

/* =========================
   FORMS
========================= */

.form-control {
  background-color: #0f172a;
  border: 1px solid #1f2937;
  color: var(--text);
  border-radius: 6px;
}

.form-control::placeholder {
  color: var(--muted);
}

.form-control:focus {
  background-color: #0f172a;
  color: var(--text);
  border-color: var(--accent);
  box-shadow: none;
}

/* =========================
   CARDS (LUXURY)
========================= */

.card-luxury {
  background: linear-gradient(
    145deg,
    #121826,
    #0b0f19
  );
  border: 1px solid rgba(201, 162, 77, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.card-luxury:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 77, 0.35);
}

/* =========================
   SECTIONS
========================= */

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 3px;
}

/* =========================
   SERVICES
========================= */

#services .card-luxury i {
  margin-bottom: 15px;
}

#services h5 {
  font-weight: 500;
  margin-top: 10px;
}

/* =========================
   FLEET
========================= */

#fleet {
  background-color: #0f172a;
}

/* =========================
   WHY US
========================= */

#whyus .col-md-3 {
  padding: 30px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

#whyus .col-md-3:last-child {
  border-right: none;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  background:
    linear-gradient(
      rgba(11, 15, 25, 0.85),
      rgba(11, 15, 25, 0.95)
    ),
    url('/public/assets/images/cta.jpg') center / cover no-repeat;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 30px 0;
  font-size: 0.9rem;
  background-color: #0b0f19;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  body {
    padding-top: 64px;
  }

  .hero-section h1 {
    font-size: 2.4rem;
  }

  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }
}
