@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Premium Palette */
  --brand-hsl: 24, 94%, 53%;
  /* #f97316 */
  --brand: hsl(var(--brand-hsl));
  --brand-dark: hsl(24, 94%, 43%);
  --brand-light: hsl(24, 94%, 94%);

  --ink: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --surface: #f8fafc;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.08);

  /* Utilities */
  .hover-brand:hover {
    color: var(--brand) !important;
    transition: color 0.2s ease;
  }

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
  0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
  0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
  0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-premium: 0 25px 50px -12px rgba(249, 115, 22, 0.15);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: 'Outfit', sans-serif;
}

/* Navbar */
.brand-navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-link {
  color: var(--ink);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 99px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--brand);
  background: var(--brand-light);
}

.nav-link.active {
  color: var(--brand);
  background: var(--brand-light);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border-radius: 99px;
  padding: 0.75rem 1.5rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  background: radial-gradient(circle at top right, var(--brand-light), transparent 40%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.05), transparent 40%);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-img-wrapper {
  position: relative;
  z-index: 1;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--brand-light), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Cards & Sections */
.section-padding {
  padding: 8rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: center;
}

.feature-card {
  background: var(--bg);
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--brand);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Fleet Cards */
.car-preview-card {
  background: var(--bg);
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.car-preview-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand);
}

.car-preview-img-wrapper {
  overflow: hidden;
  position: relative;
}

.car-preview-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-preview-card:hover .car-preview-img {
  transform: scale(1.1);
}

/* Steps */
.step-card {
  padding: 2rem;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--surface);
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.testimonial-card::after {
  content: '\"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 5rem;
  color: var(--brand);
  opacity: 0.1;
  font-family: serif;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--ink), #1e293b);
  border-radius: 48px;
  padding: 6rem 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, var(--brand), transparent 70%);
  opacity: 0.1;
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

/* Vehicle Selection Carousel */
.vehicle-carousel-container {
  position: relative;
  padding: 1rem 0 3rem;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
}

.selectable-card {
  cursor: pointer;
  border: 2px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.selectable-card:hover {
  border-color: var(--brand-light);
  transform: translateY(-5px);
}

.selectable-card.active {
  border-color: var(--brand);
  background: var(--brand-light);
  box-shadow: var(--shadow-premium);
}

.selectable-card .card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.selectable-card .card-body {
  padding: 1.25rem;
  flex-grow: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brand) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--brand) !important;
  background: #fff;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

/* Flatpickr Modern Theme */
.flatpickr-calendar {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--brand);
  border-color: var(--brand);
}

.flatpickr-day.today {
  border-color: var(--brand-dark);
}

.flatpickr-day.disabled {
  opacity: 0.3;
  text-decoration: line-through;
}

.shadow-premium {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--brand) !important;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(15, 23, 42, 0.4);
  border-radius: 50%;
  padding: 1.25rem;
  background-size: 50%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .hero {
    padding-top: 6rem;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .section-padding {
    padding: 5rem 0;
  }

  .final-cta {
    padding: 4rem 2rem;
  }
}