/* =====================================================
   MOROCCO DRIVE - PREMIUM FINAL STYLE.CSS
   Professional / Responsive / Reviews Improved
===================================================== */

:root {
  --dark: #05070b;
  --dark-2: #0b0f17;
  --dark-3: #111722;

  --white: #ffffff;
  --soft: #eef2f7;
  --muted: #aeb7c4;

  --gold: #d4af37;
  --gold-2: #f4c542;
  --bronze: #a87522;
  --green: #25d366;

  --line: rgba(255, 255, 255, 0.13);
  --card: rgba(255, 255, 255, 0.075);

  --gradient: linear-gradient(135deg, #f4c542 0%, #d4af37 45%, #a87522 100%);
  --gradient-soft: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.24);

  --radius: 28px;
}

/* ================= RESET ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.14), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(168, 117, 34, 0.14), transparent 35%),
    linear-gradient(180deg, #05070b 0%, #0b0f17 48%, #05070b 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

/* ================= GLOBAL LAYOUT ================= */

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  width: 100%;
  padding: 90px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.025);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title span,
.slide-content span,
.booking-text span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.section-title h2,
.booking-text h2 {
  max-width: 940px;
  margin: 14px auto;
  color: var(--white);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-title p {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 17px;
}

/* ================= BUTTONS ================= */

.btn,
.rent-btn,
.quote-btn {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  text-align: center;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn,
.btn.primary,
.rent-btn,
.quote-btn {
  background: var(--gradient);
  color: #08111f;
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.24);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--line);
}

.btn:hover,
.rent-btn:hover,
.quote-btn:hover {
  transform: translateY(-3px);
}

.full-btn {
  width: 100%;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 11, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 64px;
  max-width: 190px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.22));
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-2);
}

.quote-btn {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 22px;
}

/* ================= HERO SLIDER ================= */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background: var(--dark);
}

.hero-slider,
.hero-slide,
.slide-bg,
.slide-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.08) brightness(0.88);
  transition: transform 7s ease;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.90), rgba(5, 7, 11, 0.44), rgba(5, 7, 11, 0.82)),
    radial-gradient(circle at 42% 50%, rgba(212, 175, 55, 0.12), rgba(5, 7, 11, 0.50));
}

.slide-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 82px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content h1 {
  max-width: 940px;
  margin: 18px 0 20px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.60);
}

.slide-content p {
  max-width: 700px;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.42);
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 10;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

.dot.active {
  width: 34px;
  background: var(--gold-2);
}

/* ================= STATS ================= */

.stats {
  padding: 0;
}

.stats-grid {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 78px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  padding: 24px;
  border-radius: 24px;
  background: var(--gradient-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.40);
}

.stat-box h2 {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: 42px;
  line-height: 1;
}

.stat-box p {
  margin: 0;
  color: var(--soft);
  font-weight: 800;
}

/* ================= GRIDS ================= */

.quick-links-grid,
.services-grid,
.cars-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.quick-link-card,
.city-card,
.car-card,
.service-box,
.testimonial-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gradient-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.quick-link-card:hover,
.city-card:hover,
.car-card:hover,
.service-box:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.quick-link-card,
.service-box,
.testimonial-card,
.city-card {
  padding: 26px;
  text-align: center;
}

.quick-link-card .icon,
.service-box .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--gradient);
  color: #08111f;
  font-size: 24px;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.22);
}

.quick-link-card h3,
.city-card h3,
.service-box h3,
.testimonial-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.25;
}

.quick-link-card p,
.city-card p,
.service-box p,
.testimonial-card p {
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.7;
}

.quick-link-card span {
  color: var(--gold-2);
  font-weight: 950;
}

/* ================= FLEET CARS ================= */

#fleet-cars .car-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
  transition: 0.55s ease;
}

#fleet-cars .car-card:hover img {
  transform: scale(1.08);
}

.car-info {
  padding: 26px;
}

.car-info h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 23px;
}

.car-info p {
  margin: 0 0 16px;
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.car-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
}

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.car-footer strong {
  color: var(--gold-2);
  font-size: 18px;
}

.featured-note {
  margin-top: 28px;
  text-align: center;
}

.featured-note a {
  color: var(--gold-2);
  font-weight: 950;
}

/* =====================================================
   SPECIAL CAR OFFERS SLIDER - ONLY #cars SECTION
===================================================== */

#cars.car-offers-section {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.13), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(168, 117, 34, 0.12), transparent 35%),
    linear-gradient(180deg, #05070b 0%, #0b0f17 48%, #05070b 100%);
  color: var(--white);
}

#cars .cars-top {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 46px;
  text-align: center;
}

#cars .cars-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#cars .cars-top h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

#cars .gold-line {
  width: 96px;
  height: 2px;
  margin: 24px auto 34px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  position: relative;
}

#cars .gold-line::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-2);
  background: #05070b;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

#cars .cars-tabs {
  max-width: 980px;
  margin: 0 auto;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#cars .tab-btn {
  min-height: 58px;
  padding: 15px 18px;
  border-radius: 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.28s ease;
}

#cars .tab-btn:hover,
#cars .tab-btn.active {
  color: #08111f;
  background: var(--gradient);
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.24);
}

#cars .cars-wrapper {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  padding: 0 68px;
  overflow: hidden;
}

#cars #carsGrid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 18px;
}

#cars #carsGrid::-webkit-scrollbar {
  display: none;
}

#cars #carsGrid .car-card {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  min-width: calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gradient-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

#cars .car-image {
  width: 100%;
  height: 245px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.10), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

#cars .car-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
  transition: 0.45s ease;
}

#cars #carsGrid .car-card:hover .car-image img {
  transform: scale(1.05);
}

#cars .car-content {
  padding: 24px 24px 26px;
  text-align: center;
}

#cars .car-content h3 {
  margin: 0;
  color: var(--white);
  font-size: 23px;
  font-weight: 950;
}

#cars .small-line {
  display: block;
  width: 42px;
  height: 2px;
  margin: 13px auto 16px;
  background: var(--gradient);
  border-radius: 999px;
}

#cars .price-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

#cars .price-text strong {
  display: inline-block;
  padding: 0 4px;
  color: var(--gold-2);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

#cars .duration {
  min-height: 48px;
  margin: 10px auto 22px;
  color: var(--muted);
  font-size: 14.5px;
}

#cars .car-features {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.26);
}

#cars .car-features span {
  min-height: 52px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft);
  font-size: 12.5px;
  font-weight: 750;
  text-align: center;
  border-right: 1px solid var(--line);
}

#cars .car-features span:last-child {
  border-right: 0;
}

#cars .slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-size: 42px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

#cars .slider-arrow:hover {
  background: var(--gradient);
  color: #08111f;
  transform: translateY(-50%) scale(1.05);
}

#cars .slider-arrow.left {
  left: 0;
}

#cars .slider-arrow.right {
  right: 0;
}

#cars .car-card.hide {
  display: none !important;
}

/* ================= BOOKING ================= */

.booking {
  padding: 100px 0;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.10), transparent 38%),
    linear-gradient(rgba(5, 7, 11, 0.90), rgba(5, 7, 11, 0.94)),
    url("images/range-rover-sport.webp") center center / cover no-repeat;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.booking-text h2 {
  text-align: left;
}

.booking-text p {
  max-width: 560px;
  font-size: 17px;
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--line);
  color: var(--soft);
  font-weight: 800;
  font-size: 14px;
}

.booking-form {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.075);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.84);
  color: var(--white);
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255,255,255,0.48);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* ================= REVIEWS / TESTIMONIALS ================= */

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 197, 66, 0.12), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(168, 117, 34, 0.12), transparent 34%),
    linear-gradient(180deg, #070a10 0%, #0b0f17 100%);
}

.testimonials .section-title {
  margin-bottom: 42px;
}

.testimonials .section-title::after {
  content: "★★★★★";
  display: block;
  margin-top: 16px;
  color: var(--gold-2);
  font-size: 22px;
  letter-spacing: 5px;
  text-shadow: 0 12px 30px rgba(244, 197, 66, 0.22);
}

.testimonials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  position: relative;
  padding: 30px 24px 26px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  text-align: left;
  isolation: isolate;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 22px;
  z-index: -1;
  color: rgba(244, 197, 66, 0.16);
  font-size: 96px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card::after {
  content: "★★★★★";
  display: block;
  order: -1;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--soft);
  font-size: 15.5px;
  line-height: 1.75;
}

.testimonial-card h3 {
  margin-top: auto;
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 950;
}

/* ================= SEO ================= */

.seo-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.seo-content p {
  margin-bottom: 18px;
}

/* ================= FOOTER ================= */

.site-footer {
  width: 100%;
  margin-top: 90px;
  padding: 75px 0 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(210, 164, 75, 0.18), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(210, 164, 75, 0.10), transparent 28%),
    #05070c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  overflow: hidden;
}

.footer-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
  align-items: flex-start;
}

.footer-logo {
  width: 130px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.18));
}

