:root {
  --primary: #124695;
  --accent: #ea6928;
  --white: #ffffff;
  --dark: #0a0f1e;
  --gray-soft: #f7f9fc;
  --gray-mid: #8a96b0;
  --shadow-card: 0 8px 32px rgba(18, 70, 149, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: #1a1f35;
  background: #fff;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  background: transparent;
  backdrop-filter: blur(14px);
  transition: padding 0.3s;
  width: 100%;
  padding: 20px 80px;
}

.navbar.scrolled {
  border-radius: 40px;
  box-shadow: 0 4px 50px rgba(18, 70, 149, 0.07);
  border: 2px solid rgb(18 70 149 / 86%);
  width: calc(100% - 100px);
  margin: 10px auto;
  padding: 10px 30px;
  transition:
    padding 0.35s ease,
    margin 0.35s ease,
    box-shadow 0.35s ease;
}

.navbar-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary) !important;
  letter-spacing: 2px;
}

.navbar-brand span {
  color: var(--accent);
}

.nav-link {
  color: rgba(18, 30, 60, 0.65) !important;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  transition: color 0.25s;
}

.nav-link:hover,
.nav-link.active {
  /* color: var(--accent) !important; */
  color: #124695 !important;
}

.btn-nav {
  background: var(--accent);
  color: #fff !important;
  border-radius: 50rem;
  padding: 8px 24px !important;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 105, 40, 0.4);
  color: #ffffff;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #e8f0fc 0%, #dce9fa 40%, #c8daf6 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(18, 70, 149, 0.03) 0px,
    rgba(18, 70, 149, 0.03) 1px,
    transparent 1px,
    transparent 60px
  );
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(18, 70, 149, 0.08);
  color: var(--primary);
  border: 1px solid rgba(18, 70, 149, 0.2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50rem;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  color: #4a5580;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 22px 0 36px;
}

.btn-primary-main {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(234, 105, 40, 0.45);
  color: #fff;
}

.btn-outline-main {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(18, 70, 149, 0.35);
  padding: 13px 32px;
  border-radius: 50rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-main:hover {
  border-color: var(--primary);
  background: rgba(18, 70, 149, 0.06);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(18, 70, 149, 0.12);
}

.hero-stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: #7a88aa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-car-wrap {
  position: relative;
  z-index: 2;
}

.hero-car-wrap img {
  width: 100%;
  max-width: 660px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: carFloat 4s ease-in-out infinite;
}

@keyframes carFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(18, 70, 149, 0.12);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(18, 70, 149, 0.12);
}

.hero-badge i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-badge-1 {
  top: 18%;
  right: 0;
}

.hero-badge-2 {
  bottom: 28%;
  left: 5%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-blue {
  width: 500px;
  height: 500px;
  background: rgba(18, 70, 149, 0.12);
  top: -100px;
  right: -100px;
}

.orb-orange {
  width: 300px;
  height: 300px;
  background: rgba(234, 105, 40, 0.1);
  bottom: 50px;
  right: 200px;
}

/* ─── BOOKING BAR ─── */
#booking-bar {
  background: #fff;
  box-shadow: 0 8px 40px rgba(18, 70, 149, 0.15);
  border-radius: 12px;
  margin-top: -56px;
  position: relative;
  z-index: 10;
  padding: 28px 32px;
}

.booking-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
}

.booking-input {
  border: none;
  border-bottom: 2px solid #e0e6f0;
  border-radius: 0;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1f35;
  transition: border-color 0.2s;
}

.booking-input:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primary);
}

.booking-divider {
  width: 1px;
  height: 56px;
  background: #e0e6f0;
  align-self: center;
}

.btn-search {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 105, 40, 0.4);
  color: #fff;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 100px 0;
}

.section-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #0a0f1e;
}

.section-title span {
  color: var(--primary);
}

.section-sub {
  color: var(--gray-mid);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 540px;
  margin-top: 14px;
}

/* ─── HOW IT WORKS ─── */
#how-it-works {
  background: #fff;
  border-top: 1px solid #edf1f9;
  border-bottom: 1px solid #edf1f9;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(18, 70, 149, 0.09);
  border: 1px solid #edf1f9;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(18, 70, 149, 0.14);
}

.step-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(18, 70, 149, 0.06);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #1a5db5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.step-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0a0f1e;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--gray-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
}

.step-connector i {
  font-size: 1.4rem;
  color: var(--accent);
}

/* ─── FLEET / CARS ─── */
#fleet {
  background: #fff;
}

.car-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
  border: 1px solid #eef0f8;
}

.car-card:hover {
  transform: translateY(-8px);
}

.car-card-img {
  background: linear-gradient(135deg, #e8f0fd 0%, #f4f6fb 100%);
  padding: 28px 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.car-card-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 40px;
  background: rgba(18, 70, 149, 0.08);
  border-radius: 50%;
  filter: blur(12px);
}

.car-card-img img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.car-card-body {
  padding: 22px;
}

.car-badge {
  display: inline-block;
  background: rgba(18, 70, 149, 0.07);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50rem;
  margin-bottom: 10px;
}

.car-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #0a0f1e;
  margin-bottom: 14px;
}

.car-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-mid);
  font-weight: 500;
}

.car-spec i {
  color: var(--primary);
  font-size: 0.9rem;
}

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eef0f8;
}

.car-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
}

.car-price small {
  font-size: 0.7rem;
  color: var(--gray-mid);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}

.btn-rent {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-rent:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 105, 40, 0.35);
}

/* ─── WHY US ─── */
#why-us {
  background: var(--gray-soft);
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 20px rgba(18, 70, 149, 0.07);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateX(6px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), #f08040);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #0a0f1e;
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--gray-mid);
  font-size: 0.88rem;
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-visual-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 70, 149, 0.2);
}

.why-visual-main img {
  width: 100%;
  display: block;
}

.why-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(18, 70, 149, 0.18);
  padding: 18px 22px;
}

.why-stat-card.card-1 {
  bottom: -24px;
  left: -24px;
}

.why-stat-card.card-2 {
  top: -24px;
  right: -24px;
}

.why-stat-big {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
}

.why-stat-big span {
  color: var(--accent);
}

.why-stat-small {
  font-size: 0.72rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: #fff;
}

.testi-card {
  background: var(--gray-soft);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  border: 1px solid #eaeff8;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.testi-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 0.8;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.94rem;
  color: #3a4060;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: #0a0f1e;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

.stars {
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ─── CTA ─── */
#cta {
  background: linear-gradient(145deg, #e8f0fc 0%, #d0e2f8 50%, #c2d6f4 100%);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(18, 70, 149, 0.025) 0px,
    rgba(18, 70, 149, 0.025) 1px,
    transparent 1px,
    transparent 50px
  );
}

.cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1;
}

.cta-title span {
  color: var(--accent);
}

.cta-sub {
  color: #4a5a80;
  font-size: 0.98rem;
  margin: 16px 0 36px;
  line-height: 1.7;
  max-width: 520px;
}

/* ─── FOOTER ─── */
footer {
  background: #0d1530;
  padding: 70px 0 32px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 28px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50rem;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.social-btn:hover {
  background: var(--accent);
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── FADE-IN ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .booking-divider {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  #booking-bar {
    margin-top: 0;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  section {
    padding: 72px 0;
  }

  .hero-stats {
    gap: 24px;
  }
}
