@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cairo:wght@300;400;600;700;800&display=swap");

:root {
  --primary-color: #d4af37;        /* Luxury Metallic Gold */
  --primary-color-dark: #aa7c11;   /* Rich Bronze Gold */
  --primary-color-light: #f3e5ab;  /* Soft Champagne Gold */
  --dark-bg: #07080a;              /* Absolute Deep Obsidian Black */
  --dark-card: #111317;            /* Premium Carbon Card Gray */
  --dark-surface: #181b21;         /* Glassmorphic border surface */
  --text-light: #f4f5f6;           /* Crisp light text */
  --text-muted: #8d929a;           /* Sophisticated muted text */
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
  --body-font: "Outfit", sans-serif;
  --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
  --dark-gradient: linear-gradient(180deg, #111317 0%, #07080a 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
  --gold-glow-strong: 0 0 35px rgba(212, 175, 55, 0.45);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
}

/* RTL Override for Arabic */
body.rtl {
  font-family: "Cairo", sans-serif;
  direction: rtl;
}

body.rtl .header__container h1 {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}

body.rtl .section__header {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}

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

/* Gold gradient only for branded headings — not all spans globally */
.section__header span,
.header__container h1 span,
.nav__logo span,
.sidebar-logo span,
.curtain-logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 6rem 1.5rem;
}

.section__header {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-light);
  letter-spacing: -1px;
  line-height: 3.75rem;
  text-transform: uppercase;
}

.btn {
  padding: 0.85rem 1.75rem;
  outline: none;
  border: 1px solid var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--dark-bg);
  background: var(--gold-gradient);
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--gold-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.rtl .btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}