.footer-brand p {
  max-width: 310px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #d8a84f;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.25),
    inset 0 -4px 0 rgba(0, 0, 0, 0.15),
    inset 0 4px 10px rgba(255, 255, 255, 0.18);
  transition: 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.04);
}

.social-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.social-icon.instagram {
  background: linear-gradient(145deg, #d85ce6, #8d39d6);
}

.social-icon.facebook {
  background: linear-gradient(145deg, #5d7df2, #3552c8);
}

.social-icon.whatsapp {
  background: linear-gradient(145deg, #7be95b, #35b93a);
}

.social-icon.tiktok {
  background: linear-gradient(145deg, #2d2d2d, #000000);
}

.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 58px auto 0;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: #06111f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28);
}

/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 1024px) {
  .quick-links-grid,
  .cars-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-text {
    text-align: center;
  }

  .booking-text h2 {
    text-align: center;
  }

  .booking-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

  #cars .cars-wrapper {
    padding: 0;
  }

  #cars #carsGrid .car-card {
    flex: 0 0 calc((100% - 24px) / 2) !important;
    min-width: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
  }

  #cars .slider-arrow {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 34px;
  }
}

/* =====================================================
   RESPONSIVE PHONE
===================================================== */

@media (max-width: 760px) {
  .header {
    min-height: 72px;
    padding: 9px 14px;
  }

  .nav {
    width: 100%;
    gap: 12px;
  }

  .logo img {
    height: 50px;
    max-width: 145px;
  }

  .quote-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(5, 7, 11, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 9999;
  }

  .nav-links.open,
  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 700px;
    height: 700px;
  }

  .slide-bg {
    transform: scale(1) !important;
    filter: saturate(1.08) contrast(1.05) brightness(0.82) !important;
  }

  .hero-slide:nth-child(1) .slide-bg {
    background-position: 62% center !important;
  }

  .hero-slide:nth-child(2) .slide-bg {
    background-position: 58% center !important;
  }

  .hero-slide:nth-child(3) .slide-bg {
    background-position: 52% center !important;
  }

  .slide-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.96) 0%,
        rgba(5, 7, 11, 0.78) 38%,
        rgba(5, 7, 11, 0.62) 58%,
        rgba(5, 7, 11, 0.96) 100%
      ) !important;
  }

  .slide-content {
    min-height: 700px;
    height: 700px;
    width: calc(100% - 28px);
    padding: 76px 0 68px;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
  }

  .slide-content span {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .slide-content h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .slide-content p {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .slide-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .slide-actions a,
  .btn {
    width: 100%;
  }

  .stats-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin: 24px auto 54px;
  }

  .section {
    padding: 62px 0;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2,
  #cars .cars-top h2,
  .booking-text h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .quick-links-grid,
  .cars-grid,
  .services-grid,
  .testimonials-grid,
  .city-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  #fleet-cars .car-card img {
    height: 205px;
  }

  .car-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .rent-btn {
    width: 100%;
  }

  #cars.car-offers-section {
    padding: 68px 0;
  }

  #cars .cars-top,
  #cars .cars-wrapper {
    width: calc(100% - 28px);
  }

  #cars .cars-top {
    margin-bottom: 32px;
  }

  #cars .cars-subtitle {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  #cars .cars-tabs {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  #cars .tab-btn {
    min-height: 52px;
    font-size: 13px;
  }

  #cars #carsGrid {
    gap: 18px;
  }

  #cars #carsGrid .car-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px;
  }

  #cars .car-image {
    height: 220px;
    padding: 20px;
  }

  #cars .car-content {
    padding: 22px 20px 24px;
  }

  #cars .car-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking {
    padding: 72px 0;
  }

  .booking-form {
    padding: 22px;
    border-radius: 24px;
  }

  .booking-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
    text-align: center;
  }

  .testimonial-card::before {
    right: 50%;
    transform: translateX(50%);
  }

  .site-footer {
    margin-top: 60px;
    padding-top: 50px;
  }

  .footer-container,
  .footer-bottom {
    width: calc(100% - 30px);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-brand,
  .footer-column {
    align-items: center;
  }

  .footer-logo {
    width: 115px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column a,
  .footer-column span {
    width: auto;
    text-align: center;
  }

  .footer-column a:hover {
    transform: none;
  }

  .footer-bottom {
    margin-top: 42px;
  }

  .whatsapp-btn {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-btn::after {
    content: "☘";
    font-size: 24px;
  }
}

/* ================= SMALL PHONE ================= */

@media (max-width: 390px) {
  .logo img {
    height: 45px;
    max-width: 125px;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 660px;
    height: 660px;
  }

  .slide-content {
    min-height: 660px;
    height: 660px;
    padding: 66px 0 60px;
  }

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

  .section-title h2,
  #cars .cars-top h2,
  .booking-text h2 {
    font-size: 26px;
  }

  p {
    font-size: 14.5px;
  }

  #fleet-cars .car-card img {
    height: 180px;
  }

  #cars .car-image {
    height: 190px;
    padding: 18px;
  }

  #cars .price-text strong {
    font-size: 31px;
  }

  .quick-link-card,
  .service-box,
  .testimonial-card,
  .city-card {
    padding: 22px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon img {
    width: 23px;
    height: 23px;
  }
}
/* =====================================================
   FLEET PAGE - PREMIUM RESPONSIVE CSS
   Add this at the END of style.css
===================================================== */

/* ================= PAGE HERO ================= */

.page-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #05070b;
}

.fleet-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.62), rgba(5, 7, 11, 0.92)),
    radial-gradient(circle at 72% 45%, rgba(212, 175, 55, 0.16), transparent 34%),
    url("images/audi-q8.webp") center right / cover no-repeat;
}

.fleet-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 197, 66, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.16), rgba(5, 7, 11, 0.96));
  pointer-events: none;
}

.fleet-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, #05070b);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 90px;
}

.page-hero-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-content h1 {
  max-width: 900px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.page-hero-content p {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* ================= FLEET STATS FIX ================= */

.stats {
  position: relative;
  z-index: 5;
  background: transparent;
}

.stats-grid {
  margin-top: -54px;
}

.stat-box h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.035em;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.82);
}

/* ================= FLEET CARS SECTION ================= */

#fleet-cars {
  position: relative;
  overflow: hidden;
}

#fleet-cars::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(40px);
  pointer-events: none;
}

#fleet-cars::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 12%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.12);
  filter: blur(45px);
  pointer-events: none;
}

#fleet-cars .container {
  position: relative;
  z-index: 2;
}

#fleet-cars .cars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#fleet-cars .car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.27);
}

#fleet-cars .car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), transparent 36%, rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

#fleet-cars .car-card:hover::before {
  opacity: 1;
}

#fleet-cars .car-card img {
  width: 100%;
  height: 245px;
  padding: 18px;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
}

#fleet-cars .car-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

#fleet-cars .car-info h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

#fleet-cars .car-info p {
  margin-bottom: 18px;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

#fleet-cars .car-meta {
  margin-top: auto;
  margin-bottom: 20px;
}

#fleet-cars .car-meta span {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
}

#fleet-cars .car-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

#fleet-cars .car-footer strong {
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 950;
  white-space: nowrap;
}

#fleet-cars .rent-btn {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 13px;
}

/* ================= CATEGORIES / FAQ FIX ================= */

#fleet-categories,
#fleet-faq {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

#fleet-categories .services-grid,
#fleet-faq .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#fleet-categories .service-box,
#fleet-faq .service-box {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
}

#fleet-faq .service-box {
  text-align: left;
}

#fleet-faq .service-box h3 {
  font-size: 20px;
  line-height: 1.35;
}

#fleet-faq .service-box p {
  margin-bottom: 0;
}

/* ================= BOOKING SECTION FIX ================= */

#fleet-booking {
  position: relative;
  overflow: hidden;
}

#fleet-booking .booking-wrapper {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

#fleet-booking .booking-form {
  position: relative;
}

#fleet-booking .booking-form::before {
  content: "Fast Booking";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#fleet-booking select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#fleet-booking .full-btn {
  margin-top: 4px;
  font-size: 15px;
}

/* ================= WHATSAPP FLOAT FIX ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* ================= FOOTER SMALL FIX ================= */

.site-footer {
  margin-top: 0;
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  #fleet-cars .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #fleet-categories .services-grid,
  #fleet-faq .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-content {
    padding: 105px 0 75px;
  }
}

