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

.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.section-title span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--vip-gold);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.section-title .line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--vip-gold), transparent);
  margin: 16px auto 0;
  border-radius: 999px;
}

.hero-section { 
  position: relative;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.16) 16%, rgba(0,0,0,0.28) 34%, rgba(0,0,0,0.52) 58%, rgba(0,0,0,0.82) 78%, rgba(0,0,0,0.96) 100%),
    url('../img/hero.jpeg') center center / cover no-repeat;
  padding: 400px 0 56px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.06) 18%, rgba(0,0,0,0.12) 32%, rgba(0,0,0,0.28) 48%, rgba(0,0,0,0.50) 64%, rgba(0,0,0,0.72) 80%, rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.24) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vip-gold);
  padding: 10px 16px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  line-height: 1.12;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #e6e6e6;
  max-width: 720px;
  margin: 0 auto 34px;
}

.booking-form-wrapper {
  position: relative;
  z-index: 3;
  margin-top: 30px;
}

.booking-form {
  background: linear-gradient(180deg, rgba(12,12,12,0.74) 0%, rgba(8,8,8,0.9) 100%);
  border: 1px solid rgba(212,175,55,0.34);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.38);
  backdrop-filter: blur(12px);
}

.booking-form .form-label {
  color: var(--vip-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.8px;
}

.booking-form .form-control,
.booking-form .form-select {
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 12px 14px;
  box-shadow: none !important;
}

.booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: rgba(212,175,55,0.45);
  background: #151515;
  color: #fff;
}

.location-card,
.vehicle-card,
.stat-card,
.blog-card {
  background: linear-gradient(180deg, rgba(24,24,24,0.98) 0%, rgba(11,11,11,0.98) 100%);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.location-card:hover,
.vehicle-card:hover,
.stat-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.62);
  box-shadow: 0 20px 36px rgba(0,0,0,0.3);
}

.location-card {
  padding: 18px 18px 16px;
  height: 100%;
}

.location-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.location-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-gold-soft);
  color: var(--vip-gold);
  border: 1px solid rgba(212,175,55,0.22);
  font-size: 16px;
}

.location-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--vip-gold);
  line-height: 1;
}

.location-card small {
  display: block;
  color: var(--vip-gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.location-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.location-card p {
  margin: 0;
  font-size: 12px;
  color: var(--vip-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stats-section {
  padding: 30px 0 10px;
}

.stat-card {
  text-align: center;
  padding: 34px 24px;
  height: 100%;
}

.stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--vip-gold);
  border: 1px solid rgba(212,175,55,0.24);
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(212,175,55,0.03));
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--vip-muted);
}

.vehicle-card,
.blog-card {
  height: 100%;
}

.vehicle-image,
.blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f0f0f;
}

.vehicle-image img,
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-body,
.blog-body {
  padding: 24px;
}

.vehicle-body h3,
.blog-body h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.vehicle-meta,
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.vehicle-meta span,
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.16);
  color: #ededed;
  font-size: 13px;
}

.vehicle-meta i,
.blog-meta i {
  color: var(--vip-gold);
}

.vehicle-actions {
  display: flex;
  gap: 12px;
}

.vehicle-actions .btn {
  flex: 1;
}

.blog-body p {
  color: var(--vip-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-strip {
  padding: 10px 0 100px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.28);
  background: linear-gradient(90deg, rgba(35,35,35,0.96), rgba(14,14,14,0.98));
}

.cta-box h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-box p {
  margin: 0;
  color: var(--vip-muted);
  line-height: 1.8;
  max-width: 760px;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 138px 0 60px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .vehicle-actions {
    flex-direction: column;
  }

  .vehicle-body h3,
  .blog-body h3,
  .cta-box h3 {
    font-size: 22px;
  }
}