.btn:hover {
  color: var(--primary-color-light);
  background: transparent;
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  border-color: var(--primary-color);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

body {
  font-family: var(--body-font);
}

/* Nav & Header styling */
header {
  position: relative;
  background-image: linear-gradient(to bottom, rgba(7, 8, 10, 0.8), rgba(7, 8, 10, 0.95)), url("assets/cars/hero_luxury.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

nav {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.nav__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo a {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-light);
  letter-spacing: 1px;
}

.nav__logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__menu__btn {
  font-size: 1.75rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.nav__menu__btn:hover {
  transform: scale(1.1);
}

.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  background-color: rgba(17, 19, 23, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transform: translateY(-120%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
  opacity: 1;
}

.nav__links a {
  font-weight: 500;
  color: var(--text-light);
  font-size: 1.1rem;
  letter-spacing: 1px;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--primary-color);
}

/* Language and Admin Controls in Nav */
.nav__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn:hover {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  border-color: var(--primary-color);
}

/* Hero section */
.header__container {
  position: relative;
  padding: 10rem 1.5rem 6rem;
  text-align: center;
}

.header__container h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-light);
  line-height: 4.75rem;
  text-transform: uppercase;
}

/* Booking Search Panel */
.header__container form {
  max-width: 950px;
  margin-inline: auto;
  margin-bottom: 4rem;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: end;
  background: rgba(18, 20, 26, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.05);
  text-align: left;
}

body.rtl .header__container form {
  text-align: right;
}

.header__container .input__group {
  display: grid;
  gap: 8px;
  width: 100%;
}

.header__container label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e0d6c2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header__container input,
.header__container select {
  width: 100%;
  outline: none;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  padding: 0.9rem 1.1rem;
  font-size: 0.98rem;
  font-family: var(--body-font);
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition);
  box-sizing: border-box;
}

.header__container select option,
.modal-input-group select option {
  background-color: #12141a !important;
  color: #fff !important;
}

.header__container input:focus,
.header__container select:focus {
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

/* Make booking options, summaries, and trackers span full width */
.booking-options {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.header__container form > div[style*="border-top"] {
  grid-column: 1 / -1;
  width: 100%;
}

.header__container form > div[style*="border: 1px solid"] {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #e0d6c2;
  font-weight: 600;
  user-select: none;
}

.checkbox-label input {
  width: auto;
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.checkbox-label:hover {
  color: var(--text-light);
}

.header__container .btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 2rem;
}

/* WIDE RANGE OF VEHICLES */
.range__container .section__header {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.range__grid {
  display: grid;
  gap: 1.5rem;
  cursor: pointer;
}

.range__card {
  position: relative;
  isolation: isolate;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/10;
}

.range__card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.range__card:hover img {
  transform: scale(1.08);
}

.range__details {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.range__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: 1px;
}

.range__details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.range__details a {
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 1.3rem;
  color: var(--dark-bg);
  background: var(--gold-gradient);
  border-radius: 50%;
  box-shadow: var(--gold-glow);
}

.range__details a:hover {
  transform: scale(1.1);
  box-shadow: var(--gold-glow-strong);
}

/* FIND CAR NEAR YOUR LOCATIONS */
.location__container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.location__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.location__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location__content .section__header {
  margin-bottom: 1.5rem;
}

.location__content p {
  margin-bottom: 2rem;
  color: var(--text-muted);
  line-height: 1.8rem;
  font-size: 1.05rem;
}

/* CHOOSE YOUR DREAM CAR - Swiper Section */
.select__container {
  padding-block: 6rem;
  background-image: linear-gradient(to bottom, rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.8)), url("select-bg.png");
  background-position: center center;
  background-size: cover;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.select__container .section__header {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.swiper {
  width: 100%;
  padding-bottom: 3rem !important;
}

.swiper-slide {
  max-width: 800px;
  opacity: 0.4;
  transition: var(--transition);
  transform: scale(0.85);
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.select__card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  text-align: center;
}

.select__card h3 {
  font-family: var(--header-font);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.select__card .car-year {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.select__card img {
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.select__card:hover img {
  transform: scale(1.03);
}

.select__info {
  max-width: 650px;
  margin-inline: auto;
  display: none;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.select__card.show__info .select__info {
  display: flex;
}

.select__info__card {
  text-align: center;
  min-width: 100px;
}

.select__info__card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  width: 55px;
  height: 55px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--dark-bg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.select__info__card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.select__info__card h4 span {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  -webkit-text-fill-color: initial;
}

/* Selector Price Panel below Swiper */
.select__form {
  max-width: 850px;
  margin-inline: auto;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius);
  transform: translateY(50%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 10;
  position: relative;
}

.select__price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--text-muted);
}

.select__price span.price-icon {
  font-size: 2.25rem;
  color: var(--primary-color);
}

.select__price div {
  font-size: 1.1rem;
  color: var(--text-light);
}

.select__price #select-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color-light);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.select__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select__btns .btn {
  min-width: 150px;
  text-align: center;
}

/* UNFORGETTABLE STORIES & JOURNEYS */
.story__container .section__header {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.story__grid {
  display: grid;
  gap: 3rem 1.5rem;
}

.story__card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.story__card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
}

.story__date {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story__date span {
  padding-right: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.25rem;
  border-right: 2px solid var(--primary-color);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.rtl .story__date span {
  padding-right: 0;
  padding-left: 15px;
  border-right: none;
  border-left: 2px solid var(--primary-color);
}

.story__date div p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.story__card h4 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  font-family: var(--header-font);
  font-weight: 700;
  line-height: 1.75rem;
  color: var(--white);
}

.story__card p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.story__card img {
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}

/* Brands marquee banner */
.banner__container {
  padding-block: 6rem;
  overflow: hidden;
  background-color: rgba(17, 19, 23, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.banner__wrapper {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 6rem;
  animation: scroll 35s linear infinite;
}

.banner__wrapper img {
  height: 40px;
  opacity: 0.3;
  filter: grayscale(1) invert(1);
  transition: var(--transition);
}

.banner__wrapper img:hover {
  opacity: 0.8;
  filter: none;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 3rem));
  }
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
}

/* Custom scrollbar for AI chat */
.ai-chat-messages::-webkit-scrollbar {
  width: 4px;
}
.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

/* APP DOWNLOAD SECTION */
.download {
  position: relative;
  isolation: isolate;
  padding-inline: 1.5rem;
  overflow: hidden;
}

.download::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--dark-bg);
  z-index: -1;
}

.download__container {
  padding: 0 2rem;
  display: grid;
  background: var(--dark-gradient);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
}

.download__content {
  padding-block: 5rem;
}

.download__content .section__header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.download__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.download__links img {
  max-width: 140px;
  border-radius: 6px;
  transition: var(--transition);
}

.download__links img:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.download__image {
  display: none;
}

/* NEWSLETTER */
.news {
  background-color: var(--dark-card);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.news__container {
  padding-bottom: 4rem;
  display: grid;
  gap: 2.5rem;
}

.news__container .section__header {
  font-size: 2.25rem;
  line-height: 2.75rem;
  color: var(--white);
  text-align: center;
}

.news__container form {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news__container input {
  width: 100%;
  outline: none;
  border: none;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  color: var(--white);
  background-color: transparent;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.news__container input:focus {
  border-color: var(--primary-color);
}

.news__container .btn {
  padding: 12px 18px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
footer {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
  display: grid;
  gap: 3rem 1.5rem;
  padding-block: 5rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 0.85rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

body.rtl .footer__links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

.footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer__socials a {
  border-radius: 8px;
  padding: 10px;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__socials a:hover {
  color: var(--dark-bg);
  background: var(--gold-gradient);
  border-color: var(--primary-color);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.footer__bar {
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), var(--gold-glow);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.30s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

body.rtl .modal-close {
  right: auto;
  left: 1rem;
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-title {
  font-family: var(--header-font);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 0.5rem;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  font-size: 0.95rem;
}

.detail-item strong {
  color: var(--primary-color-light);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.detail-item span {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--text-light);
  font-weight: 500;
}

.modal-car-image {
  max-width: 350px;
  margin-inline: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  margin-bottom: 1.5rem;
}

/* AI Chatbot Widget Styles */
.ai-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  font-family: var(--body-font);
}

body.rtl .ai-chat-widget {
  right: auto;
  left: 2rem;
}

.ai-chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), var(--gold-glow);
  transition: var(--transition);
}

.ai-chat-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), var(--gold-glow-strong);
}

.ai-chat-container {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 380px;
  height: 520px;
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

body.rtl .ai-chat-container {
  right: auto;
  left: 0;
  transform-origin: bottom left;
}

.ai-chat-container.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.ai-chat-header {
  background: var(--dark-gradient);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-chat-avatar {
  width: 35px;
  height: 35px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 1rem;
}

.ai-chat-header h3 {
  font-size: 1.05rem;
  color: var(--white);
  font-family: var(--body-font);
}

.ai-chat-header p {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.ai-chat-close {
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

.ai-chat-close:hover {
  color: var(--primary-color);
}

.ai-chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(7, 8, 10, 0.5);
}

.ai-message {
  max-width: 80%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.35rem;
  animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-message.bot {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.ai-message.user {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.ai-message-card {
  margin-top: 0.75rem;
  background-color: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
}

.ai-message-card img {
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.ai-message-card-title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.ai-message-card-specs {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ai-chat-quick-replies {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 0.5rem 1.25rem;
  background-color: rgba(7, 8, 10, 0.5);
}

.quick-reply-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-color-light);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.quick-reply-btn:hover {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  border-color: var(--primary-color);
}

.ai-chat-input-area {
  padding: 1rem;
  background: var(--dark-card);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
}

.ai-chat-input-area input {
  flex: 1;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  outline: none;
  font-size: 0.9rem;
}

.ai-chat-input-area input:focus {
  border-color: var(--primary-color);
}

.ai-chat-send {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--gold-glow);
  transition: var(--transition);
}

.ai-chat-send:hover {
  transform: scale(1.05);
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (width > 540px) {
  .story__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (width > 768px) {
  nav {
    position: fixed;
    padding: 0;
  }

  .nav__container {
    padding-block: 1rem;
  }

  .nav__header {
    width: auto;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    width: auto;
    flex-direction: row;
    background-color: transparent;
    transform: none;
    opacity: 1;
    gap: 2rem;
    border-bottom: none;
    z-index: 1;
  }

  .nav__links a {
    font-size: 0.95rem;
  }

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

  .location__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .location__image {
    grid-area: 1/2/2/3;
  }

  .location__image img {
    height: 450px;
  }

  .select__form {
    padding: 2rem 3rem;
  }

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

  .download__container {
    margin-top: 10rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-inline: 4rem;
  }

  .download__content {
    max-width: 500px;
    margin-left: auto;
    padding-block: 6rem;
  }

  body.rtl .download__content {
    margin-left: 0;
    margin-right: auto;
    text-align: right;
  }

  .download__content .section__header {
    text-align: left;
  }

  body.rtl .download__content .section__header {
    text-align: right;
  }

  .download__links {
    justify-content: flex-start;
  }

  body.rtl .download__links {
    justify-content: flex-start;
  }

  .download__image {
    display: flex;
    position: relative;
    height: 100%;
    min-height: 400px;
  }

  .download__image img {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 340px;
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: none;
  }

  .news__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
  }

  .news__container .section__header {
    text-align: left;
    font-size: 2.75rem;
    line-height: 3.5rem;
  }

  body.rtl .news__container .section__header {
    text-align: right;
  }

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

/* --- LUXURY UPGRADE STYLES --- */

/* 1. Category Filter Grid Section */
.categories-filter-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-card {
  position: relative;
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6), var(--gold-glow);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: left;
}

body.rtl .category-card-content {
  text-align: right;
}

.category-card-content h3 {
  font-family: var(--header-font);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.category-card-content p {
  color: var(--primary-color-light);
  font-size: 0.85rem;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* 2. World-Class Car Card Redesign (Glassmorphism & Glow) */
.select__card {
  position: relative;
  background: rgba(17, 19, 23, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 20px !important;
  padding: 2.5rem 1.75rem 2rem !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6) !important;
  transition: var(--transition) !important;
  overflow: hidden;
}

.select__card:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 20px 45px rgba(0,0,0,0.7), 0 0 25px rgba(212,175,55,0.25) !important;
  transform: translateY(-5px) !important;
}

/* Badge Layouts */
.card-badges-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}

.card-price-badge {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--gold-glow);
}

.card-price-badge .price-val {
  font-size: 1.25rem;
  line-height: 1;
}

.card-price-badge .price-unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

.card-cat-badges {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.cat-badge-lbl {
  background: rgba(7, 8, 10, 0.8);
  border: 1px solid var(--primary-color);
  color: var(--primary-color-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* License Plate Blurring/Covering Heuristics */
.car-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.car-image-wrapper img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.license-plate-blur {
  display: none !important;
}

/* Rebuilt Advanced Modal Layout Styles */
.modal-content {
  background: rgba(17, 19, 23, 0.96) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212,175,55,0.15) !important;
  width: 94% !important;
  max-width: 1100px !important;
  border-radius: 22px !important;
  padding: 2rem 2.25rem !important;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 92vh;
  box-sizing: border-box;
}

.modal-info-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  margin-top: 1.25rem;
  align-items: start;
}

@media (max-width: 768px) {
  .modal-info-columns {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.modal-section-title {
  font-family: var(--header-font);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.premium-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.premium-specs-table th {
  text-align: left;
  padding: 0.65rem 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 45%;
}

body.rtl .premium-specs-table th {
  text-align: right;
}

.premium-specs-table td {
  text-align: right;
  padding: 0.65rem 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.rtl .premium-specs-table td {
  text-align: left;
}

/* Modal Calculator form details */
.modal-calc-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
}

.modal-input-group {
  margin-bottom: 1rem;
  display: grid;
  gap: 6px;
}

.modal-input-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color-light);
  text-transform: uppercase;
}

.modal-input-group input {
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-light);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
}

.modal-input-group input:focus {
  border-color: var(--primary-color);
}

.modal-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.modal-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-checkbox-label input {
  accent-color: var(--primary-color);
}

.modal-price-summary {
  margin-top: 1.25rem;
  padding: 0.85rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

.modal-price-summary span {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-color);
  display: inline-block;
}

/* Reviews Section Layout and styling */
.reviews-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.reviews-list-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 550px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom Scrollbar for Reviews */
.reviews-list-col::-webkit-scrollbar {
  width: 6px;
}
.reviews-list-col::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
}
.reviews-list-col::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.3);
  border-radius: 3px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(212,175,55,0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.reviewer-name h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
}

.reviewer-name span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: none;
  -webkit-text-fill-color: initial;
}

.review-stars {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Review Form Styling */
.reviews-form-col {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.reviews-form-col h3 {
  font-family: var(--header-font);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.review-input-group {
  margin-bottom: 1.25rem;
  display: grid;
  gap: 6px;
}

.review-input-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color-light);
  text-transform: uppercase;
}

.review-input,
.review-textarea {
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-light);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.review-input:focus,
.review-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(212,175,55,0.15);
}

/* Premium Star rating selection */
.star-rating-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating-select input {
  display: none;
}

.star-rating-select label {
  font-size: 1.75rem;
  color: #333;
  cursor: pointer;
  transition: var(--transition);
}

.star-rating-select label:hover,
.star-rating-select label:hover ~ label,
.star-rating-select input:checked ~ label {
  color: var(--primary-color);
}

/* Premium Car Card Design Updates */
.select__card {
  position: relative;
  background: linear-gradient(135deg, rgba(22, 24, 28, 0.75) 0%, rgba(10, 11, 14, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--car-accent, rgba(212, 175, 55, 0.3));
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
}

body.rtl .select__card {
  text-align: right;
}

.select__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--car-accent, rgba(212, 175, 55, 0.15)) 0%, transparent 60%);
  opacity: 0.3;
  transition: opacity 0.5s;
  pointer-events: none;
}

.select__card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--car-accent, var(--primary-color));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 
              0 0 35px var(--car-accent, rgba(212, 175, 55, 0.25));
}

.select__card:hover::before {
  opacity: 0.8;
}

/* Image Wrapper and Toggle */
.car-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse at center, #1a1c23 0%, #08090b 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6), 0 8px 25px rgba(0,0,0,0.5);
}

.car-ext-img, .car-int-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-int-img {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
}

.car-image-wrapper.show-int .car-ext-img {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.car-image-wrapper.show-int .car-int-img {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.car-image-wrapper:hover .car-ext-img,
.car-image-wrapper:hover .car-int-img {
  transform: scale(1.05);
}

/* Floating toggles on image */
.image-toggle-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px;
  border-radius: 30px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

body.rtl .image-toggle-badge {
  right: auto;
  left: 12px;
}

.ext-badge-lbl, .int-badge-lbl {
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ext-badge-lbl.active, .int-badge-lbl.active {
  color: #000 !important;
  background: var(--gold-gradient);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Card Badge Containers */
.card-badges-container {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
  pointer-events: none;
}

.card-price-badge {
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  color: var(--primary-color-light);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 3px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.card-price-badge .price-val {
  font-size: 1.35rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.card-price-badge .price-unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-cat-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.cat-badge-lbl {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-color-light);
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Titles and Card content styling override */
.select__card h3 {
  font-size: 1.65rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 0.3rem;
  margin-bottom: 0.1rem;
  color: var(--white);
}

.select__card .car-year {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Color swatches in cards */
.card-color-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.card-color-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.color-swatch:hover,
.color-swatch.active {
  border-color: var(--white);
  transform: scale(1.25);
  box-shadow: 0 0 10px var(--white);
}

.card-color-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Select info area */
.select__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: none;
  padding-top: 0;
  width: 100%;
}

.select__info__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 4px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.select__info__card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--car-accent, rgba(212,175,55,0.2));
}

.select__info__card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  color: var(--car-accent, var(--primary-color));
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--car-accent, rgba(212, 175, 55, 0.2));
  border-radius: 50%;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.select__info__card:hover > span {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 0 8px var(--car-accent, rgba(212,175,55,0.3));
}

.select__info__card h4 {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════ */
/*  Premium Modal Gallery & Responsive Enhancements   */
/* ═══════════════════════════════════════════════════ */

/* Modal Gallery Image Slides */
.modal-images-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(ellipse at center, #1a1c23 0%, #08090b 100%);
  border-radius: 0;
}

/* Modal Swiper navigation arrows */
.modal-images-swiper .swiper-button-next,
.modal-images-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
}

.modal-images-swiper .swiper-button-next::after,
.modal-images-swiper .swiper-button-prev::after {
  font-size: 16px;
  color: var(--primary-color);
}

.modal-images-swiper .swiper-button-next:hover,
.modal-images-swiper .swiper-button-prev:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Modal Swiper pagination dots */
.modal-images-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}

.modal-images-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Modal title premium styling */
.modal-title {
  font-family: var(--header-font);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  letter-spacing: -0.5px;
}

/* Modal close button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.modal-close:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(212, 175, 55, 0.1);
  transform: rotate(90deg);
}

/* Responsive: Mobile card improvements */
@media (max-width: 768px) {
  .header__container h1 {
    font-size: 2.2rem !important;
    line-height: 2.8rem !important;
  }
  .section__header {
    font-size: 1.8rem !important;
    line-height: 2.3rem !important;
  }
  .car-image-wrapper {
    height: 220px !important;
  }
  
  .modal-images-swiper {
    height: 280px !important;
  }
  
  .modal-content {
    padding: 1.5rem !important;
    width: 95% !important;
    border-radius: 16px !important;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .image-toggle-badge {
    bottom: 8px !important;
    right: 8px !important;
  }
  
  .ext-badge-lbl, .int-badge-lbl {
    padding: 4px 10px !important;
    font-size: 0.65rem !important;
  }
  
  .card-price-badge .price-val {
    font-size: 1.1rem !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .car-image-wrapper {
    height: 180px !important;
  }
  
  .select__card {
    padding: 1rem !important;
    border-radius: 16px !important;
  }
  
  .select__card h3 {
    font-size: 1.3rem !important;
  }
}

/* ═══════════════════════════════════════════════════ */
/*  Why Choose Us - Interactive Road Scroll Section    */
/* ═══════════════════════════════════════════════════ */

.sets-apart-section {
  padding: 6rem 1rem;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.sets-apart-container {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.sets-apart-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  z-index: 5;
}

.left-col {
  align-items: flex-end;
  text-align: right;
}

.right-col {
  align-items: flex-start;
  text-align: left;
}

body.rtl .sets-apart-container {
  direction: rtl;
}

body.rtl .left-col {
  align-items: flex-start;
  text-align: right;
}

body.rtl .right-col {
  align-items: flex-end;
  text-align: left;
}

/* Vertical Road Lane wrapper */
.road-lane-wrapper {
  position: relative;
  width: 120px;
  height: 650px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.road-strip {
  width: 70px;
  height: 100%;
  background: linear-gradient(to bottom, #111317 0%, #0d0e11 100%);
  position: relative;
  border-left: 2px solid rgba(255, 255, 255, 0.05);
  border-right: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
  border-radius: 35px;
  overflow: hidden;
}

.road-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-left: 2px dashed rgba(212, 175, 55, 0.35);
}

/* Top-down Car Container */
.svg-car-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 30px; /* Animate from 30px to 540px */
  transition: top 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  will-change: top;
}

.svg-car-container svg {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

/* Feature Cards Styling */
.feature-card {
  background: rgba(17, 19, 23, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card-icon {
  font-size: 2.2rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: var(--header-font);
  letter-spacing: 0.5px;
}

body.rtl .feature-card h3 {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Highlighted state when car is near */
.feature-card.active {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1), 0 0 20px rgba(212, 175, 55, 0.05);
  transform: translateY(-5px) scale(1.04);
}

.feature-card.active .feature-card-icon {
  color: var(--primary-color);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  transform: scale(1.15) rotate(5deg);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .sets-apart-container {
    gap: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sets-apart-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
  }
  
  .road-lane-wrapper {
    display: none; /* Hide road on mobile to keep layout clean */
  }
  
  .left-col, .right-col {
    align-items: center;
    text-align: center;
  }
  
  body.rtl .left-col, body.rtl .right-col {
    align-items: center;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════ */
/*  VIP Upgrades - Route Planner & Map Section       */
/* ═══════════════════════════════════════════════════ */

.route-planner-section {
  padding: 6rem 1rem;
  background: radial-gradient(circle at bottom, #111317 0%, var(--dark-bg) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.route-planner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.route-map-container {
  background: rgba(17, 19, 23, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.jordan-map-svg {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
}

.city-dot {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
}

.city-dot:hover {
  r: 10;
  fill: #fff;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 1));
}

.route-path {
  transition: all 0.5s ease;
  cursor: pointer;
}

.route-path:hover {
  opacity: 0.6;
  stroke-width: 4px;
}

.route-path.active {
  opacity: 1 !important;
  stroke-dasharray: none;
  stroke-width: 4px;
  stroke: #d4af37;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

.route-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.route-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(17, 19, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background-color 0.3s ease;
}

.route-card:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateX(5px);
}

body.rtl .route-card:hover {
  transform: translateX(-5px);
}

.route-card.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 25px rgba(212,175,55,0.06);
}

.route-card.active::before {
  background: var(--primary-color);
}

.route-card-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.route-card.active .route-card-icon {
  background: var(--gold-gradient);
  color: #111;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.route-card-info {
  flex-grow: 1;
}

.route-card-info h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  font-family: var(--header-font);
}

body.rtl .route-card-info h3 {
  font-family: "Cairo", sans-serif;
}

.route-type {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.route-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.route-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.route-meta i {
  color: var(--primary-color);
}

.route-suggest {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-suggest strong {
  color: var(--white);
}

.route-reserve-btn {
  align-self: center;
  padding: 0.6rem 1.2rem !important;
  font-size: 0.85rem !important;
  border-radius: 12px !important;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .route-planner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .route-planner-section .section__header {
    font-size: 1.6rem !important;
    line-height: 2.2rem !important;
    margin-bottom: 1rem;
  }
  .route-planner-section > p {
    font-size: 0.85rem;
    margin-top: -0.5rem !important;
    margin-bottom: 2rem !important;
    padding: 0 0.5rem;
  }
  .route-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  .route-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }
  .route-card-info h3 {
    font-size: 1rem;
    word-break: break-word;
  }
  .route-type {
    font-size: 0.75rem;
  }
  .route-meta {
    flex-wrap: wrap;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .route-meta span {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
  }
  .route-suggest {
    font-size: 0.8rem;
  }
  .route-reserve-btn {
    align-self: flex-start;
    width: 100%;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════ */
/*  VIP Booking Modal Calculator & Promo Codes        */
/* ═══════════════════════════════════════════════════ */

.modal-info-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  margin-top: 1.25rem;
  overflow: hidden;
}

.premium-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.premium-specs-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

body.rtl .premium-specs-table th {
  text-align: right;
}

.premium-specs-table td {
  text-align: right;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

body.rtl .premium-specs-table td {
  text-align: left;
}

.modal-calc-column {
  background: rgba(17, 19, 23, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}

.modal-section-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: var(--header-font);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 0.5rem;
}

body.rtl .modal-section-title {
  font-family: "Cairo", sans-serif;
}

.modal-input-group {
  margin-bottom: 1rem;
}

.modal-input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.modal-input-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.modal-input-group input:focus {
  border-color: var(--primary-color);
}

.modal-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.modal-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 17px;
  height: 17px;
}

.modal-checkbox-label:hover {
  color: var(--white);
}

/* Promo Code Styling */
.promo-code-row {
  display: flex;
  gap: 10px;
  margin-bottom: 1.25rem;
  position: relative;
}

.promo-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.promo-input-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

body.rtl .promo-input-wrapper i {
  left: auto;
  right: 12px;
}

.promo-input-wrapper input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  color: var(--white);
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  letter-spacing: 1px;
  font-weight: 600;
}

body.rtl .promo-input-wrapper input {
  padding: 0.65rem 2.2rem 0.65rem 0.85rem;
}

.promo-input-wrapper input:focus {
  border-color: var(--primary-color);
}

.promo-apply-btn {
  padding: 0.65rem 1.2rem !important;
  font-size: 0.88rem !important;
  border-radius: 10px !important;
}

.promo-status {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}

body.rtl .promo-status {
  left: auto;
  right: 0;
}

.promo-status.success {
  color: #4caf50;
}

.promo-status.error {
  color: #f44336;
}

/* Live Invoice card styling */
.invoice-breakdown {
  background: rgba(0, 0, 0, 0.2);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  position: relative;
}

.invoice-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.invoice-line span:last-child {
  font-weight: 700;
  color: var(--white);
}

.promo-line span:last-child {
  color: #4caf50 !important;
}

.invoice-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 0.75rem 0;
}

.invoice-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}

.invoice-total span:last-child {
  color: var(--primary-color);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
  .modal-info-columns {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
  .modal-content {
    padding: 1.5rem 1.25rem !important;
  }
  .config-wizard-card {
    min-height: auto !important;
    padding: 1.25rem !important;
  }
  .wizard-actions-footer {
    flex-wrap: wrap;
  }
  .wizard-actions-footer .btn {
    font-size: 0.8rem !important;
    flex: 1 1 auto;
  }
  .premium-extra-card:hover {
    transform: none !important;
  }
}

/* Buttons VIP styles */
.btn-engine-sound {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-engine-sound:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-engine-sound.running {
  background: var(--gold-gradient);
  color: #111;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.7); }
  100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.4); }
}

.btn-pdf-voucher {
  background: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff5252;
}

.btn-pdf-voucher:hover {
  background: #f44336;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.4);
}

/* VIP Loyalty Badge styles */
.loyalty-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: badge-glow 3s infinite alternate;
}

.loyalty-badge i {
  font-size: 0.95rem;
}

/* Tiers color gradients */
.loyalty-silver {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #1e293b;
  border: 1px solid rgba(255,255,255,0.4);
}

.loyalty-gold {
  background: var(--gold-gradient);
  color: #111;
  border: 1px solid rgba(255,255,255,0.3);
}

.loyalty-platinum {
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 50%, #3f3f46 100%);
  color: #111;
  border: 1px solid rgba(255,255,255,0.5);
  animation: platinum-shimmer 3s infinite alternate;
  will-change: filter;
}

@keyframes badge-glow {
  0% { box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
  100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25); }
}

@keyframes platinum-shimmer {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

/* --- CLIENT VERIFICATION MODAL STYLING --- */
#verification-modal {
  align-items: flex-start !important;
  overflow-y: auto !important;
  padding: 2rem 0 !important;
}

.verification-modal-content {
  background: rgba(18, 20, 26, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.05);
  border-radius: 20px;
  max-width: 600px;
  width: 95%;
  padding: 2rem;
  margin: 2rem auto;
  position: relative;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.verification-form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

body.rtl .verification-form-group {
  text-align: right;
}

.verification-form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.verification-form-group input[type="text"],
.verification-form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.verification-form-group input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  outline: none;
  background: rgba(255, 255, 255, 0.07);
}

/* Custom File Upload Styling */
.file-upload-wrapper {
  position: relative;
  border: 1.5px dashed rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.file-upload-wrapper:hover {
  border-color: var(--primary-color);
  background: rgba(212, 175, 55, 0.05);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  pointer-events: none;
}

.file-upload-text {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  pointer-events: none;
}

.file-upload-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  pointer-events: none;
}

.file-name-preview {
  font-size: 0.8rem;
  color: #4caf50;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Toggle Switch Styling */
.switch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 1.5rem;
}

.switch-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.switch-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 50%;
}

.switch-toggle input:checked + .slider {
  background-color: rgba(212, 175, 55, 0.2);
  border-color: var(--primary-color);
}

.switch-toggle input:checked + .slider:before {
  transform: translateX(24px);
  background-color: var(--primary-color);
}

/* Customer Authentication and Dashboard CSS */
.tab-btn {
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.tab-btn.active {
  border-bottom-color: var(--primary-color) !important;
  color: var(--primary-color-light) !important;
}
.tab-btn:hover {
  color: #fff !important;
}
.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.slider-round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 50%;
}
.switch-toggle input:checked + .slider-round {
  background-color: rgba(212, 175, 55, 0.2);
  border-color: var(--primary-color);
}
.switch-toggle input:checked + .slider-round:before {
  transform: translateX(24px);
  background-color: var(--primary-color);
}

/* Membership loyalty cards styling */
.loyalty-bronze-card {
  background: linear-gradient(135deg, #3e2723, #1b0000);
  border-color: #5d4037 !important;
}
.loyalty-silver-card {
  background: linear-gradient(135deg, #37474f, #212121);
  border-color: #78909c !important;
}
.loyalty-gold-card {
  background: linear-gradient(135deg, #d4af37, #1a1a2e);
  border-color: var(--primary-color) !important;
}
.loyalty-platinum-card {
  background: linear-gradient(135deg, #b0bec5, #000);
  border-color: #eceff1 !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15) !important;
}
#client-history-table th {
  padding: 12px 10px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
#client-history-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
#client-history-table tr:hover {
  background: rgba(255,255,255,0.02);
}

/* ══════════════════════════════════════════════════════════
   PAYMENT METHOD CARDS — Premium Glassmorphism 
   ══════════════════════════════════════════════════════════ */
.payment-section {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.payment-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}
.payment-method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.payment-card {
  position: relative;
  cursor: pointer;
}
.payment-card input[type="radio"] {
  display: none;
}
.payment-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.payment-card-inner i {
  font-size: 1.6rem;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}
.payment-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
}
.payment-card-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.payment-card input:checked + .payment-card-inner {
  border-color: var(--primary-color);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.05);
}
.payment-card input:checked + .payment-card-inner i {
  color: var(--primary-color);
  transform: scale(1.15);
}
.payment-card:hover .payment-card-inner {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
/* Payment Info Banner */
.payment-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(33, 150, 243, 0.2);
  animation: fadeSlideIn 0.35s ease;
}
.payment-info-banner > i {
  font-size: 1.5rem;
  color: #42a5f5;
  margin-top: 2px;
}
.payment-info-banner strong {
  color: #90caf9;
  font-size: 0.85rem;
}
.payment-info-banner p {
  color: #e3f2fd;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Payment Type Toggle */
.payment-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.payment-type-option {
  cursor: pointer;
}
.payment-type-option input[type="radio"] {
  display: none;
}
.payment-type-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.payment-type-inner i {
  font-size: 1.2rem;
}
.payment-type-option input:checked + .payment-type-inner {
  border-color: var(--primary-color);
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
}
.payment-type-option:hover .payment-type-inner {
  border-color: rgba(212, 175, 55, 0.25);
}
/* Deposit Summary */
.deposit-summary {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 215, 0, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation: fadeSlideIn 0.35s ease;
}
.deposit-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.deposit-amount span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* Mobile responsive payment */
@media (max-width: 480px) {
  .payment-method-cards {
    grid-template-columns: 1fr;
  }
  .payment-type-toggle {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   FULLSCREEN WIPE PAGE TRANSITION CURTAIN
   ══════════════════════════════════════════════════════════ */
#page-transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  pointer-events: none;
  display: flex;
  visibility: hidden;
}
.curtain-panel {
  width: 50vw;
  height: 100vh;
  background: linear-gradient(135deg, #0d0f12, #07080a);
  border-right: 1px solid rgba(212, 175, 55, 0.05);
}
.curtain-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-family: var(--header-font);
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  z-index: 100;
}
.curtain-logo-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.curtain-logo-white {
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   CATEGORY SIDEBAR DRAWER SYSTEM
   ══════════════════════════════════════════════════════════ */
.sidebar-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.sidebar-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.sidebar-drawer {
  position: fixed;
  top: 0;
  left: -400px;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: rgba(10, 11, 15, 0.95);
  border-right: 1.5px solid rgba(212, 175, 55, 0.2);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6), 5px 0 20px rgba(212, 175, 55, 0.05);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  z-index: 100000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-drawer-overlay.active .sidebar-drawer {
  left: 0;
}
body.rtl .sidebar-drawer {
  left: auto;
  right: -400px;
  border-right: none;
  border-left: 1.5px solid rgba(212, 175, 55, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6), -5px 0 20px rgba(212, 175, 55, 0.05);
}
body.rtl .sidebar-drawer-overlay.active .sidebar-drawer {
  left: auto;
  right: 0;
}
.sidebar-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sidebar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: #fff;
  letter-spacing: 1px;
}
.sidebar-logo span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sidebar-close-btn {
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}
.sidebar-close-btn:hover {
  color: var(--primary-color);
}
.sidebar-drawer-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-menu-item i {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}
.sidebar-menu-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.3s;
}
.sidebar-menu-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.sidebar-menu-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}
.sidebar-menu-item:hover i {
  color: var(--primary-color);
  transform: scale(1.1);
}
.sidebar-menu-item:hover strong {
  color: var(--primary-color-light);
}
.sidebar-menu-item.active {
  border-color: var(--primary-color);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.12), inset 0 0 10px rgba(212, 175, 55, 0.03);
}
.sidebar-menu-item.active i {
  color: var(--primary-color);
}
.sidebar-menu-item.active strong {
  color: var(--primary-color-light);
}
.sidebar-drawer-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════
   DYNAMIC THEME EFFECTS FOR VEHICLE CATEGORIES
   ══════════════════════════════════════════════════════════ */
/* Wedding Theme */
body.theme-wedding #home {
  background-image: linear-gradient(to right, rgba(15, 10, 5, 0.85), rgba(7, 5, 2, 0.95)), url('assets/cars/category_wedding.png') !important;
  box-shadow: inset 0 0 100px rgba(212, 175, 55, 0.15);
}
body.theme-wedding #hero-title span {
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Airport Theme */
body.theme-airport #home {
  background-image: linear-gradient(to right, rgba(5, 10, 15, 0.85), rgba(2, 5, 10, 0.95)), url('assets/cars/category_airport.png') !important;
  box-shadow: inset 0 0 100px rgba(33, 150, 243, 0.15);
}
body.theme-airport #hero-title span {
  background: linear-gradient(135deg, #90caf9 0%, #2196f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Events Theme */
body.theme-events #home {
  background-image: linear-gradient(to right, rgba(12, 5, 18, 0.85), rgba(6, 2, 10, 0.95)), url('assets/cars/category_events.png') !important;
  box-shadow: inset 0 0 100px rgba(224, 64, 251, 0.15);
}
body.theme-events #hero-title span {
  background: linear-gradient(135deg, #f3e5f5 0%, #e040fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Daily Theme */
body.theme-daily #home {
  background-image: linear-gradient(to right, rgba(10, 10, 10, 0.85), rgba(5, 5, 5, 0.95)), url('assets/cars/category_daily.png') !important;
  box-shadow: inset 0 0 100px rgba(255, 152, 0, 0.1);
}
body.theme-daily #hero-title span {
  background: linear-gradient(135deg, #ffe0b2 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* flatpickr custom styling for luxury theme with high contrast */
.flatpickr-calendar {
  background: #18181b !important; /* zinc-900 */
  border: 1px solid #d4af37 !important; /* solid gold border */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.7) !important;
}

/* CRITICAL FIX: Reset the global 'span' gradient styling that made day numbers transparent */
.flatpickr-calendar span {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #ffffff !important;
}

.flatpickr-calendar * {
  color: #ffffff !important; /* force white text for readability */
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #ffffff !important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #ffffff !important;
}
.flatpickr-months .flatpickr-prev-month svg, 
.flatpickr-months .flatpickr-next-month svg {
  fill: #ffffff !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg, 
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #d4af37 !important;
}
.flatpickr-weekday {
  color: #a1a1aa !important; /* zinc-400 */
  font-weight: bold !important;
}
.flatpickr-day {
  color: #ffffff !important; /* high-contrast white days */
  font-weight: 600 !important;
}
.flatpickr-day:hover, .flatpickr-day.today:hover {
  background: #d4af37 !important;
  color: #000000 !important;
  border-color: #d4af37 !important;
}
.flatpickr-day:hover *, .flatpickr-day.today:hover * {
  color: #000000 !important;
}
.flatpickr-day.today {
  border-color: #d4af37 !important;
}
.flatpickr-day.selected, 
.flatpickr-day.selected:hover, 
.flatpickr-day.selected:focus {
  background: #d4af37 !important;
  color: #000000 !important;
  border-color: #d4af37 !important;
}
.flatpickr-day.selected *, 
.flatpickr-day.selected:hover * {
  color: #000000 !important;
}
.flatpickr-day.disabled, 
.flatpickr-day.disabled:hover {
  background: rgba(239, 68, 68, 0.15) !important; /* red-500 transparent bg */
  color: #ef4444 !important; /* high-contrast red for disabled */
  text-decoration: line-through !important;
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.flatpickr-day.disabled *, 
.flatpickr-day.disabled:hover * {
  color: #ef4444 !important;
}
.flatpickr-day.prevMonthDay, 
.flatpickr-day.nextMonthDay {
  color: #52525b !important; /* zinc-600 */
  opacity: 0.4 !important;
}
.flatpickr-time {
  border-top: 1px solid rgba(212,175,55,0.2) !important;
  background: #18181b !important;
}
.flatpickr-time input {
  color: #ffffff !important;
  font-weight: bold !important;
}
.flatpickr-time .flatpickr-time-separator, 
.flatpickr-time .flatpickr-am-pm {
  color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════
   TESLA-STYLE STEP-BY-STEP CONFIGURATOR WIZARD CSS
   ══════════════════════════════════════════════════════════ */

.config-wizard-card {
  transition: all 0.3s ease;
}

.wizard-step-node {
  transition: all 0.3s ease;
}

.wizard-step-node:hover .step-number-circle {
  transform: scale(1.1);
  border-color: var(--primary-color) !important;
}

.premium-extra-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-extra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-extra-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(212, 175, 55, 0.25) !important;
  transform: translateX(4px);
}

body.rtl .premium-extra-card:hover {
  transform: translateX(-4px);
}

.premium-extra-card.active {
  background: rgba(212, 175, 55, 0.06) !important;
  border-color: rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.premium-extra-card.active::before {
  opacity: 1;
}

.premium-extra-card input[type="checkbox"] {
  cursor: pointer;
}

.wizard-panel {
  animation: panelFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.color-selection-wrapper {
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.4);
}

/* Color Circle swatch styling */
.color-swatch-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.color-swatch-circle:hover {
  transform: scale(1.15);
  border-color: #fff;
}

.color-swatch-circle.active {
  border-color: var(--primary-color);
  transform: scale(1.25);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- Unified Booking Configurator Card --- */
.config-wizard-card {
  background: rgba(17, 19, 23, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.config-section {
  display: flex;
  flex-direction: column;
}

.config-section > label:first-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e0d6c2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.config-wizard-card .modal-section-title {
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding-bottom: 0.5rem;
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.config-wizard-card .modal-input-group {
  margin-bottom: 0;
}

.config-wizard-card .modal-input-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  color: #fff !important;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  height: 38px;
}

.config-wizard-card .modal-input-group input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.config-wizard-card .modal-input-group label {
  color: #c9bfa5;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.2rem;
  display: block;
}

/* Color selection wrapper */
.config-wizard-card .color-selection-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: rgba(0,0,0,0.15);
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

/* Premium extra cards in unified form */
.config-wizard-card .premium-extra-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.config-wizard-card .premium-extra-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
}

.config-wizard-card .premium-extra-card.active {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

/* Invoice breakdown */
.config-wizard-card .invoice-breakdown {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.config-wizard-card .invoice-line {
  font-size: 0.78rem;
}

.config-wizard-card .invoice-total {
  font-size: 0.92rem;
}

/* Actions footer */
.config-wizard-card .wizard-actions-footer {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin-top: 0.25rem;
}

.config-wizard-card .wizard-actions-footer .btn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 0.85rem;
}

/* Promo code input */
.config-wizard-card .promo-code-row input {
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
}

/* Flatpickr dark-theme integration for modal date inputs */
.config-wizard-card .flatpickr-input {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Book Now primary button glow */
#btn-book-modal-calc {
  background: linear-gradient(135deg, var(--primary-color) 0%, #c5a028 100%);
  color: #000;
  font-weight: 800;
  border: none;
  transition: all 0.3s;
}

#btn-book-modal-calc:hover {
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .config-wizard-card {
    padding: 1.15rem !important;
    gap: 0.9rem !important;
    border-radius: 16px;
  }
  .config-wizard-card .modal-input-group input {
    font-size: 0.82rem;
    height: 36px;
  }
}

/* --- Document Image Preview Styles --- */
.file-upload-wrapper {
  position: relative;
  overflow: hidden;
}

.file-preview-img {
  max-width: 100%;
  max-height: 140px;
  border-radius: 8px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.2);
  pointer-events: none;
}

.file-preview-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #4caf50;
  font-weight: 600;
  margin-top: 6px;
  pointer-events: none;
}

/* --- Verification Form Enhanced Visibility --- */
.verification-modal-content {
  background: rgba(18, 20, 26, 0.97) !important;
}

.verification-form-group label {
  color: #e0d6c2 !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.verification-form-group input[type="text"],
.verification-form-group input[type="tel"] {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.verification-form-group input[type="text"]::placeholder,
.verification-form-group input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.verification-form-group input[type="text"]:focus,
.verification-form-group input[type="tel"]:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25) !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.file-upload-wrapper {
  border: 2px dashed rgba(212, 175, 55, 0.4) !important;
  border-radius: 12px !important;
  padding: 1.5rem 1rem !important;
  background: rgba(255, 255, 255, 0.04) !important;
  min-height: 80px !important;
}

.file-upload-wrapper:hover {
  border-color: var(--primary-color) !important;
  background: rgba(212, 175, 55, 0.08) !important;
}

.file-upload-icon {
  font-size: 2rem !important;
  color: var(--primary-color) !important;
}

.file-upload-text {
  color: #e0d6c2 !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}

.file-upload-desc {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.78rem !important;
}

/* Switch toggle visibility */
.switch-container {
  border: 1.5px solid rgba(212, 175, 55, 0.3) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 0.85rem 1.1rem !important;
}

.switch-label {
  color: #e0d6c2 !important;
  font-weight: 600 !important;
}

/* Payment section cards visibility */
.payment-card {
  border: 1.5px solid rgba(212, 175, 55, 0.25) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.payment-card-title {
  color: #e0d6c2 !important;
}

.payment-card-desc {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Submit button visibility */
#verification-form .submit-btn,
#verification-form button[type="submit"] {
  background: linear-gradient(135deg, var(--primary-color), #c6991e) !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  padding: 0.9rem 2rem !important;
  border-radius: 12px !important;
  border: none !important;
  width: 100% !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

#verification-form .submit-btn:hover,
#verification-form button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

/* --- Details Modal Configurator Wizard Enhancements --- */
.modal-input-group label {
  color: #e0d6c2 !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
}

.modal-input-group input {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 12px !important;
  padding: 0.85rem 1rem !important;
  color: #fff !important;
  outline: none !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

.modal-input-group input:focus {
  border-color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25) !important;
}

/* Promo Code Box in Details Modal */
#modal-promo-code {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 10px !important;
  color: #fff !important;
  height: 42px !important;
  font-size: 0.95rem !important;
  padding-left: 36px !important;
  box-sizing: border-box !important;
}

#modal-promo-code:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
  outline: none !important;
}

.promo-apply-btn {
  height: 42px !important;
  background: linear-gradient(135deg, var(--primary-color), #c6991e) !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.promo-apply-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

/* --- Mobile Payment Cards Responsive Wrapping --- */
@media (max-width: 600px) {
  .payment-method-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .payment-card-inner {
    padding: 18px 12px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    text-align: left !important;
  }
  body.rtl .payment-card-inner {
    text-align: right !important;
    flex-direction: row-reverse !important;
  }
  .payment-card-inner i {
    font-size: 1.8rem !important;
  }
  .payment-type-toggle {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}


/* ===============================================
   3D SHOWCASE CARDS — Stacked Card Fan-Out
   =============================================== */
.showcase-3d-section {
  position: relative;
  padding: 8rem 2rem 10rem;
  overflow: visible;
  background: linear-gradient(180deg, rgba(7,8,10,0.97) 0%, rgba(13,13,15,1) 50%, rgba(7,8,10,0.97) 100%);
}

.showcase-3d-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.showcase-3d-section .section__header {
  text-align: center;
  margin-bottom: 1rem;
}

.showcase-3d-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.showcase-3d-grid {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 520px;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  overflow: visible;
}

.showcase-3d-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  margin-left: -160px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(22,22,28,0.95), rgba(12,12,16,0.98));
  border: 1px solid rgba(212,175,55,0.12);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 0.5s ease-out,
              opacity 0.8s ease,
              box-shadow 0.6s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  cursor: pointer;
}

/* Initial stacked state — cards stacked but ALL clickable */
.showcase-3d-card:nth-child(1) {
  z-index: 3;
  transform: translateX(-340px) rotateY(8deg) scale(0.92);
}
.showcase-3d-card:nth-child(2) {
  z-index: 4;
  transform: translateX(0px) rotateY(0deg) scale(1);
}
.showcase-3d-card:nth-child(3) {
  z-index: 3;
  transform: translateX(340px) rotateY(-8deg) scale(0.92);
}

/* Fan-out state — cards spread apart with 3D rotation */
.showcase-3d-grid.fanned .showcase-3d-card:nth-child(1) {
  transform: translateX(-105%) rotateY(18deg) rotateZ(-3deg) scale(0.92);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.06);
}
.showcase-3d-grid.fanned .showcase-3d-card:nth-child(2) {
  transform: translateX(0%) rotateY(0deg) rotateZ(0deg) scale(1);
  z-index: 4;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 50px rgba(212,175,55,0.1);
}
.showcase-3d-grid.fanned .showcase-3d-card:nth-child(3) {
  transform: translateX(105%) rotateY(-18deg) rotateZ(3deg) scale(0.92);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.06);
}

/* Hover on fanned cards */
.showcase-3d-grid.fanned .showcase-3d-card:hover {
  transform: translateX(var(--fan-x, 0)) rotateY(var(--fan-ry, 0deg)) rotateZ(0deg) scale(1.04) translateY(-12px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 35px 80px rgba(0,0,0,0.7), 0 0 50px rgba(212,175,55,0.15);
  z-index: 10;
}
.showcase-3d-grid.fanned .showcase-3d-card:nth-child(1) { --fan-x: -105%; --fan-ry: 18deg; }
.showcase-3d-grid.fanned .showcase-3d-card:nth-child(2) { --fan-x: 0%; --fan-ry: 0deg; }
.showcase-3d-grid.fanned .showcase-3d-card:nth-child(3) { --fan-x: 105%; --fan-ry: -18deg; }

.showcase-3d-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-3d-card:hover .showcase-3d-card-img {
  transform: scale(1.08);
}

.showcase-3d-card-body {
  padding: 1.5rem 1.5rem 1.8rem;
  position: relative;
}

.showcase-3d-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.3;
}

.showcase-3d-card-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.showcase-3d-card-title {
  font-family: var(--header-font);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.showcase-3d-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.showcase-3d-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.showcase-3d-card-price strong {
  font-size: 1.4rem;
  color: var(--primary-color-light);
  font-family: var(--header-font);
}

.showcase-3d-card-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Glow reflection under cards */
.showcase-3d-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.12), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-3d-card:hover::after {
  opacity: 1;
}

/* Custom Vibrant Glows & Shadows */
.showcase-3d-card.glow-gold {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 15px rgba(212, 175, 55, 0.05);
}
.showcase-3d-card.glow-gold::after {
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.18), transparent 70%);
}
.showcase-3d-card.glow-gold:hover {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 35px rgba(212, 175, 55, 0.25);
}

.showcase-3d-card.glow-orange {
  border-color: rgba(255, 99, 71, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 15px rgba(255, 99, 71, 0.05);
}
.showcase-3d-card.glow-orange::after {
  background: radial-gradient(ellipse, rgba(255, 99, 71, 0.18), transparent 70%);
}
.showcase-3d-card.glow-orange:hover {
  border-color: rgba(255, 99, 71, 0.7);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 35px rgba(255, 99, 71, 0.25);
}

.showcase-3d-card.glow-green {
  border-color: rgba(57, 255, 20, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 15px rgba(57, 255, 20, 0.05);
}
.showcase-3d-card.glow-green::after {
  background: radial-gradient(ellipse, rgba(57, 255, 20, 0.18), transparent 70%);
}
.showcase-3d-card.glow-green:hover {
  border-color: rgba(57, 255, 20, 0.7);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 35px rgba(57, 255, 20, 0.25);
}

@media (max-width: 768px) {
  .showcase-3d-grid {
    max-width: 340px;
    height: 480px;
  }
}

/* ===============================================
   LUXURY JOURNEY — Desert Route Section
   =============================================== */
.luxury-journey-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  background: linear-gradient(160deg, #0c0a08 0%, #1a150e 40%, #0d0b09 100%);
}

.luxury-journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.luxury-journey-text .journey-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.luxury-journey-text h2 {
  font-family: var(--header-font);
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.luxury-journey-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 2rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color-light);
  background: transparent;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.journey-cta-btn:hover {
  background: var(--primary-color);
  color: #000;
}

/* Wavy timeline container */
.journey-timeline {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.journey-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
  overflow: visible;
}

.journey-wave-path {
  fill: none;
  stroke: url(#journey-gold-grad);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}

.journey-stops-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.journey-stop {
  flex: 1;
  text-align: center;
  position: relative;
  padding-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
}

.journey-stop.revealed {
  opacity: 1;
  transform: translateY(0);
}

.journey-stop:nth-child(2) { transition-delay: 0.1s; }
.journey-stop:nth-child(3) { transition-delay: 0.2s; }
.journey-stop:nth-child(4) { transition-delay: 0.3s; }
.journey-stop:nth-child(5) { transition-delay: 0.4s; }

.journey-stop::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
  z-index: 2;
}

.journey-stop-num {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.journey-stop h4 {
  font-family: var(--header-font);
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.journey-stop p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .luxury-journey-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .journey-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding-bottom: 0;
    padding-left: 2rem;
  }
  .journey-timeline::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
  }
  .journey-stop {
    text-align: left;
    padding-bottom: 0;
    padding-left: 1.5rem;
  }
  body.rtl .journey-stop {
    text-align: right;
    padding-right: 1.5rem;
    padding-left: 0;
  }
  .journey-stop::after {
    left: -2rem;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .journey-cta-btn {
    margin: 0 auto;
  }
}

/* ===============================================
   VIP CLUB — Membership Section
   =============================================== */
.vip-club-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  background: linear-gradient(170deg, #0f0d0a 0%, #1c170d 50%, #0d0b08 100%);
}

.vip-club-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.vip-club-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vip-club-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1.6;
  background: linear-gradient(135deg, #1a1508, #0d0a05);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vip-club-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.1);
}

.vip-club-card-logo {
  font-family: var(--header-font);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.8rem 1.5rem;
  line-height: 1;
}

.vip-club-card-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--primary-color);
  margin-top: 0.3rem;
}

.vip-club-card-divider {
  width: 30px;
  height: 1px;
  background: var(--primary-color);
}

.vip-club-card-badge {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(212,175,55,0.1);
  padding: 0.3rem 1rem;
  border-radius: 4px;
}

.vip-club-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vip-club-right .club-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.vip-club-right h2 {
  font-family: var(--header-font);
  font-size: 2.2rem;
  color: #fff;
  margin-top: -1.5rem;
}

.vip-club-right > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 380px;
  margin-top: -1.5rem;
}

.vip-club-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vip-perk-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}

.vip-perk-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.vip-perk-item:nth-child(2) { transition-delay: 0.1s; }
.vip-perk-item:nth-child(3) { transition-delay: 0.15s; }
.vip-perk-item:nth-child(4) { transition-delay: 0.2s; }
.vip-perk-item:nth-child(5) { transition-delay: 0.25s; }
.vip-perk-item:nth-child(6) { transition-delay: 0.3s; }

.vip-perk-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  display: block;
  transition: transform 0.3s ease;
}

.vip-perk-item:hover i {
  transform: scale(1.2);
}

.vip-perk-item span {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.5;
}

.club-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 2rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color-light);
  background: transparent;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  width: fit-content;
}

.club-apply-btn:hover {
  background: var(--primary-color);
  color: #000;
}

@media (max-width: 900px) {
  .vip-club-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .vip-club-card {
    max-width: 300px;
    margin: 0 auto;
    transform: rotate(0deg);
  }
  .vip-club-perks {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .vip-club-right > p {
    margin: -1.5rem auto 0;
  }
  .club-apply-btn {
    margin: 0 auto;
  }
}

/* ===============================================
   HERO BOTTOM SECTION — Car + Text Side by Side
   =============================================== */
.hero-bottom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.hero-text-centered {
  text-align: center !important;
  max-width: 700px;
}

.hero-text-centered .hero-car-desc {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-text-centered .hero-features {
  justify-items: center;
}

.hero-ornament-top,
.hero-ornament-bottom {
  font-size: 1rem;
  color: var(--primary-color);
  letter-spacing: 8px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.hero-ornament-bottom {
  margin-bottom: 0;
  margin-top: 1rem;
}

.hero-gold-letter {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15);
  font-family: var(--header-font);
  line-height: 1;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 1.5rem;
  border-radius: 1px;
}

.hero-car-text {
  flex: 1;
  text-align: left;
}

body.rtl .hero-car-text {
  text-align: right;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-color);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-car-name {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  font-family: var(--header-font);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-car-desc {
  font-size: 1rem;
  color: #c9ccd3;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 480px;
  font-family: var(--body-font);
}

body.rtl .hero-car-name {
  font-family: "Cairo", sans-serif;
  font-size: 2.6rem;
}

body.rtl .hero-car-desc {
  font-family: "Cairo", sans-serif;
  line-height: 2.0;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-feature i {
  color: var(--primary-color);
  font-size: 1rem;
}

.hero-cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  background: var(--gold-gradient) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

/* Scroll Down Golden Arrow */
.scroll__down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.scroll-arrow-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.3rem;
  background: rgba(212, 175, 55, 0.08);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: background 0.3s, transform 0.3s;
}

.scroll-arrow-icon:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* Responsive: hero on mobile */
@media (max-width: 768px) {
  .hero-bottom-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-car-text {
    text-align: center;
  }
  .hero-features {
    justify-items: center;
  }
  .hero-car-name {
    font-size: 2rem;
  }
  .hero-gold-letter {
    font-size: 2.8rem;
  }
}

/* ===============================================
   3D GLOBE LABELS & CONTAINERS
   =============================================== */
#globe-3d-container {
  perspective: 1000px;
  position: relative;
  width: 100%;
  height: 450px;
  background: transparent;
  cursor: grab;
}

#globe-3d-container:active {
  cursor: grabbing;
}

.globe-label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column-reverse; /* Put dot at bottom, card above */
  align-items: center;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(-50%, -85%) scale(0.8);
}

.globe-label.visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}

.globe-label-dot {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-color);
  margin-top: 3px;
  z-index: 11;
}

.globe-label-content {
  background: rgba(17, 19, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--text-light);
  font-family: var(--body-font);
  font-size: 0.78rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.globe-label:hover .globe-label-content {
  border-color: var(--primary-color);
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15), 0 8px 30px rgba(0, 0, 0, 0.7);
}

.globe-label-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.globe-label-header i {
  font-size: 0.95rem;
  color: var(--primary-color);
}

.globe-label-header strong {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.globe-label-content span {
  color: var(--text-muted);
  font-size: 0.65rem;
  padding-left: 16px; /* align with icon */
}

/* Custom styling for different location types to look rich and premium */
.globe-label.type-hq .globe-label-header i {
  color: #ffb300; /* Rich Gold */
  animation: pulseIcon 2s infinite alternate;
}
.globe-label.type-hq .globe-label-dot {
  border-color: #ffb300;
  box-shadow: 0 0 12px #ffb300;
}

.globe-label.type-airport .globe-label-header i {
  color: #00e5ff; /* Sky Blue for airports */
}
.globe-label.type-airport .globe-label-dot {
  border-color: #00e5ff;
  box-shadow: 0 0 10px #00e5ff;
}

.globe-label.type-partner .globe-label-header i {
  color: #a855f7; /* Royal purple for Europe partners */
}
.globe-label.type-partner .globe-label-dot {
  border-color: #a855f7;
  box-shadow: 0 0 10px #a855f7;
}

@keyframes pulseIcon {
  0% { transform: scale(1); filter: drop-shadow(0 0 1px rgba(255, 179, 0, 0.2)); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(255, 179, 0, 0.7)); }
}

body.rtl .globe-label-content {
  font-family: "Cairo", sans-serif;
}
body.rtl .globe-label-content span {
  padding-left: 0;
  padding-right: 16px; /* RTL align with icon */
}

/* ========== PREMIUM PRELOADER GATE ========== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #141418 0%, #0c0c0e 70%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.preloader-spinner {
  width: 55px;
  height: 55px;
  border: 2px solid rgba(212, 175, 55, 0.08);
  border-top: 2px solid #d4af37;
  border-radius: 50%;
  animation: preloaderSpin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  margin-bottom: 20px;
}

.preloader-logo {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderSlideUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.2s;
}

.preloader-logo span {
  color: #d4af37;
}

.preloader-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0;
  animation: preloaderFadeIn 0.6s ease forwards 0.6s;
}

.preloader-progress-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 22px;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #aa7c11, #d4af37, #f3e5ab);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  transition: width 0.15s ease-out;
}

.preloader-status {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0;
  animation: preloaderFadeIn 0.5s ease forwards 0.8s;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

/* ===============================================
   MOBILE RESPONSIVENESS (1024px and 768px)
   =============================================== */

@media (max-width: 1024px) {
  .header__container h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .section__header {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .range__grid, .story__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Hero & Headings */
  .header__container h1 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  .header__container form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .section__header {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  
  /* Cards & Grids */
  .range__grid, .story__grid {
    grid-template-columns: 1fr;
  }
  .select__form {
    flex-direction: column;
    text-align: center;
  }
  .select__price {
    justify-content: center;
  }
  
  /* Globe Section */
  #globe-3d-container {
    height: 300px;
  }
  
  /* Modals */
  .modal-content {
    width: 95% !important;
    margin: 20px auto;
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer__container {
    grid-template-columns: 1fr;
  }
  
  /* Sidebar Drawer */
  .nav__links {
    padding: 1.5rem;
  }
  
  /* Fixed width fixes */
  .container, .modal-body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Preloader */
  .preloader-logo {
    font-size: 1.8rem;
  }
  .preloader-spinner {
    width: 45px;
    height: 45px;
  }
  .preloader-progress-bar {
    width: 140px;
  }

  /* Swiper Buttery Smooth Performance & Acceleration */
  .swiper-wrapper, .swiper-slide, .select__card {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .select__card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(18, 20, 24, 0.98) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  }

  /* Review Section fixes to prevent text overlap */
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .reviews-form-col {
    padding: 1.25rem !important;
  }
  .reviews-container {
    gap: 1.5rem;
  }

  /* Why Choose VIP - Vertical Driving Car Animation */
  .sets-apart-container {
    grid-template-columns: 1fr !important;
    position: relative;
  }
  .road-lane-wrapper {
    display: flex !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 1;
    opacity: 0.22;
    pointer-events: none;
  }
  .road-strip {
    border-radius: 0;
    width: 60px;
  }
  .left-col, .right-col {
    position: relative;
    z-index: 5;
    background: rgba(10, 11, 14, 0.7);
    padding: 1rem 0;
    border-radius: 12px;
  }

  /* Luxury Journey (VIP Desert Route) responsive timeline */
  .journey-wave-svg {
    display: none !important;
  }
  .journey-stops-row {
    flex-direction: column !important;
    gap: 2.5rem !important;
    padding-left: 2rem !important;
    padding-bottom: 0 !important;
  }
  body.rtl .journey-stops-row {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
  .journey-timeline {
    position: relative;
    padding-bottom: 0;
  }
  .journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.75rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(212,175,55,0.05));
    border-radius: 1px;
  }
  body.rtl .journey-timeline::before {
    right: 0.75rem;
    left: auto;
  }
  .journey-stop {
    text-align: left !important;
    padding-bottom: 0 !important;
    padding-left: 2.5rem !important;
    transform: none !important;
    opacity: 1 !important;
  }
  body.rtl .journey-stop {
    text-align: right !important;
    padding-right: 2.5rem !important;
    padding-left: 0 !important;
  }
  .journey-stop::after {
    left: 0.75rem !important;
    top: 10px !important;
    transform: translateX(-50%) !important;
  }
  body.rtl .journey-stop::after {
    right: 0.75rem !important;
    left: auto !important;
    transform: translateX(50%) !important;
  }

  /* 3D Showcase cards Mobile viewports */
  .showcase-3d-grid {
    max-width: 320px !important;
    height: 750px !important;
    margin: 0 auto;
  }
  .showcase-3d-card {
    width: 290px !important;
    margin-left: -145px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8) !important;
  }
  .showcase-3d-card-img {
    height: 155px !important;
  }
  .showcase-3d-card-body {
    padding: 1rem 1.25rem 1.25rem !important;
  }
  .showcase-3d-card-desc {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.6rem !important;
  }
  .showcase-3d-card-title {
    font-size: 1.15rem !important;
    margin-bottom: 0.3rem !important;
  }
  .showcase-3d-card-label {
    font-size: 0.65rem !important;
    margin-bottom: 0.3rem !important;
    letter-spacing: 2px !important;
  }
  .showcase-3d-card-price strong {
    font-size: 1.2rem !important;
  }

  /* Brands logo strip mobile adjustments */
  .banner__container {
    padding-block: 2.5rem !important;
  }
  .banner__wrapper {
    gap: 3rem !important;
  }
  .banner__wrapper img {
    height: 28px !important;
    opacity: 0.5 !important;
  }

  /* Swiper Mobile Swipe Hint */
  .swiper-swipe-hint-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -1rem auto 1.5rem;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    max-width: fit-content;
    pointer-events: none;
    animation: pulseHint 2.5s infinite;
  }
  .swiper-swipe-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color-light);
    font-size: 0.78rem;
    font-weight: 500;
  }
  .swiper-swipe-hint i {
    font-size: 1rem;
  }
  .swipe-arrow-left {
    animation: slideLeft 1.5s infinite;
  }
  .swipe-arrow-right {
    animation: slideRight 1.5s infinite;
  }
}

/* Global Keyframes & desktop default for Swipe Hint */
.swiper-swipe-hint-wrapper {
  display: none;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.8; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes slideLeft {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-4px); opacity: 1; }
}
@keyframes slideRight {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
}