@media (max-width: 900px) {
  .fleet-page-hero {
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0.96)),
      url("images/audi-q8.webp") center / cover no-repeat;
  }

  .page-hero-content {
    text-align: center;
  }

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

  .page-hero-content .slide-actions {
    justify-content: center;
  }

  #fleet-booking .booking-wrapper {
    grid-template-columns: 1fr;
  }

  #fleet-booking .booking-text {
    text-align: center;
  }

  #fleet-booking .booking-points {
    justify-content: center;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .page-hero {
    min-height: 660px;
  }

  .fleet-page-hero {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 42%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/audi-q8.webp") 62% center / cover no-repeat;
  }

  .page-hero-content {
    width: calc(100% - 28px);
    padding: 95px 0 70px;
    text-align: center;
  }

  .page-hero-content span {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .page-hero-content h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .page-hero-content p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .page-hero-content .slide-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-hero-content .slide-actions a {
    width: 100%;
  }

  .stats-grid {
    margin-top: 24px;
  }

  #fleet-cars .cars-grid,
  #fleet-categories .services-grid,
  #fleet-faq .services-grid {
    grid-template-columns: 1fr;
  }

  #fleet-cars .car-card {
    border-radius: 24px;
  }

  #fleet-cars .car-card img {
    height: 225px;
    padding: 16px;
  }

  #fleet-cars .car-info {
    padding: 22px 20px;
    text-align: center;
  }

  #fleet-cars .car-meta {
    justify-content: center;
  }

  #fleet-cars .car-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #fleet-cars .car-footer strong {
    text-align: center;
  }

  #fleet-cars .rent-btn {
    width: 100%;
  }

  #fleet-categories,
  #fleet-faq {
    width: calc(100% - 28px);
  }

  #fleet-faq .service-box {
    text-align: center;
  }

  #fleet-booking .booking-wrapper {
    width: calc(100% - 28px);
  }

  #fleet-booking .booking-form::before {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .page-hero {
    min-height: 620px;
  }

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

  #fleet-cars .car-card img {
    height: 195px;
  }

  #fleet-cars .car-info h3 {
    font-size: 21px;
  }

  #fleet-cars .car-info p {
    font-size: 14.5px;
  }

  #fleet-cars .car-meta span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}
/* =====================================================
   FIX FLEET CAR IMAGES SIZE
   يجعل صور السيارات كبيرة وواضحة داخل الكارد
===================================================== */

#fleet-cars .car-card img {
  width: 100% !important;
  height: 270px !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background: rgba(255, 255, 255, 0.04) !important;
  filter: saturate(1.08) contrast(1.05) brightness(0.98);
}

/* تحسين شكل الصورة داخل الكارد */
#fleet-cars .car-card {
  overflow: hidden;
}

#fleet-cars .car-card:hover img {
  transform: scale(1.06);
}

/* بعض الصور العمودية نكبرها أكثر */
#fleet-cars .car-card img[src*="seat-cupra"],
#fleet-cars .car-card img[src*="audi-q8"] {
  object-fit: cover !important;
  object-position: center !important;
}

/* Tablet */
@media (max-width: 1024px) {
  #fleet-cars .car-card img {
    height: 250px !important;
  }
}

/* Phone */
@media (max-width: 760px) {
  #fleet-cars .car-card img {
    height: 235px !important;
  }
}

/* Small phone */
@media (max-width: 390px) {
  #fleet-cars .car-card img {
    height: 210px !important;
  }
}
/* =====================================================
   LUXURY CAR RENTAL PAGE - PREMIUM CSS
   Add this at the END of style.css
===================================================== */

/* ================= LUXURY HERO ================= */

.hero-home.city-hero.luxury-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.70), rgba(5, 7, 11, 0.92)),
    radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.18), transparent 34%),
    url("images/range-rover-sport.webp") center right / cover no-repeat;
}

.hero-home.city-hero.luxury-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 197, 66, 0.14), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(168, 117, 34, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.10), rgba(5, 7, 11, 0.96));
  pointer-events: none;
}

.hero-home.city-hero.luxury-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, #05070b);
  pointer-events: none;
}

.luxury-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.luxury-hero .hero-text {
  max-width: 720px;
}

.luxury-hero .tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.luxury-hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.luxury-hero p {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--soft);
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.78;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.hero-features span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

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

/* ================= QUICK RESERVATION CARD ================= */

.city-reservation-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 7, 11, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.city-reservation-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.city-reservation-card h2 {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.city-reservation-card p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.mini-booking-form {
  position: relative;
  display: grid;
  gap: 13px;
}

.mini-booking-form input,
.mini-booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 7, 11, 0.82);
  color: #fff;
  outline: none;
}

.mini-booking-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.mini-booking-form input:focus,
.mini-booking-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.mini-booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ================= LUXURY STATS ================= */

.luxury-hero + .stats .stats-grid,
.stats-grid {
  position: relative;
  z-index: 5;
}

.stat-box h2 {
  text-transform: uppercase;
}

/* ================= LUXURY FLEET GRID ================= */

#luxury-fleet {
  position: relative;
  overflow: hidden;
}

#luxury-fleet::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(45px);
  pointer-events: none;
}

#luxury-fleet::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.13);
  filter: blur(48px);
  pointer-events: none;
}

#luxury-fleet > .section-title,
#luxury-fleet > .cars-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

#luxury-fleet .cars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#luxury-fleet .car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

#luxury-fleet .car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), transparent 36%, rgba(255, 255, 255, 0.05));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

#luxury-fleet .car-card:hover::before {
  opacity: 1;
}

#luxury-fleet .car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

#luxury-fleet .car-card img {
  width: 100%;
  height: 270px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 58%),
    rgba(255,255,255,0.04);
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  transition: 0.5s ease;
}

#luxury-fleet .car-card:hover img {
  transform: scale(1.06);
}

#luxury-fleet .car-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

#luxury-fleet .car-info h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

#luxury-fleet .car-info p {
  margin: 0 0 18px;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

#luxury-fleet .car-meta {
  margin-top: auto;
  margin-bottom: 20px;
}

#luxury-fleet .car-meta span {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
}

#luxury-fleet .car-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

#luxury-fleet .car-footer strong {
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 950;
  white-space: nowrap;
}

.small-btn,
#luxury-fleet .small-btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

/* ================= SERVICES / BEST FOR / FAQ ================= */

#luxury-services,
#luxury-faq {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

#luxury-services .services-grid,
#luxury-faq .services-grid,
.section:not(#luxury-fleet):not(#luxury-services):not(#luxury-faq) > .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#luxury-services .service-box,
#luxury-faq .service-box,
.section:not(#luxury-fleet):not(#luxury-services):not(#luxury-faq) > .services-grid .service-box {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
}

#luxury-faq .service-box {
  text-align: left;
}

#luxury-faq .service-box h3 {
  font-size: 20px;
  line-height: 1.35;
}

#luxury-faq .service-box p {
  margin-bottom: 0;
}

/* ================= LUXURY BOOKING ================= */

#luxury-booking {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(212, 175, 55, 0.13), transparent 34%),
    linear-gradient(rgba(5, 7, 11, 0.90), rgba(5, 7, 11, 0.95)),
    url("images/audi-q8.webp") center / cover no-repeat;
}

#luxury-booking .booking-wrapper {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

#luxury-booking .booking-form {
  position: relative;
}

#luxury-booking .booking-form::before {
  content: "Luxury Booking";
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#luxury-booking select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .luxury-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .luxury-hero .hero-text {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
  }

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

  .hero-features,
  .hero-buttons {
    justify-content: center;
  }

  .city-reservation-card {
    justify-self: center;
    max-width: 620px;
  }

  #luxury-fleet .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #luxury-services .services-grid,
  #luxury-faq .services-grid,
  .section:not(#luxury-fleet):not(#luxury-services):not(#luxury-faq) > .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-home.city-hero.luxury-hero {
    min-height: auto;
    padding: 95px 0 80px;
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.78), rgba(5, 7, 11, 0.97)),
      url("images/range-rover-sport.webp") center / cover no-repeat;
  }

  #luxury-booking .booking-wrapper {
    grid-template-columns: 1fr;
  }

  #luxury-booking .booking-text {
    text-align: center;
  }

  #luxury-booking .booking-points {
    justify-content: center;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .hero-home.city-hero.luxury-hero {
    padding: 82px 0 64px;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 42%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/range-rover-sport.webp") 58% center / cover no-repeat;
  }

  .luxury-hero .hero-content {
    width: calc(100% - 28px);
    gap: 26px;
  }

  .luxury-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .luxury-hero .tagline {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .luxury-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-features span {
    text-align: center;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
  }

  .city-reservation-card {
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .city-reservation-card h2 {
    text-align: center;
    font-size: 26px;
  }

  .city-reservation-card p {
    text-align: center;
  }

  #luxury-fleet > .section-title,
  #luxury-fleet > .cars-grid,
  #luxury-services,
  #luxury-faq {
    width: calc(100% - 28px);
  }

  #luxury-fleet .cars-grid,
  #luxury-services .services-grid,
  #luxury-faq .services-grid,
  .section:not(#luxury-fleet):not(#luxury-services):not(#luxury-faq) > .services-grid {
    grid-template-columns: 1fr;
  }

  #luxury-fleet .car-card {
    border-radius: 24px;
  }

  #luxury-fleet .car-card img {
    height: 235px;
  }

  #luxury-fleet .car-info {
    padding: 22px 20px;
    text-align: center;
  }

  #luxury-fleet .car-meta {
    justify-content: center;
  }

  #luxury-fleet .car-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #luxury-fleet .car-footer strong {
    text-align: center;
  }

  #luxury-fleet .small-btn {
    width: 100%;
  }

  #luxury-faq .service-box {
    text-align: center;
  }

  #luxury-booking .booking-wrapper {
    width: calc(100% - 28px);
  }

  #luxury-booking .booking-form::before {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .luxury-hero h1 {
    font-size: 32px;
  }

  .city-reservation-card {
    padding: 22px 18px;
  }

  #luxury-fleet .car-card img {
    height: 210px;
  }

  #luxury-fleet .car-info h3 {
    font-size: 21px;
  }

  #luxury-fleet .car-info p {
    font-size: 14.5px;
  }

  #luxury-fleet .car-meta span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}
