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

html {
  scroll-behavior: smooth;
}

body {
  background: #020003;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

/* ===== TOP BANNER ===== */
.top-banner {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 1.1fr;
  align-items: stretch;
  height: 182px;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid rgba(175, 95, 255, 0.35);
  position: relative;
}

.top-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      transparent 20%,
      transparent 80%,
      rgba(255, 255, 255, 0.02)
    );
  pointer-events: none;
  z-index: 5;
}

/* LEFT PURPLE GALAXY */
.banner-left {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      #6f24d8 0%,
      #42106f 28%,
      #140021 63%,
      #000000 100%
    );
}

.banner-left::before {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 8% 45%, rgba(255, 230, 255, 0.95), transparent 9%),
    radial-gradient(circle at 15% 48%, rgba(217, 138, 255, 0.9), transparent 17%),
    radial-gradient(circle at 26% 53%, rgba(145, 55, 245, 0.82), transparent 27%),
    radial-gradient(circle at 39% 39%, rgba(190, 110, 255, 0.35), transparent 21%),
    radial-gradient(circle at 25% 72%, rgba(185, 90, 255, 0.32), transparent 22%);
  filter: blur(22px);
  transform: scale(1.08);
  opacity: 0.96;
}

.banner-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07),
      transparent 18%,
      transparent 74%,
      rgba(0, 0, 0, 0.25)
    ),
    radial-gradient(circle at 26% 53%, rgba(255, 255, 255, 0.08), transparent 14%);
  mix-blend-mode: screen;
  opacity: 0.56;
}

/* CENTER LOGO PANEL */
.banner-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 55, 220, 0.12), transparent 30%),
    linear-gradient(180deg, #040006 0%, #000000 100%);
  overflow: hidden;
}

.banner-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(175, 95, 255, 0.11),
      transparent 16%,
      transparent 84%,
      rgba(175, 95, 255, 0.11)
    );
  pointer-events: none;
}

/* PNG LOGO BLENDED INTO BACKGROUND */
.banner-logo {
  width: 390px;
  max-width: 88%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 8px rgba(183, 92, 255, 0.18))
    drop-shadow(0 0 24px rgba(183, 92, 255, 0.08))
    brightness(0.98)
    saturate(0.98);
}

/* RIGHT BANNER IMAGE */
.banner-right {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    url("banner-car.png");
  background-size: cover;
  background-position: center center;
}

.banner-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(225, 255, 235, 0.22), transparent 14%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      transparent 25%,
      rgba(0, 0, 0, 0.08) 90%
    );
  pointer-events: none;
}

.banner-right::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

