.hero {
  min-height: 600px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071522;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 20, 0.88) 0%,
      rgba(3, 12, 20, 0.53) 42%,
      rgba(3, 12, 20, 0.08) 75%
    ),
    linear-gradient(0deg, rgba(3, 12, 20, 0.38), transparent 55%),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=90")
      center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 76% 45%,
    rgba(246, 184, 63, 0.12),
    transparent 22%
  );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 65px;
}
.hero-content {
  max-width: 650px;
}
.eyebrow {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -4px;
  margin: 15px 0;
}
.hero h1 span {
  display: block;
}
.hero p {
  font-size: 17px;
  color: #e7edf2;
  max-width: 560px;
}
.stats {
  display: flex;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat i {
  font-size: 27px;
  color: var(--gold);
}
.stat b {
  font-size: 13px;
  display: block;
}
.stat small {
  font-size: 10px;
  color: #d2dbe3;
}
.hero-car {
  position: absolute;
  right: 3%;
  bottom: 20px;
  width: 55%;
  max-width: 780px;
  z-index: 1;
  filter: drop-shadow(0 35px 25px #0009);
  animation: float 5s ease-in-out infinite;
}
.hero-script {
  position: absolute;
  right: 5%;
  top: 125px;
  font-family: cursive;
  font-size: 32px;
  line-height: 0.9;
  transform: rotate(-8deg);
  color: #fff;
  z-index: 3;
}
.hero-script span {
  color: var(--gold);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}
.booking {
  position: relative;
  z-index: 8;
  margin-top: -70px;
}
.booking-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 45px #10203022;
  backdrop-filter: blur(12px);
}
.toggle {
  background: #edf2f6;
  border-radius: 10px;
  padding: 3px;
  display: inline-flex;
}
.toggle button {
  border: 0;
  background: transparent;
  padding: 9px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
}
.toggle button.active {
  background: var(--navy);
  color: #fff;
}
.field {
  border: 1px solid #dce3e9;
  border-radius: 9px;
  padding: 8px 11px;
  height: 58px;
  background: #fff;
}
.field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #4d5d6b;
}
.field input,
.field select {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 12px;
  color: #304050;
  background: transparent;
}
.guarantee {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}
.guarantee i {
  color: #111;
  background: var(--gold);
  border-radius: 50%;
  padding: 4px;
}
.categories {
  padding: 25px 0 12px;
  background: #f5f9fc;
}
.cat {
  border: 1px solid #dce5ed;
  background: #fff;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  box-shadow: 0 8px 20px #15283b0d;
  transition: 0.3s;
}
.cat:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.cat i {
  font-size: 35px;
}
.cat-title {
  font-weight: 700;
  font-size: 13px;
  margin-top: 10px;
}
.cat-sub {
  font-size: 11px;
  color: var(--muted);
}
.section {
  padding: 65px 0;
}
.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 5px;
}
.section-head h2 span {
  color: var(--gold);
}
.section-head p {
  color: var(--muted);
  font-size: 13px;
}
.link {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.car-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: 0.35s;
  box-shadow: 0 8px 20px #10203008;
}
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px #10203018;
}
.car-photo {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: #edf2f5;
}
.car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.car-card:hover .car-photo img {
  transform: scale(1.07);
}
.heart {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: #ffffffdd;
  color: #fff;
  text-shadow: 0 1px 3px #000;
  transition: 0.2s;
}
.heart.active {
  color: #ef4444;
  text-shadow: none;
}
.car-body {
  padding: 13px;
}
.pill {
  font-size: 9px;
  background: #edf3f7;
  border-radius: 5px;
  padding: 4px 7px;
  color: #425364;
  font-weight: 600;
}
.pill.green {
  background: #e8f8ec;
  color: #15803d;
}
.car-name {
  font-weight: 800;
  font-size: 14px;
  margin-top: 8px;
}
.specs {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 13px;
  margin: 8px 0;
}
.price {
  font-size: 16px;
  font-weight: 800;
}
.book-btn {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #ffe9ad, #f7c34d);
  border-radius: 7px;
  padding: 8px;
  font-weight: 800;
  font-size: 11px;
}
.why {
  background: linear-gradient(110deg, #071522 0%, #0d2234 65%, #132d40 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why h2 {
  font-size: 31px;
  font-weight: 800;
}
.why h2 span {
  color: var(--gold);
}
.why p {
  color: #aebbc6;
  font-size: 12px;
}
.benefit {
  text-align: center;
}
.benefit i {
  font-size: 33px;
  color: var(--gold);
}
.benefit h6 {
  font-size: 12px;
  margin-top: 12px;
}
.benefit p {
  font-size: 10px;
}
.road-image {
  height: 170px;
  background: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=900&q=80")
    center/cover;
  border-radius: 0 0 0 90px;
  opacity: 0.9;
}
.steps {
  background: #f6f9fc;
}
.step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-no {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 20px #15283b12;
  font-weight: 800;
}
.step i {
  font-size: 20px;
}
.step h6 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}
.step p {
  font-size: 10px;
  color: var(--muted);
  margin: 3px 0 0;
}
.app-card {
  background: linear-gradient(135deg, #13283a, #071522);
  color: #fff;
  border-radius: 10px;
  min-height: 185px;
  overflow: hidden;
  padding: 25px;
  position: relative;
}
.app-card h3 {
  font-weight: 800;
}
.app-card span {
  color: var(--gold);
}
.phone {
  position: absolute;
  right: 18px;
  bottom: -35px;
  width: 150px;
  transform: rotate(-7deg);
  border-radius: 20px;
  box-shadow: 0 15px 35px #0008;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 25px #1020300a;
}
.stars {
  color: #f4b62d;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.memory {
  border-radius: 10px;
  overflow: hidden;
  min-height: 185px;
  background: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=900&q=85")
    center/cover;
  position: relative;
  color: #fff;
}
.memory:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #07152266;
}
.memory-content {
  position: relative;
  z-index: 2;
  padding: 25px;
}
.memory h3 {
  font-weight: 800;
}
.memory span {
  color: var(--gold);
}