/* =====================================================
   SUV CAR RENTAL PAGE - PREMIUM CSS
   Add this at the END of style.css
===================================================== */

/* ================= SUV HERO ================= */

.hero-home.city-hero.suv-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.68), rgba(5, 7, 11, 0.92)),
    radial-gradient(circle at 72% 38%, rgba(212, 175, 55, 0.18), transparent 34%),
    url("images/audi-q8.webp") center right / cover no-repeat;
}

.hero-home.city-hero.suv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 197, 66, 0.13), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(168, 117, 34, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.96));
  pointer-events: none;
}

.hero-home.city-hero.suv-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, #05070b);
  pointer-events: none;
}

.suv-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.suv-hero .hero-text {
  max-width: 720px;
}

.suv-hero .tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.suv-hero h1 {
  max-width: 880px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.suv-hero p {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--soft);
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.78;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

/* ================= HERO FEATURES ================= */

.suv-hero .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.suv-hero .hero-features span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.suv-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================= SUV QUICK RESERVATION CARD ================= */

.suv-hero .city-reservation-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 7, 11, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.suv-hero .city-reservation-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.suv-hero .city-reservation-card h2 {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.suv-hero .city-reservation-card p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.suv-hero .mini-booking-form {
  position: relative;
  display: grid;
  gap: 13px;
}

.suv-hero .mini-booking-form input,
.suv-hero .mini-booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 7, 11, 0.82);
  color: #fff;
  outline: none;
}

.suv-hero .mini-booking-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.suv-hero .mini-booking-form input:focus,
.suv-hero .mini-booking-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.suv-hero .mini-booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ================= SUV FLEET SECTION USING #fleet-cars ================= */

#fleet-cars {
  position: relative;
  overflow: hidden;
}

#fleet-cars::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(45px);
  pointer-events: none;
}

#fleet-cars::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.13);
  filter: blur(48px);
  pointer-events: none;
}

#fleet-cars .container {
  position: relative;
  z-index: 2;
}

#fleet-cars .cars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#fleet-cars .car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

#fleet-cars .car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), transparent 36%, rgba(255, 255, 255, 0.05));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

#fleet-cars .car-card:hover::before {
  opacity: 1;
}

#fleet-cars .car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

#fleet-cars .car-card img {
  width: 100% !important;
  height: 270px !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 58%),
    rgba(255,255,255,0.04) !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  transition: 0.5s ease;
}

#fleet-cars .car-card:hover img {
  transform: scale(1.06);
}

#fleet-cars .car-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

#fleet-cars .car-info h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

#fleet-cars .car-info p {
  margin: 0 0 18px;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

#fleet-cars .car-meta {
  margin-top: auto;
  margin-bottom: 20px;
}

#fleet-cars .car-meta span {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
}

#fleet-cars .car-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

#fleet-cars .car-footer strong {
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 950;
  white-space: nowrap;
}

#fleet-cars .rent-btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

/* ================= SEE FULL FLEET LINK ================= */

.featured-note {
  margin-top: 34px;
  text-align: center;
}

.fleet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.30);
  color: var(--gold-2);
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.fleet-link:hover {
  transform: translateY(-3px);
  background: var(--gradient);
  color: #08111f;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .suv-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .suv-hero .hero-text {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
  }

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

  .suv-hero .hero-features,
  .suv-hero .hero-buttons {
    justify-content: center;
  }

  .suv-hero .city-reservation-card {
    justify-self: center;
    max-width: 620px;
  }

  #fleet-cars .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-home.city-hero.suv-hero {
    min-height: auto;
    padding: 95px 0 80px;
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.78), rgba(5, 7, 11, 0.97)),
      url("images/audi-q8.webp") center / cover no-repeat;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .hero-home.city-hero.suv-hero {
    padding: 82px 0 64px;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 42%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/audi-q8.webp") 58% center / cover no-repeat;
  }

  .suv-hero .hero-content {
    width: calc(100% - 28px);
    gap: 26px;
  }

  .suv-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .suv-hero .tagline {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .suv-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .suv-hero .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .suv-hero .hero-features span {
    text-align: center;
  }

  .suv-hero .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .suv-hero .hero-buttons a {
    width: 100%;
  }

  .suv-hero .city-reservation-card {
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .suv-hero .city-reservation-card h2 {
    text-align: center;
    font-size: 26px;
  }

  .suv-hero .city-reservation-card p {
    text-align: center;
  }

  #fleet-cars .cars-grid {
    grid-template-columns: 1fr;
  }

  #fleet-cars .car-card {
    border-radius: 24px;
  }

  #fleet-cars .car-card img {
    height: 235px !important;
  }

  #fleet-cars .car-info {
    padding: 22px 20px;
    text-align: center;
  }

  #fleet-cars .car-meta {
    justify-content: center;
  }

  #fleet-cars .car-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #fleet-cars .car-footer strong {
    text-align: center;
  }

  #fleet-cars .rent-btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .suv-hero h1 {
    font-size: 32px;
  }

  .suv-hero .city-reservation-card {
    padding: 22px 18px;
  }

  #fleet-cars .car-card img {
    height: 210px !important;
  }

  #fleet-cars .car-info h3 {
    font-size: 21px;
  }

  #fleet-cars .car-info p {
    font-size: 14.5px;
  }

  #fleet-cars .car-meta span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}
/* =====================================================
   TERMS & CONDITIONS PAGE - LEGAL PREMIUM CSS
   Add this at the END of style.css
===================================================== */

/* ================= LEGAL PAGE BACKGROUND ================= */

.policy-page.legal-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 110px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.14), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(168, 117, 34, 0.12), transparent 35%),
    linear-gradient(180deg, #05070b 0%, #0b0f17 48%, #05070b 100%);
}

.policy-page.legal-page::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(45px);
  pointer-events: none;
}

.policy-page.legal-page::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.12);
  filter: blur(50px);
  pointer-events: none;
}

/* ================= LEGAL BOX ================= */

.policy-box.legal-box {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.policy-box.legal-box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  filter: blur(22px);
  pointer-events: none;
}

.policy-box.legal-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(244, 197, 66, 0.12), transparent 34%, rgba(255,255,255,0.035));
  pointer-events: none;
}

/* ================= TOP TITLE ================= */

.legal-box > .tagline {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.30);
  background: rgba(212, 175, 55, 0.11);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-box h1 {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.policy-intro {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 0 38px;
  color: rgba(238, 242, 247, 0.82);
  font-size: 17px;
  line-height: 1.85;
}

/* ================= POLICY SECTIONS ================= */

.policy-section {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.policy-section:first-of-type {
  border-top-color: rgba(212, 175, 55, 0.26);
}

.policy-section h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.policy-section p {
  margin: 0 0 14px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 16px;
  line-height: 1.85;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.policy-section li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(238, 242, 247, 0.78);
  line-height: 1.65;
}

.policy-section li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #08111f;
  font-size: 12px;
  font-weight: 950;
}

.policy-section strong {
  color: var(--gold-2);
  font-weight: 950;
}

/* ================= LAST UPDATED NOTE ================= */

.policy-note {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255,255,255,0.055));
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ================= LEGAL PAGE LINKS ================= */

.legal-box a {
  color: var(--gold-2);
  font-weight: 850;
  transition: 0.25s ease;
}