/* ===== NAV ===== */
.header {
  background: #000;
  border-bottom: 1px solid rgba(175, 95, 255, 0.3);
  padding: 15px 6%;
  position: relative;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.nav a:hover,
.nav a.active {
  color: #b86bff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 445px;
  background:
    url("https://images.unsplash.com/photo-1544829099-b9a0c07fad1a?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(175, 95, 255, 0.3);
  display: flex;
  align-items: center;
  padding: 58px 7%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94),
      rgba(0, 0, 0, 0.68),
      rgba(0, 0, 0, 0.18)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 470px;
}

.section-label {
  color: #b86bff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.hero-label {
  margin-bottom: 16px;
}

.hero h1 {
  text-transform: uppercase;
  font-size: 46px;
  line-height: 0.98;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 span {
  display: block;
  color: #b86bff;
}

.hero-text {
  color: #dedede;
  font-size: 17px;
  margin-bottom: 26px;
}

.hero-buttons,
.booking-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn,
.btn-outline,
.small-btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
}

.btn {
  background: linear-gradient(135deg, #7a2eff, #c07bff);
  color: #fff;
  padding: 13px 28px;
  box-shadow: 0 0 22px rgba(183, 92, 255, 0.35);
  font-size: 12px;
}

.btn-outline {
  color: #fff;
  border: 1px solid #a95fff;
  background: rgba(0, 0, 0, 0.38);
  padding: 12px 26px;
  font-size: 12px;
}

.small-btn {
  color: #fff;
  border: 1px solid #a95fff;
  padding: 10px 22px;
  font-size: 12px;
  background: transparent;
}

.small-btn.filled,
.small-btn:hover,
.btn-outline:hover {
  background: linear-gradient(135deg, #7a2eff, #c07bff);
}

.btn:hover,
.btn-outline:hover,
.small-btn:hover {
  transform: translateY(-2px);
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #040006;
  border-top: 1px solid rgba(175, 95, 255, 0.18);
  border-bottom: 1px solid rgba(175, 95, 255, 0.3);
  padding: 22px 7%;
}

.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid rgba(175, 95, 255, 0.22);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: none;
  padding-right: 0;
}

.feature-icon {
  color: #b86bff;
  font-size: 36px;
  line-height: 1;
}

.feature h3 {
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 7px;
}

.feature p {
  color: #d2d2d2;
  font-size: 13px;
}

/* ===== GENERAL SECTION ===== */
.section {
  padding: 34px 7%;
  text-align: center;
}

.section h2 {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.service-card {
  background: linear-gradient(180deg, #0d0015, #050008);
  border: 1px solid rgba(175, 95, 255, 0.32);
  border-radius: 6px;
  padding: 26px 20px;
  min-height: 180px;
}

.service-icon {
  color: #b86bff;
  font-size: 42px;
  margin-bottom: 12px;
}

.service-card h3 {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 8px;
}

.service-card p {
  color: #d7d7d7;
  font-size: 14px;
}

/* ===== PRICING ===== */
.pricing-section {
  padding-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.price-card {
  background: linear-gradient(180deg, #0d0015, #050008);
  border: 1px solid rgba(175, 95, 255, 0.32);
  border-radius: 6px;
  padding: 20px 18px 18px;
  min-height: 235px;
}

.price-card h3 {
  text-transform: uppercase;
  font-size: 14px;
}

.price {
  color: #b86bff;
  font-size: 34px;
  font-weight: 900;
  margin: 4px 0 12px;
}

.price-card ul {
  list-style-position: inside;
  text-align: left;
  margin-bottom: 18px;
}

.price-card li {
  color: #d8d8d8;
  font-size: 13px;
  margin: 4px 0;
}

.featured {
  border: 2px solid #b86bff;
  box-shadow: 0 0 20px rgba(183, 92, 255, 0.2);
}

.tag {
  background: linear-gradient(135deg, #7a2eff, #c07bff);
  margin: -20px -18px 10px;
  padding: 7px;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.price-note {
  color: #bbbbbb;
  font-size: 12px;
  margin-top: 10px;
}

/* ===== CARS ===== */
.cars-section {
  padding-top: 20px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.car-card {
  min-height: 160px;
  border: 1px solid rgba(175, 95, 255, 0.32);
  background-size: cover;
  background-position: center;
}

.car-one {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=900&q=80");
}

.car-two {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1553440569-bcc63803a83d?auto=format&fit=crop&w=900&q=80");
}

.car-three {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1619405399517-d7fce0f13302?auto=format&fit=crop&w=900&q=80");
}

.cars-btn {
  margin-top: 14px;
}

/* ===== BOOKING ===== */
.booking-section {
  margin-top: 25px;
  padding: 34px 12%;
  background:
    radial-gradient(circle at 10% 50%, rgba(120, 40, 255, 0.45), transparent 28%),
    linear-gradient(90deg, #230034, #060008);
  border-top: 1px solid rgba(175, 95, 255, 0.32);
  border-bottom: 1px solid rgba(175, 95, 255, 0.32);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.booking-left h2 {
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 6px;
}

.booking-left p {
  color: #d8d8d8;
  font-size: 14px;
}

.booking-left {
  max-width: 480px;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 26px 8% 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  border-top: 1px solid rgba(175, 95, 255, 0.22);
}

.footer-logo {
  width: 145px;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 8px rgba(183, 92, 255, 0.18))
    drop-shadow(0 0 20px rgba(183, 92, 255, 0.06));
}

.footer-col h4 {
  color: #b86bff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-col p {
  color: #d1d1d1;
  font-size: 13px;
  margin-bottom: 4px;
}

.bottom-bar {
  background: #000;
  text-align: center;
  padding: 10px 6% 24px;
  color: #d0d0d0;
  font-size: 13px;
}

.about-text {
  margin-top: 6px;
  color: #a9a9a9;
}

/* ===== TABLET ===== */
@media (max-width: 1050px) {
  .top-banner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .banner-left,
  .banner-right {
    display: none;
  }

  .banner-center {
    padding: 28px 0;
  }

  .feature-strip,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cars-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .booking-section {
    flex-direction: column;
    text-align: center;
  }

  .booking-right {
    justify-content: center;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
  .top-banner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .banner-left,
  .banner-right {
    display: none;
  }

  .banner-center {
    padding: 24px 0;
  }

  .banner-logo {
    width: 250px;
    max-width: 82%;
  }

  .header {
    padding: 15px 6%;
    display: flex;
    justify-content: flex-end;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 63px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 18px 6%;
    border-top: 1px solid rgba(175, 95, 255, 0.2);
    border-bottom: 1px solid rgba(175, 95, 255, 0.32);
  }

  .nav.active {
    display: block;
  }

  .nav a {
    display: block;
    text-align: right;
    padding: 12px 0;
  }

  .hero {
    min-height: 560px;
    padding: 55px 6%;
  }

  .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.94));
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .feature-strip,
  .services-grid,
  .pricing-grid,
  .cars-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(175, 95, 255, 0.22);
    padding: 18px 0;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .section {
    padding: 42px 6%;
  }

  .section h2 {
    font-size: 26px;
  }

  .booking-section {
    padding: 42px 6%;
  }

  .footer {
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }
}
/* ===== CLEAN TOP BANNER - NO LAMBO IMAGE ===== */
.top-banner {
  height: 185px;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(175, 95, 255, 0.35);
}

/* Purple galaxy background across the whole banner */
.banner-left {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 12% 48%, rgba(230, 180, 255, 0.85), transparent 10%),
    radial-gradient(circle at 18% 50%, rgba(190, 90, 255, 0.75), transparent 18%),
    radial-gradient(circle at 28% 52%, rgba(120, 35, 230, 0.65), transparent 28%),
    radial-gradient(circle at 78% 45%, rgba(130, 60, 220, 0.22), transparent 22%),
    linear-gradient(90deg, #5b18b8 0%, #160023 32%, #000 55%, #080010 100%);
  filter: blur(10px);
  opacity: 0.9;
}

/* Remove the top-right Lamborghini image */
.banner-right {
  display: none;
}

/* Center logo area */
.banner-center {
  position: relative;
  z-index: 3;
  background: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Make logo blend better */
.banner-logo {
  width: 420px;
  max-width: 85%;
  height: auto;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 10px rgba(183, 92, 255, 0.18))
    drop-shadow(0 0 28px rgba(183, 92, 255, 0.12))
    brightness(0.98)
    saturate(0.98);
}

/* Mobile banner */
@media (max-width: 700px) {
  .top-banner {
    height: 140px;
  }

  .banner-logo {
    width: 280px;
  }
}
/* ===== BLANK ABOUT SECTION ===== */
.about-placeholder {
  background: #050008;
}

.blank-about-box {
  min-height: 180px;
  max-width: 900px;
  margin: 20px auto 0;
  border: 1px solid rgba(175, 95, 255, 0.25);
  background: linear-gradient(180deg, #0d0015, #050008);
  border-radius: 6px;
}
/* ===== ABOUT ME CONTENT ===== */
.about-content {
  max-width: 900px;
  margin: 25px auto 0;
  padding: 35px;
  border: 1px solid rgba(175, 95, 255, 0.28);
  background:
    radial-gradient(circle at top left, rgba(120, 40, 255, 0.18), transparent 35%),
    linear-gradient(180deg, #0d0015, #050008);
  border-radius: 8px;
  text-align: left;
}

.about-content p {
  color: #dddddd;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .about-content {
    padding: 25px;
  }

  .about-content p {
    font-size: 16px;
  }
}
/* ===== MAKE PRICING CARDS FIT BETTER ===== */
.pricing-grid {
  max-width: 1250px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.price-card {
  min-height: 245px;
  padding: 18px 16px;
}

.price-card h3 {
  font-size: 13px;
}

.price {
  font-size: 32px;
  margin: 6px 0 14px;
}

.price-card li {
  font-size: 13px;
  line-height: 1.35;
}

.price-card .small-btn {
  margin-top: 8px;
}

/* Tablet */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 950px;
  }
}

/* Small tablet */
@media (max-width: 850px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
  }
}

/* Phone */
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}
/* ===== KEEP PACKAGE CARDS SAME SIZE ===== */
.pricing-grid {
  max-width: 1250px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.price-card {
  min-height: 285px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}

.price-card ul {
  flex-grow: 1;
}

.price-card .small-btn {
  align-self: center;
  margin-top: auto;
}

/* Tablet */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
  }

  .price-card {
    min-height: 285px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .price-card {
    min-height: 285px;
    width: 100%;
  }
}