.legal-box a:hover {
  color: #fff;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* ================= FOOTER FIX FOR LEGAL PAGE ================= */

.legal-page + .site-footer {
  margin-top: 0;
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .policy-page.legal-page {
    padding: 90px 0 75px;
  }

  .policy-box.legal-box {
    width: min(900px, calc(100% - 32px));
    border-radius: 30px;
  }

  .legal-box h1,
  .policy-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .legal-box > .tagline {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .policy-page.legal-page {
    padding: 70px 0 56px;
  }

  .policy-box.legal-box {
    width: calc(100% - 28px);
    padding: 26px 20px;
    border-radius: 24px;
  }

  .legal-box > .tagline {
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-align: center;
  }

  .legal-box h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .policy-intro {
    margin-bottom: 28px;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .policy-section {
    padding: 24px 0;
  }

  .policy-section h2 {
    font-size: 22px;
    line-height: 1.28;
    text-align: left;
  }

  .policy-section p {
    font-size: 15px;
    line-height: 1.75;
  }

  .policy-section li {
    padding: 12px 14px 12px 42px;
    font-size: 14.5px;
  }

  .policy-section li::before {
    left: 14px;
    top: 12px;
  }

  .policy-note {
    margin-top: 24px;
    font-size: 13px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .policy-box.legal-box {
    padding: 24px 17px;
  }

  .legal-box h1 {
    font-size: 30px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 14.2px;
  }
}
/* =====================================================
   PRIVACY POLICY PAGE - PREMIUM LEGAL CSS
   Add this at the END of style.css
===================================================== */

/* ================= PRIVACY HERO ================= */

.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0.94)),
    radial-gradient(circle at 76% 40%, rgba(212, 175, 55, 0.18), transparent 34%),
    url("images/audi-q8.webp") center right / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 197, 66, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.96));
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: linear-gradient(180deg, transparent, #05070b);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 95px 0 80px;
  text-align: center;
}

.page-hero-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.30);
  background: rgba(212, 175, 55, 0.11);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-content h1 {
  max-width: 880px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.page-hero-content p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(238, 242, 247, 0.82);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

/* ================= PRIVACY CONTENT BACKGROUND ================= */

.policy-section-page {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.12), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(168, 117, 34, 0.12), transparent 36%),
    linear-gradient(180deg, #05070b 0%, #0b0f17 48%, #05070b 100%);
}

.policy-section-page::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(45px);
  pointer-events: none;
}

.policy-section-page::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.12);
  filter: blur(50px);
  pointer-events: none;
}

/* ================= PRIVACY BOX ================= */

.policy-section-page .policy-box {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.policy-section-page .policy-box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  filter: blur(22px);
  pointer-events: none;
}

.policy-section-page .policy-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(244, 197, 66, 0.12), transparent 34%, rgba(255,255,255,0.035));
  pointer-events: none;
}

/* ================= INTRO ================= */

.policy-section-page .policy-intro {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 0 38px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(255,255,255,0.055));
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: rgba(238, 242, 247, 0.84);
  font-size: 17px;
  line-height: 1.85;
}

/* ================= POLICY ARTICLES ================= */

.policy-section-page .policy-section {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.policy-section-page .policy-section:first-of-type {
  border-top-color: rgba(212, 175, 55, 0.28);
}

.policy-section-page .policy-section h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.policy-section-page .policy-section p {
  margin: 0 0 14px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 16px;
  line-height: 1.85;
}

.policy-section-page .policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section-page .policy-section ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.policy-section-page .policy-section li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(238, 242, 247, 0.78);
  line-height: 1.65;
}

.policy-section-page .policy-section li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #08111f;
  font-size: 12px;
  font-weight: 950;
}

.policy-section-page .policy-section strong {
  color: var(--gold-2);
  font-weight: 950;
}

/* ================= LAST UPDATED ================= */

.policy-section-page .policy-note {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255,255,255,0.055));
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ================= LINKS ================= */

.policy-section-page .policy-box a {
  color: var(--gold-2);
  font-weight: 850;
  transition: 0.25s ease;
}

.policy-section-page .policy-box a:hover {
  color: #fff;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* ================= FOOTER FIX ================= */

main + .site-footer {
  margin-top: 0;
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .page-hero {
    min-height: 450px;
  }

  .page-hero-content {
    padding: 85px 0 70px;
  }

  .policy-section-page {
    padding: 75px 0;
  }

  .policy-section-page .policy-box {
    width: min(900px, calc(100% - 32px));
    border-radius: 30px;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .page-hero {
    min-height: 430px;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 44%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/audi-q8.webp") 58% center / cover no-repeat;
  }

  .page-hero-content {
    width: calc(100% - 28px);
    padding: 78px 0 62px;
  }

  .page-hero-content span {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .page-hero-content h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .page-hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .policy-section-page {
    padding: 56px 0;
  }

  .policy-section-page .policy-box {
    width: calc(100% - 28px);
    padding: 26px 20px;
    border-radius: 24px;
  }

  .policy-section-page .policy-intro {
    margin-bottom: 28px;
    padding: 18px 16px;
    font-size: 15.5px;
    line-height: 1.75;
    text-align: center;
  }

  .policy-section-page .policy-section {
    padding: 24px 0;
  }

  .policy-section-page .policy-section h2 {
    font-size: 22px;
    line-height: 1.28;
  }

  .policy-section-page .policy-section p {
    font-size: 15px;
    line-height: 1.75;
  }

  .policy-section-page .policy-section li {
    padding: 12px 14px 12px 42px;
    font-size: 14.5px;
  }

  .policy-section-page .policy-section li::before {
    left: 14px;
    top: 12px;
  }

  .policy-section-page .policy-note {
    margin-top: 24px;
    font-size: 13px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .page-hero-content h1 {
    font-size: 32px;
  }

  .policy-section-page .policy-box {
    padding: 24px 17px;
  }

  .policy-section-page .policy-section h2 {
    font-size: 20px;
  }

  .policy-section-page .policy-section p,
  .policy-section-page .policy-section li {
    font-size: 14.2px;
  }
}
/* =====================================================
   FAMILY CAR RENTAL PAGE - PREMIUM CSS
   Add this at the END of style.css
===================================================== */

/* ================= FAMILY HERO ================= */

.hero-home.city-hero.family-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.68), rgba(5, 7, 11, 0.92)),
    radial-gradient(circle at 72% 38%, rgba(212, 175, 55, 0.18), transparent 34%),
    url("images/mercedes-v-class.webp") center right / cover no-repeat;
}

.hero-home.city-hero.family-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 197, 66, 0.13), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(168, 117, 34, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.96));
  pointer-events: none;
}

.hero-home.city-hero.family-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, #05070b);
  pointer-events: none;
}

.family-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.family-hero .hero-text {
  max-width: 720px;
}

.family-hero .tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.family-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.family-hero p {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--soft);
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.78;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

/* ================= HERO FEATURES ================= */

.family-hero .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.family-hero .hero-features span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.family-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================= FAMILY QUICK RESERVATION CARD ================= */

.family-hero .city-reservation-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 7, 11, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.family-hero .city-reservation-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.family-hero .city-reservation-card h2 {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.family-hero .city-reservation-card p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.family-hero .mini-booking-form {
  position: relative;
  display: grid;
  gap: 13px;
}

.family-hero .mini-booking-form input,
.family-hero .mini-booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 7, 11, 0.82);
  color: #fff;
  outline: none;
}

.family-hero .mini-booking-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.family-hero .mini-booking-form input:focus,
.family-hero .mini-booking-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.family-hero .mini-booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ================= FAMILY FLEET SECTION ================= */

#fleet-cars {
  position: relative;
  overflow: hidden;
}

#fleet-cars::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(45px);
  pointer-events: none;
}

#fleet-cars::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.13);
  filter: blur(48px);
  pointer-events: none;
}

#fleet-cars .container {
  position: relative;
  z-index: 2;
}

#fleet-cars .cars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#fleet-cars .car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

#fleet-cars .car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), transparent 36%, rgba(255, 255, 255, 0.05));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

#fleet-cars .car-card:hover::before {
  opacity: 1;
}

#fleet-cars .car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

#fleet-cars .car-card img {
  width: 100% !important;
  height: 270px !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 58%),
    rgba(255,255,255,0.04) !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  transition: 0.5s ease;
}

#fleet-cars .car-card:hover img {
  transform: scale(1.06);
}

#fleet-cars .car-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

#fleet-cars .car-info h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

#fleet-cars .car-info p {
  margin: 0 0 18px;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

#fleet-cars .car-meta {
  margin-top: auto;
  margin-bottom: 20px;
}

#fleet-cars .car-meta span {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
}

#fleet-cars .car-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

#fleet-cars .car-footer strong {
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 950;
  white-space: nowrap;
}

#fleet-cars .rent-btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

/* ================= SEE FULL FLEET LINK ================= */

.featured-note {
  margin-top: 34px;
  text-align: center;
}

.fleet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.30);
  color: var(--gold-2);
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.fleet-link:hover {
  transform: translateY(-3px);
  background: var(--gradient);
  color: #08111f;
}

/* ================= FAMILY SERVICE BOXES ================= */

.family-hero ~ .section .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.family-hero ~ .section .service-box {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
}

.family-hero ~ .section .service-box h3 {
  line-height: 1.28;
}

#family-faq .service-box {
  text-align: left;
}

#family-faq .service-box p {
  margin-bottom: 0;
}

/* ================= FAMILY BOOKING ================= */

#family-booking {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(212, 175, 55, 0.13), transparent 34%),
    linear-gradient(rgba(5, 7, 11, 0.90), rgba(5, 7, 11, 0.95)),
    url("images/mercedes-v-class.webp") center / cover no-repeat;
}

#family-booking .booking-wrapper {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

#family-booking .booking-form {
  position: relative;
}

#family-booking .booking-form::before {
  content: "Family Booking";
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#family-booking select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .family-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .family-hero .hero-text {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
  }

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

  .family-hero .hero-features,
  .family-hero .hero-buttons {
    justify-content: center;
  }

  .family-hero .city-reservation-card {
    justify-self: center;
    max-width: 620px;
  }

  #fleet-cars .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-hero ~ .section .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-home.city-hero.family-hero {
    min-height: auto;
    padding: 95px 0 80px;
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.78), rgba(5, 7, 11, 0.97)),
      url("images/mercedes-v-class.webp") center / cover no-repeat;
  }

  #family-booking .booking-wrapper {
    grid-template-columns: 1fr;
  }

  #family-booking .booking-text {
    text-align: center;
  }

  #family-booking .booking-points {
    justify-content: center;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .hero-home.city-hero.family-hero {
    padding: 82px 0 64px;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 42%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/mercedes-v-class.webp") 58% center / cover no-repeat;
  }

  .family-hero .hero-content {
    width: calc(100% - 28px);
    gap: 26px;
  }

  .family-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .family-hero .tagline {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .family-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .family-hero .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .family-hero .hero-features span {
    text-align: center;
  }

  .family-hero .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .family-hero .hero-buttons a {
    width: 100%;
  }

  .family-hero .city-reservation-card {
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .family-hero .city-reservation-card h2 {
    text-align: center;
    font-size: 26px;
  }

  .family-hero .city-reservation-card p {
    text-align: center;
  }

  #fleet-cars .cars-grid,
  .family-hero ~ .section .services-grid {
    grid-template-columns: 1fr;
  }

  #fleet-cars .car-card {
    border-radius: 24px;
  }

  #fleet-cars .car-card img {
    height: 235px !important;
  }

  #fleet-cars .car-info {
    padding: 22px 20px;
    text-align: center;
  }

  #fleet-cars .car-meta {
    justify-content: center;
  }

  #fleet-cars .car-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #fleet-cars .car-footer strong {
    text-align: center;
  }

  #fleet-cars .rent-btn {
    width: 100%;
  }

  #family-faq .service-box {
    text-align: center;
  }

  #family-booking .booking-wrapper {
    width: calc(100% - 28px);
  }

  #family-booking .booking-form::before {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .family-hero h1 {
    font-size: 32px;
  }

  .family-hero .city-reservation-card {
    padding: 22px 18px;
  }

  #fleet-cars .car-card img {
    height: 210px !important;
  }

  #fleet-cars .car-info h3 {
    font-size: 21px;
  }

  #fleet-cars .car-info p {
    font-size: 14.5px;
  }

  #fleet-cars .car-meta span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}
/* =====================================================
   ECONOMY CAR RENTAL PAGE - PREMIUM CSS
   Add this at the END of style.css
===================================================== */

/* ================= ECONOMY HERO ================= */

.hero-home.city-hero.economy-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.68), rgba(5, 7, 11, 0.92)),
    radial-gradient(circle at 72% 38%, rgba(212, 175, 55, 0.18), transparent 34%),
    url("images/volkswagen-golf-8-1.webp") center right / cover no-repeat;
}

.hero-home.city-hero.economy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 197, 66, 0.13), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(168, 117, 34, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.96));
  pointer-events: none;
}

.hero-home.city-hero.economy-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, #05070b);
  pointer-events: none;
}

.economy-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.economy-hero .hero-text {
  max-width: 720px;
}

.economy-hero .tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.economy-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.economy-hero p {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--soft);
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.78;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

/* ================= HERO FEATURES ================= */

.economy-hero .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.economy-hero .hero-features span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.economy-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ================= QUICK RESERVATION CARD ================= */

.economy-hero .city-reservation-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 7, 11, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.economy-hero .city-reservation-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.economy-hero .city-reservation-card h2 {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.economy-hero .city-reservation-card p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.economy-hero .mini-booking-form {
  position: relative;
  display: grid;
  gap: 13px;
}

.economy-hero .mini-booking-form input,
.economy-hero .mini-booking-form select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5, 7, 11, 0.82);
  color: #fff;
  outline: none;
}

.economy-hero .mini-booking-form input::placeholder {
  color: rgba(255,255,255,0.48);
}

.economy-hero .mini-booking-form input:focus,
.economy-hero .mini-booking-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.economy-hero .mini-booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* ================= ECONOMY FLEET SECTION ================= */

#fleet-cars {
  position: relative;
  overflow: hidden;
}

#fleet-cars::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(45px);
  pointer-events: none;
}

#fleet-cars::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.13);
  filter: blur(48px);
  pointer-events: none;
}

#fleet-cars .container {
  position: relative;
  z-index: 2;
}

#fleet-cars .cars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#fleet-cars .car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  transition: 0.3s ease;
}

#fleet-cars .car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), transparent 36%, rgba(255, 255, 255, 0.05));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

#fleet-cars .car-card:hover::before {
  opacity: 1;
}

#fleet-cars .car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

#fleet-cars .car-card img {
  width: 100% !important;
  height: 270px !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 58%),
    rgba(255,255,255,0.04) !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  transition: 0.5s ease;
}

#fleet-cars .car-card:hover img {
  transform: scale(1.06);
}

#fleet-cars .car-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

#fleet-cars .car-info h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

#fleet-cars .car-info p {
  margin: 0 0 18px;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

#fleet-cars .car-meta {
  margin-top: auto;
  margin-bottom: 20px;
}

#fleet-cars .car-meta span {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2);
}

#fleet-cars .car-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

#fleet-cars .car-footer strong {
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 950;
  white-space: nowrap;
}

#fleet-cars .rent-btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

/* ================= SEE FULL FLEET LINK ================= */

.featured-note {
  margin-top: 34px;
  text-align: center;
}

.fleet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.30);
  color: var(--gold-2);
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.fleet-link:hover {
  transform: translateY(-3px);
  background: var(--gradient);
  color: #08111f;
}

/* ================= ECONOMY FAQ ================= */

#economy-faq {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

#economy-faq .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#economy-faq .service-box {
  min-height: 100%;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
}

#economy-faq .service-box h3 {
  font-size: 20px;
  line-height: 1.35;
}

#economy-faq .service-box p {
  margin-bottom: 0;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .economy-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .economy-hero .hero-text {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
  }

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

  .economy-hero .hero-features,
  .economy-hero .hero-buttons {
    justify-content: center;
  }

  .economy-hero .city-reservation-card {
    justify-self: center;
    max-width: 620px;
  }

  #fleet-cars .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #economy-faq .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-home.city-hero.economy-hero {
    min-height: auto;
    padding: 95px 0 80px;
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.78), rgba(5, 7, 11, 0.97)),
      url("images/volkswagen-golf-8-1.webp") center / cover no-repeat;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .hero-home.city-hero.economy-hero {
    padding: 82px 0 64px;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 42%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/volkswagen-golf-8-1.webp") 58% center / cover no-repeat;
  }

  .economy-hero .hero-content {
    width: calc(100% - 28px);
    gap: 26px;
  }

  .economy-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .economy-hero .tagline {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .economy-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .economy-hero .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .economy-hero .hero-features span {
    text-align: center;
  }

  .economy-hero .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .economy-hero .hero-buttons a {
    width: 100%;
  }

  .economy-hero .city-reservation-card {
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .economy-hero .city-reservation-card h2 {
    text-align: center;
    font-size: 26px;
  }

  .economy-hero .city-reservation-card p {
    text-align: center;
  }

  #fleet-cars .cars-grid,
  #economy-faq .services-grid {
    grid-template-columns: 1fr;
  }

  #fleet-cars .car-card {
    border-radius: 24px;
  }

  #fleet-cars .car-card img {
    height: 235px !important;
  }

  #fleet-cars .car-info {
    padding: 22px 20px;
    text-align: center;
  }

  #fleet-cars .car-meta {
    justify-content: center;
  }

  #fleet-cars .car-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #fleet-cars .car-footer strong {
    text-align: center;
  }

  #fleet-cars .rent-btn {
    width: 100%;
  }

  #economy-faq {
    width: calc(100% - 28px);
  }

  #economy-faq .service-box {
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .economy-hero h1 {
    font-size: 32px;
  }

  .economy-hero .city-reservation-card {
    padding: 22px 18px;
  }

  #fleet-cars .car-card img {
    height: 210px !important;
  }

  #fleet-cars .car-info h3 {
    font-size: 21px;
  }

  #fleet-cars .car-info p {
    font-size: 14.5px;
  }

  #fleet-cars .car-meta span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}
/* =====================================================
   SSS FIX - CAR OFFERS SLIDER IMAGES
   Fix small car images in Popular / Luxury / Economy cars
   Add this at the END of style.css
===================================================== */

/* مساحة الصورة داخل الكارد */
#cars .car-image {
  width: 100% !important;
  height: 245px !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) !important;
}

/* الصورة تكبر وتملأ المكان */
#cars .car-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  background: transparent !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.98) !important;
  transition: transform 0.45s ease !important;
}

/* Hover professional */
#cars .car-card:hover .car-image img {
  transform: scale(1.06) !important;
}

/* للصور العمودية مثل Seat Cupra نخليها تبان أحسن */
#cars .car-image img[src*="seat"],
#cars .car-image img[src*="cupra"] {
  object-fit: cover !important;
  object-position: center 45% !important;
}

/* Audi Q3 / صور السيارات الليلية */
#cars .car-image img[src*="audi-q3"],
#cars .car-image img[src*="q3"] {
  object-fit: cover !important;
  object-position: center !important;
}

/* Renault Clio وأي صورة أفقية */
#cars .car-image img[src*="renault"],
#cars .car-image img[src*="clio"] {
  object-fit: cover !important;
  object-position: center !important;
}

/* تحسين شكل الكارد بعد تكبير الصور */
#cars #carsGrid .car-card {
  overflow: hidden !important;
  border-radius: 28px !important;
}

/* Tablet */
@media (max-width: 1024px) {
  #cars .car-image {
    height: 235px !important;
  }
}

/* Phone */
@media (max-width: 760px) {
  #cars .car-image {
    height: 230px !important;
  }

  #cars .car-image img {
    object-fit: cover !important;
  }
}

/* Small phone */
@media (max-width: 390px) {
  #cars .car-image {
    height: 205px !important;
  }
}
/* =====================================================
   404 PAGE - PREMIUM ERROR PAGE CSS
   Add this at the END of style.css
===================================================== */

.error-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.16), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(168, 117, 34, 0.14), transparent 36%),
    linear-gradient(180deg, #05070b 0%, #0b0f17 52%, #05070b 100%);
}

.error-page::before {
  content: "";
  position: absolute;
  top: 90px;
  left: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.11);
  filter: blur(50px);
  pointer-events: none;
}

.error-page::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 90px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.13);
  filter: blur(55px);
  pointer-events: none;
}

.error-box {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.error-box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(22px);
  pointer-events: none;
}

.error-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(244, 197, 66, 0.12), transparent 34%, rgba(255,255,255,0.035));
  pointer-events: none;
}

.error-logo {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.error-logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.error-box .tagline {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.30);
  background: rgba(212, 175, 55, 0.11);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-box h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: transparent;
  font-size: clamp(88px, 18vw, 180px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.09em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 24px 70px rgba(212, 175, 55, 0.18);
}

.error-box h2 {
  position: relative;
  z-index: 2;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.error-box p {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto 34px;
  color: rgba(238, 242, 247, 0.76);
  font-size: 16.5px;
  line-height: 1.82;
}

.error-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.error-actions .btn {
  min-width: 160px;
  min-height: 52px;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .error-page {
    padding: 100px 18px 70px;
  }

  .error-box {
    border-radius: 30px;
  }

  .error-actions {
    gap: 12px;
  }
}

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .error-page {
    padding: 82px 14px 58px;
  }

  .error-box {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .error-logo {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }

  .error-logo img {
    width: 64px;
    height: 64px;
  }

  .error-box .tagline {
    font-size: 10.5px;
    letter-spacing: 0.09em;
  }

  .error-box h1 {
    font-size: clamp(78px, 24vw, 115px);
  }

  .error-box h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .error-box p {
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 26px;
  }

  .error-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .error-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .error-box {
    padding: 25px 17px;
  }

  .error-box h1 {
    font-size: 72px;
  }

  .error-box h2 {
    font-size: 24px;
  }

  .error-box p {
    font-size: 14.4px;
  }
}
/* =====================================================
   AIRPORT CAR RENTAL MOROCCO PAGE - PREMIUM CSS
   Add this at the END of style.css
===================================================== */

/* ================= AIRPORT HERO ================= */

.airport-hero {
  position: relative !important;
  min-height: calc(100vh - 82px) !important;
  padding: 110px 0 95px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  color: #fff !important;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.74), rgba(5, 7, 11, 0.94)),
    radial-gradient(circle at 78% 35%, rgba(212, 175, 55, 0.18), transparent 34%),
    url("images/audi-q8.webp") center right / cover no-repeat !important;
}

.airport-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 197, 66, 0.15), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(168, 117, 34, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.96));
}

.airport-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #05070b);
}

.airport-hero .hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.08fr 0.92fr !important;
  gap: 46px !important;
  align-items: center !important;
}

.airport-hero .hero-text {
  max-width: 760px !important;
}

.airport-hero .tagline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 18px !important;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(212, 175, 55, 0.34) !important;
  background: rgba(212, 175, 55, 0.12) !important;
  color: var(--gold-2, #f4c542) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.airport-hero h1 {
  max-width: 850px !important;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: clamp(42px, 6.5vw, 76px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
  font-weight: 950 !important;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65) !important;
}

.airport-hero .hero-text p {
  max-width: 710px !important;
  margin: 0 0 16px !important;
  color: rgba(238, 242, 247, 0.78) !important;
  font-size: clamp(15.5px, 1.7vw, 18px) !important;
  line-height: 1.78 !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42) !important;
}

.airport-hero .hero-features {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 27px 0 32px !important;
}

.airport-hero .hero-features span {
  display: inline-flex !important;
  align-items: center !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: rgba(238, 242, 247, 0.78) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.airport-hero .hero-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

/* ================= QUICK AIRPORT RESERVATION CARD ================= */

.airport-hero .city-reservation-card,
.airport-hero .hero-card {
  position: relative !important;
  width: 100% !important;
  max-width: 470px !important;
  justify-self: end !important;
  padding: 32px !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)),
    rgba(5, 7, 11, 0.58) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.airport-hero .hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  filter: blur(20px);
  pointer-events: none;
}

.airport-hero .hero-card h2 {
  position: relative !important;
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(25px, 3vw, 34px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em !important;
  font-weight: 950 !important;
}

.airport-hero .hero-card p {
  position: relative !important;
  margin: 0 0 22px !important;
  color: rgba(238, 242, 247, 0.74) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.airport-hero .mini-booking-form {
  position: relative !important;
  display: grid !important;
  gap: 13px !important;
}

.airport-hero .mini-booking-form input,
.airport-hero .mini-booking-form select {
  width: 100% !important;
  min-height: 54px !important;
  padding: 15px 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(5, 7, 11, 0.82) !important;
  color: #fff !important;
  outline: none !important;
  font-size: 14px !important;
}

.airport-hero .mini-booking-form input::placeholder {
  color: rgba(255,255,255,0.48) !important;
}

.airport-hero .mini-booking-form input:focus,
.airport-hero .mini-booking-form select:focus {
  border-color: var(--gold-2, #f4c542) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16) !important;
}

.airport-hero .mini-booking-form select {
  appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2, #f4c542) 50%),
    linear-gradient(135deg, var(--gold-2, #f4c542) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50% !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
}

.airport-hero .mini-booking-form button {
  width: 100% !important;
  min-height: 54px !important;
  margin-top: 4px !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  background: var(--gradient, linear-gradient(135deg, #f4c542, #d4af37, #a87522)) !important;
  color: #08111f !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.24) !important;
  transition: 0.25s ease !important;
}

.airport-hero .mini-booking-form button:hover {
  transform: translateY(-3px) !important;
}

/* ================= STATS ================= */

.stats {
  position: relative;
  padding: 30px 0 25px;
  background: #05070b;
}

.stats-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  padding: 25px 18px;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.20);
}

.stat-box h2 {
  margin: 0 0 8px;
  color: var(--gold-2, #f4c542);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
}

.stat-box p {
  margin: 0;
  color: rgba(238, 242, 247, 0.70);
  font-size: 14px;
  font-weight: 800;
}

/* ================= AIRPORT FLEET ================= */

#airport-fleet {
  position: relative;
  overflow: hidden;
}

#airport-fleet::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.10);
  filter: blur(48px);
  pointer-events: none;
}

#airport-fleet::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 8%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(168, 117, 34, 0.13);
  filter: blur(50px);
  pointer-events: none;
}

#airport-fleet .section-title,
#airport-fleet .cars-grid {
  position: relative;
  z-index: 2;
}

#airport-fleet .cars-grid {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

#airport-fleet .car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  transition: 0.3s ease;
}

#airport-fleet .car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), transparent 36%, rgba(255, 255, 255, 0.05));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

#airport-fleet .car-card:hover::before {
  opacity: 1;
}

#airport-fleet .car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

#airport-fleet .car-card img {
  width: 100% !important;
  height: 265px !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 58%),
    rgba(255,255,255,0.04) !important;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  transition: 0.5s ease;
}

#airport-fleet .car-card:hover img {
  transform: scale(1.06);
}

#airport-fleet .car-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

#airport-fleet .car-info h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

#airport-fleet .car-info p {
  margin: 0 0 18px;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

#airport-fleet .car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 20px;
}

#airport-fleet .car-meta span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: var(--gold-2, #f4c542);
  font-size: 12px;
  font-weight: 850;
}

#airport-fleet .car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

#airport-fleet .car-footer strong {
  color: var(--gold-2, #f4c542);
  font-size: 20px;
  font-weight: 950;
  white-space: nowrap;
}

#airport-fleet .small-btn,
#airport-fleet .car-footer .btn {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--gradient, linear-gradient(135deg, #f4c542, #d4af37, #a87522));
  color: #08111f;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  transition: 0.25s ease;
}

#airport-fleet .small-btn:hover,
#airport-fleet .car-footer .btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* ================= SERVICES / AIRPORT COVERAGE / FAQ ================= */

#airport-services,
#airport-faq {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

#airport-services .services-grid,
#airport-faq .services-grid,
#airport-services + .section .services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#airport-services .service-box,
#airport-faq .service-box,
#airport-services + .section .service-box {
  min-height: 100%;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 18px 45px rgba(0,0,0,0.20);
  transition: 0.25s ease;
}

#airport-services .service-box:hover,
#airport-faq .service-box:hover,
#airport-services + .section .service-box:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.36);
}

#airport-services .service-box .icon,
#airport-services + .section .service-box .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-2, #f4c542);
  font-size: 22px;
}

#airport-services .service-box h3,
#airport-faq .service-box h3,
#airport-services + .section .service-box h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 950;
}

#airport-services .service-box p,
#airport-faq .service-box p,
#airport-services + .section .service-box p {
  margin: 0;
  color: rgba(238, 242, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

/* ================= AIRPORT BOOKING SECTION ================= */

#airport-booking {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(212, 175, 55, 0.13), transparent 34%),
    linear-gradient(rgba(5, 7, 11, 0.91), rgba(5, 7, 11, 0.96)),
    url("images/audi-q8.webp") center / cover no-repeat;
}

#airport-booking .booking-wrapper {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

#airport-booking .booking-text span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-2, #f4c542);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#airport-booking .booking-text h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 950;
}

#airport-booking .booking-text p {
  margin: 0 0 20px;
  color: rgba(238, 242, 247, 0.74);
  font-size: 16px;
  line-height: 1.78;
}

#airport-booking .booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#airport-booking .booking-points span {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(238, 242, 247, 0.76);
  font-size: 13px;
  font-weight: 850;
}

#airport-booking .booking-form {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
    rgba(5, 7, 11, 0.62);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 24px 70px rgba(0,0,0,0.30);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#airport-booking .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#airport-booking .booking-form input,
#airport-booking .booking-form select,
#airport-booking .booking-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5, 7, 11, 0.76);
  color: #fff;
  outline: none;
  font-size: 15px;
}

#airport-booking .booking-form textarea {
  resize: vertical;
  min-height: 120px;
}

#airport-booking .booking-form input::placeholder,
#airport-booking .booking-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

#airport-booking .booking-form input:focus,
#airport-booking .booking-form select:focus,
#airport-booking .booking-form textarea:focus {
  border-color: var(--gold-2, #f4c542);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

#airport-booking .booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-2, #f4c542) 50%),
    linear-gradient(135deg, var(--gold-2, #f4c542) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#airport-booking .booking-form button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient, linear-gradient(135deg, #f4c542, #d4af37, #a87522));
  color: #08111f;
  font-weight: 950;
  cursor: pointer;
  font-size: 15px;
  transition: 0.25s ease;
}

#airport-booking .booking-form button:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* ================= FOOTER FIX ================= */

.site-footer {
  position: relative;
  padding: 75px 0 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.14), transparent 32%),
    radial-gradient(circle at 90% 100%, rgba(168, 117, 34, 0.08), transparent 34%),
    #05070c;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 42px;
  align-items: flex-start;
}

.footer-logo {
  width: 125px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0 0 22px;
  color: rgba(238, 242, 247, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgba(238, 242, 247, 0.66);
  font-size: 15px;
  line-height: 1.45;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: var(--gold-2, #f4c542);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: 0.25s ease;
}

.footer-social .social-icon:hover {
  background: var(--gradient, linear-gradient(135deg, #f4c542, #d4af37, #a87522));
  transform: translateY(-3px);
}

.footer-social img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 58px auto 0;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom p {
  margin: 0;
  color: rgba(238, 242, 247, 0.55);
  font-size: 14px;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #06111f;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.whatsapp-float::before {
  content: "☘";
  font-size: 20px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.42);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .airport-hero .hero-content {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .airport-hero .hero-text {
    max-width: 850px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .airport-hero .hero-text p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .airport-hero .hero-features,
  .airport-hero .hero-buttons {
    justify-content: center !important;
  }

  .airport-hero .hero-card {
    justify-self: center !important;
    max-width: 620px !important;
  }

  #airport-fleet .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #airport-services .services-grid,
  #airport-faq .services-grid,
  #airport-services + .section .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #airport-booking .booking-wrapper {
    grid-template-columns: 1fr;
  }

  #airport-booking .booking-text {
    text-align: center;
  }

  #airport-booking .booking-points {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 38px 32px;
  }
}

@media (max-width: 900px) {
  .airport-hero {
    min-height: auto !important;
    padding: 95px 0 80px !important;
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.97), rgba(5, 7, 11, 0.78), rgba(5, 7, 11, 0.97)),
      url("images/audi-q8.webp") center / cover no-repeat !important;
  }

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

/* =====================================================
   PHONE RESPONSIVE
===================================================== */

@media (max-width: 760px) {
  .airport-hero {
    padding: 82px 0 64px !important;
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 11, 0.98) 0%,
        rgba(5, 7, 11, 0.84) 42%,
        rgba(5, 7, 11, 0.98) 100%
      ),
      url("images/audi-q8.webp") 58% center / cover no-repeat !important;
  }

  .airport-hero .hero-content {
    width: calc(100% - 28px) !important;
    gap: 26px !important;
  }

  .airport-hero h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
  }

  .airport-hero .tagline {
    font-size: 10.5px !important;
    letter-spacing: 0.09em !important;
  }

  .airport-hero .hero-text p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .airport-hero .hero-features {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .airport-hero .hero-features span {
    justify-content: center !important;
    text-align: center !important;
  }

  .airport-hero .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .airport-hero .hero-buttons a {
    width: 100% !important;
  }

  .airport-hero .hero-card {
    max-width: 100% !important;
    padding: 24px 20px !important;
    border-radius: 24px !important;
  }

  .airport-hero .hero-card h2,
  .airport-hero .hero-card p {
    text-align: center !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  #airport-fleet .cars-grid,
  #airport-services .services-grid,
  #airport-faq .services-grid,
  #airport-services + .section .services-grid {
    grid-template-columns: 1fr;
  }

  #airport-fleet .cars-grid,
  #airport-booking .booking-wrapper,
  #airport-services,
  #airport-faq {
    width: calc(100% - 28px);
  }

  #airport-fleet .car-card {
    border-radius: 24px;
  }

  #airport-fleet .car-card img {
    height: 235px !important;
  }

  #airport-fleet .car-info {
    padding: 22px 20px;
    text-align: center;
  }

  #airport-fleet .car-meta {
    justify-content: center;
  }

  #airport-fleet .car-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  #airport-fleet .car-footer strong {
    text-align: center;
  }

  #airport-fleet .small-btn,
  #airport-fleet .car-footer .btn {
    width: 100%;
    justify-content: center;
  }

  #airport-services .service-box,
  #airport-faq .service-box,
  #airport-services + .section .service-box {
    text-align: center;
  }

  #airport-services .service-box .icon,
  #airport-services + .section .service-box .icon {
    margin-left: auto;
    margin-right: auto;
  }

  #airport-booking .booking-form {
    padding: 22px;
    border-radius: 22px;
  }

  #airport-booking .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #airport-booking .booking-form input,
  #airport-booking .booking-form select,
  #airport-booking .booking-form textarea {
    padding: 14px;
    font-size: 14px;
    border-radius: 13px;
  }

  #airport-booking .booking-form button {
    min-height: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    width: calc(100% - 28px);
  }

  .footer-brand,
  .footer-column {
    align-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
    width: 105px;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
    font-size: 14.5px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column a,
  .footer-column span {
    width: auto;
    text-align: center;
    font-size: 14.5px;
  }

  .footer-column a:hover {
    transform: none;
  }

  .footer-bottom {
    width: calc(100% - 28px);
    margin-top: 40px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::before {
    font-size: 24px;
  }
}

/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 390px) {
  .airport-hero h1 {
    font-size: 32px !important;
  }

  .airport-hero .hero-card {
    padding: 22px 18px !important;
  }

  #airport-fleet .car-card img {
    height: 210px !important;
  }

  #airport-fleet .car-info h3 {
    font-size: 21px;
  }

  #airport-fleet .car-info p,
  #airport-services .service-box p,
  #airport-faq .service-box p {
    font-size: 14.5px;
  }

  #airport-fleet .car-meta span {
    font-size: 11.5px;
    padding: 7px 10px;
  }
}