/* ==========================================================================
   SALMOH RENT CAR - TANGIER
   Apple iPhone iOS 18 Design System (Liquid Retina Glass & Dark Mode)
   ========================================================================== */

/* --- CSS Variables & Apple iOS Design System --- */
:root {
  /* Apple iOS OLED Pure Black & System Surfaces */
  --bg-main: #000000;
  --bg-surface-1: #1C1C1E;
  --bg-surface-2: #2C2C2E;
  --bg-surface-3: #3A3A3C;
  --bg-glass: rgba(28, 28, 35, 0.75);
  --bg-glass-card: rgba(24, 24, 30, 0.82);
  --bg-ios-material: rgba(36, 36, 44, 0.7);

  /* iOS System Red Accent & Glows */
  --red-primary: #FF3B30;
  --red-hover: #FF453A;
  --red-dark: #D70015;
  --red-glow: rgba(255, 59, 48, 0.32);
  --red-glow-strong: rgba(255, 59, 48, 0.6);
  --red-soft-bg: rgba(255, 59, 48, 0.14);
  --red-border: rgba(255, 59, 48, 0.35);

  /* Apple iOS Supporting System Colors */
  --color-gold: #FFD60A;
  --color-gold-glow: rgba(255, 214, 10, 0.25);
  --color-green: #30D158;
  --color-blue: #0A84FF;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5B;

  /* Apple Typography & Neutrals */
  --text-main: #FFFFFF;
  --text-muted: #8E8E93;
  --text-dim: #636366;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-red: rgba(255, 59, 48, 0.4);

  /* iOS Dynamic Shadows & Ambient Glass */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.85);
  --shadow-ios-card: 0 20px 45px -10px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  --shadow-neon-red: 0 0 30px rgba(255, 59, 48, 0.5);

  /* Apple Squircle Radii & Spring Transitions */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  --transition-fast: 0.18s cubic-bezier(0.32, 0.72, 0, 1);
  --transition-normal: 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-ios: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);

  /* Apple SF Pro Style Typography Stack */
  --font-arabic: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", 'Cairo', system-ui, sans-serif;
  --font-latin: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-arabic);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[dir="ltr"] body {
  font-family: var(--font-latin);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Ensure inputs on mobile have 16px font to prevent unwanted iOS Safari auto-zoom */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

button {
  touch-action: manipulation;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* --- Container & Grid --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1.15rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 0.9rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding-inline: 0.65rem;
  }
}

/* --- Common Components & Badges --- */
.red-highlight {
  color: var(--red-primary);
  text-shadow: 0 0 20px var(--red-glow);
}

.text-gold {
  color: var(--color-gold);
}

.text-green {
  color: var(--color-whatsapp);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, #F87171 70%, var(--red-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  color: var(--red-hover);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.15);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.65;
}

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

/* --- Apple iOS Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 0.5px solid transparent;
  transition: transform 0.16s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.25s ease, background 0.2s ease;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background: linear-gradient(180deg, #FF453A 0%, #D70015 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #FF5A4E 0%, #E50914 100%);
  box-shadow: 0 8px 25px var(--red-glow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(44, 44, 46, 0.85);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(58, 58, 60, 0.95);
  border-color: var(--red-primary);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp-nav {
  background: rgba(37, 211, 102, 0.16);
  color: var(--color-whatsapp);
  border: 0.5px solid rgba(37, 211, 102, 0.35);
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-nav:hover {
  background: var(--color-whatsapp);
  color: #000000;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}

.btn-whatsapp-confirm {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-confirm:hover {
  background: linear-gradient(135deg, #2EE872 0%, #15A090 100%);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-red-action {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: #FFFFFF;
  font-size: 0.95rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-red-action:hover {
  background: var(--red-hover);
  box-shadow: 0 0 18px var(--red-glow);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.pulse-glow-btn {
  animation: pulseBtnGlow 2.5s infinite;
}

@keyframes pulseBtnGlow {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.admin-nav-link {
  color: #F87171 !important;
  opacity: 0.85;
}

.admin-nav-link:hover {
  opacity: 1;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #180507 0%, #2A080C 50%, #180507 100%);
  border-bottom: 1px solid rgba(229, 9, 20, 0.25);
  font-size: 0.85rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #FECACA;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--red-primary);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.announcement-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ann-link {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.ann-link:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .announcement-contacts {
    display: none;
  }
  .announcement-text {
    font-size: 0.8rem;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Header & Navigation (Apple iOS Liquid Retina Glass)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(18, 18, 22, 0.72);
  backdrop-filter: blur(25px) saturate(190%);
  -webkit-backdrop-filter: blur(25px) saturate(190%);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(12, 12, 16, 0.88);
  border-bottom-color: rgba(255, 59, 48, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), inset 0 -0.5px 0 rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 0 12px var(--red-glow));
  transition: transform var(--transition-spring);
}

.brand-logo:hover .logo-img {
  transform: scale(1.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFFFFF 30%, #FF3B30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1.8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(36, 36, 44, 0.45);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  position: relative;
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link::after {
  display: none;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Custom Dropdown Selectors (iOS Capsule Style) */
.custom-select {
  position: relative;
}

.currency-btn, .lang-btn {
  background: rgba(44, 44, 46, 0.75);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.currency-btn:hover, .lang-btn:hover {
  border-color: var(--red-primary);
  background: rgba(58, 58, 60, 0.9);
}

.currency-dropdown, .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(28, 28, 35, 0.94);
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  padding: 0.4rem;
  display: none;
  z-index: 100;
}

html[dir="rtl"] .currency-dropdown,
html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

.currency-dropdown.show, .lang-dropdown.show {
  display: block;
  animation: iosModalIn 0.22s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes iosModalIn {
  from { opacity: 0; transform: scale(0.92) translateY(-6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.curr-option, .lang-option {
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.curr-option:hover, .lang-option:hover,
.curr-option.active, .lang-option.active {
  background: rgba(255, 59, 48, 0.18);
  color: #FFFFFF;
}

.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
}

.menu-toggle-btn .bar {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .btn-whatsapp-nav {
    display: none;
  }
}

/* ==========================================================================
   Page Banner & Breadcrumbs
   ========================================================================== */
.page-header-banner {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.15) 0%, transparent 60%),
              var(--bg-surface-1);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.breadcrumb-trail a {
  color: var(--text-muted);
}

.breadcrumb-trail a:hover {
  color: var(--red-hover);
}

.breadcrumb-arrow {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.page-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.page-main-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.65;
}

/* ==========================================================================
   Mobile Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-surface-1);
  border-left: 1px solid var(--border-red);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
}

html[dir="rtl"] .mobile-drawer {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid var(--border-red);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

html[dir="rtl"] .mobile-drawer.open {
  left: 0;
  right: auto;
}

.drawer-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
}

.drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.drawer-lang-curr {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-lang-btns, .drawer-curr-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.d-lang-btn, .d-curr-btn {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.d-lang-btn.active, .d-curr-btn.active {
  background: var(--red-primary);
  border-color: var(--red-hover);
  color: #FFFFFF;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

.drawer-overlay.show {
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  padding: 5rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(13, 15, 20, 0.88) 0%, rgba(13, 15, 20, 0.76) 42%, rgba(13, 15, 20, 0.97) 100%),
              radial-gradient(circle at 75% 20%, rgba(229, 9, 20, 0.18) 0%, transparent 60%),
              url('assets/images/hero_travel_roadtrip.jpg') center 25% / cover no-repeat;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(229, 9, 20, 0.18);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(229, 9, 20, 0.12);
  bottom: 0px;
  left: -50px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid var(--border-red);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFA4A8;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.hero-badge .badge-icon {
  color: var(--color-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 1.85rem;
  line-height: 1.7;
}

.hero-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-chip {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-chip i {
  color: var(--red-primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Showcase Card */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-card-showcase {
  background: linear-gradient(155deg, rgba(28, 31, 42, 0.96) 0%, rgba(13, 14, 20, 0.98) 100%);
  border: 1px solid rgba(229, 9, 20, 0.4);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.95), 0 0 40px rgba(229, 9, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

.hero-card-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-hover), transparent);
}

.hero-card-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

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

.hero-car-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  transform: translateZ(20px);
}

.tag-badge.red {
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  color: #FFFFFF;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-pill {
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.price-pill strong {
  color: #FF2E3B;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-car-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.35rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.85));
  transform: translateZ(15px);
}

.hero-card-showcase:hover .hero-car-img {
  transform: scale(1.05) translateY(-4px) translateZ(25px);
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.95));
}

.hero-car-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateZ(20px);
}

.car-headline h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

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

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

/* ==========================================================================
   Quick Search & Reservation Bar
   ========================================================================== */
.quick-search-container {
  position: relative;
  z-index: 20;
  margin-top: 1rem;
}

.quick-search-card {
  background: linear-gradient(155deg, rgba(22, 24, 32, 0.95) 0%, rgba(10, 11, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.6rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 9, 20, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.search-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 1.2rem;
  align-items: end;
}

.search-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.search-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.search-group label i {
  color: var(--red-primary);
}

.search-input {
  width: 100%;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  outline: none;
}

.search-input:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 12px var(--red-glow);
}

.btn-search-trigger {
  height: 46px;
  padding: 0 1.5rem;
  border-radius: var(--radius-sm);
  width: 100%;
}

@media (max-width: 1024px) {
  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-submit-group {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  .search-submit-group {
    grid-column: span 1;
  }
  .invisible-label {
    display: none;
  }
}

/* ==========================================================================
   Trust Stats Bar
   ========================================================================== */
.trust-stats-bar {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.85rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red-hover);
  flex-shrink: 0;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Fleet Section & Car Cards
   ========================================================================== */
.fleet-section {
  padding: 5rem 0;
  background: var(--bg-main);
  position: relative;
}

.view-all-cars-cta-wrapper {
  margin-top: 3.5rem;
}

.fleet-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(28, 28, 35, 0.75);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: rgba(44, 44, 46, 0.6);
  padding: 5px;
  border-radius: var(--radius-full);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.filter-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.filter-tab.active {
  background: linear-gradient(180deg, #FF453A 0%, #D70015 100%);
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(255, 59, 48, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.filter-secondary-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.transmission-filter {
  display: flex;
  background: rgba(44, 44, 46, 0.7);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 4px;
}

.trans-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.trans-btn.active {
  background: #3A3A3C;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sort-select {
  background: rgba(44, 44, 46, 0.75);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  outline: none;
  backdrop-filter: blur(16px);
}

.fleet-search-box {
  position: relative;
  min-width: 240px;
}

.fleet-search-box i {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: var(--text-dim);
}

html[dir="rtl"] .fleet-search-box i {
  left: auto;
  right: 0.9rem;
}

.fleet-search-box input {
  width: 100%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.9rem 0.55rem 2.2rem;
  color: #FFFFFF;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

html[dir="rtl"] .fleet-search-box input {
  padding: 0.55rem 2.2rem 0.55rem 0.9rem;
}

.fleet-search-box input:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 10px var(--red-glow);
}

/* Fleet Grid & Car Card */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .home-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fleet-grid, .home-featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.car-card {
  background: linear-gradient(165deg, rgba(24, 26, 34, 0.95) 0%, rgba(12, 13, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.car-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.car-card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 35px rgba(229, 9, 20, 0.22), 0 0 0 1px rgba(229, 9, 20, 0.35);
}

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

.car-card-img-wrap {
  position: relative;
  height: 225px;
  background: radial-gradient(circle at 50% 100%, #1c1f2b 0%, #08090d 100%);
  overflow: hidden;
  perspective: 1000px;
}

.car-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(12, 13, 18, 0.95), transparent);
  pointer-events: none;
  z-index: 1;
}

.car-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
}

.car-card:hover .car-card-img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.9));
}

.car-card-tags {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
  transform: translateZ(20px);
}

html[dir="rtl"] .car-card-tags {
  right: auto;
  left: 1rem;
}

.badge-tag {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-tag.luxury {
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-tag.suv {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #F1F5F9;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-tag.sport {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge-tag.economy {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.car-year-badge {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  background: rgba(15, 17, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: translateZ(20px);
}

html[dir="rtl"] .car-year-badge {
  right: auto;
  left: 1rem;
}

.car-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.car-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.car-category-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.car-card-price {
  text-align: right;
}

html[dir="rtl"] .car-card-price {
  text-align: left;
}

.car-price-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--red-hover);
  line-height: 1;
}

.car-price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(44, 44, 46, 0.6);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.65rem;
  margin-bottom: 1.15rem;
  backdrop-filter: blur(16px);
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.spec-item i {
  font-size: 1rem;
  color: var(--red-primary);
}

.spec-item strong {
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
}

.car-features-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.feat-row i {
  color: #30D158;
  font-size: 0.85rem;
}

.car-card-actions {
  margin-top: auto;
  display: flex;
  width: 100%;
}

.btn-card-wa {
  width: 100%;
  background: linear-gradient(180deg, #FF453A 0%, #D70015 100%);
  color: #FFFFFF;
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.16s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-card-wa:hover {
  background: linear-gradient(180deg, #FF5A4E 0%, #E50914 100%);
  box-shadow: 0 6px 22px rgba(255, 59, 48, 0.55);
  transform: translateY(-1px);
}

.btn-card-wa:active {
  transform: scale(0.97);
}

.btn-card-details {
  background: rgba(44, 44, 46, 0.85);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.16s cubic-bezier(0.32, 0.72, 0, 1), background 0.2s ease;
}

.btn-card-details:hover {
  background: rgba(58, 58, 60, 0.95);
  border-color: var(--red-primary);
}

.btn-card-details:active {
  transform: scale(0.95);
}

/* ==========================================================================
   Dedicated Booking Page
   ========================================================================== */
.dedicated-booking-section {
  padding: 3.5rem 0 5.5rem;
  background: var(--bg-main);
}

.booking-page-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}

.panel-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
}

.panel-header i {
  font-size: 2rem;
}

.panel-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
}

.panel-header span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-section-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section-title i {
  color: var(--red-primary);
}

.summary-sticky-card {
  position: sticky;
  top: 100px;
}

.summary-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.summary-car-card {
  display: flex;
  gap: 1rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.b-summary-img {
  width: 110px;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #000000;
}

.b-summary-details h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.b-summary-specs {
  display: flex;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.summary-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sum-row strong {
  color: #FFFFFF;
}

.sum-row.total-sum-row {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.summary-badges-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sum-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-support-box {
  background: var(--bg-surface-3);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.summary-support-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

@media (max-width: 992px) {
  .booking-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Blog & SEO Articles
   ========================================================================== */
.blog-main-section, .home-blog-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.blog-filter-btn {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-filter-btn.active, .blog-filter-btn:hover {
  background: var(--red-primary);
  border-color: var(--red-hover);
  color: #FFFFFF;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: linear-gradient(165deg, rgba(24, 26, 34, 0.95) 0%, rgba(12, 13, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 9, 20, 0.2);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #08090d;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

html[dir="rtl"] .blog-card-badge {
  right: auto;
  left: 1rem;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-title a:hover {
  color: var(--red-hover);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.read-more-link {
  color: var(--red-hover);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.read-more-link:hover {
  color: #FFFFFF;
  gap: 0.7rem;
}

/* Single Article Layout */
.single-article-section {
  padding: 3.5rem 0 5.5rem;
  background: var(--bg-main);
}

.single-article-container {
  max-width: 860px;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-tag {
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  color: var(--red-hover);
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
}

.article-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.article-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.article-featured-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-medium);
}

.article-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-content-body {
  font-size: 1.05rem;
  color: #E2E8F0;
  line-height: 1.85;
}

.article-content-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.article-content-body p {
  margin-bottom: 1.25rem;
}

.article-content-body ul, .article-content-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

html[dir="rtl"] .article-content-body ul, 
html[dir="rtl"] .article-content-body ol {
  margin: 1rem 1.5rem 1.5rem 0;
}

.article-content-body li {
  margin-bottom: 0.6rem;
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(20, 20, 28, 0.95) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.cta-box-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.cta-box-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.cta-box-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cta-box-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
}

.article-table th, .article-table td {
  padding: 0.95rem 1.2rem;
  text-align: inherit;
  border-bottom: 1px solid var(--border-light);
}

.article-table th {
  background: var(--bg-surface-3);
  color: #FFFFFF;
  font-weight: 700;
}

.article-footer-box {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
}

.share-btn.wa { background: var(--color-whatsapp); }
.share-btn.fb { background: #1877F2; }

/* ==========================================================================
   Admin Dashboard
   ========================================================================== */
.admin-body {
  background-color: #08080C;
  min-height: 100vh;
}

.admin-auth-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(229, 9, 20, 0.2) 0%, rgba(8, 8, 12, 0.98) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 5000;
}

.admin-auth-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(229, 9, 20, 0.25);
}

.auth-logo img {
  height: 65px;
  margin: 0 auto 1.5rem;
}

.admin-auth-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.admin-auth-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pin-input-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

.pin-input-wrap i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--red-primary);
}

html[dir="rtl"] .pin-input-wrap i {
  left: auto;
  right: 1rem;
}

.pin-input-wrap input {
  width: 100%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  color: #FFFFFF;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-align: center;
  outline: none;
}

html[dir="rtl"] .pin-input-wrap input {
  padding: 0.85rem 2.5rem 0.85rem 1rem;
}

.pin-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
  margin-top: 1rem;
}

/* Admin Dashboard Screen */
.admin-header {
  background: var(--bg-surface-1);
  border-bottom: 1px solid var(--border-red);
  padding: 1rem 0;
}

.admin-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header-actions {
  display: flex;
  gap: 0.75rem;
}

.admin-content {
  padding: 3rem 1.5rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.adm-stat-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.adm-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red-hover);
}

.adm-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
}

.adm-stat-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
}

.admin-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.adm-search-wrap {
  position: relative;
  min-width: 280px;
}

.adm-search-wrap i {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: var(--text-dim);
}

html[dir="rtl"] .adm-search-wrap i {
  left: auto;
  right: 0.9rem;
}

.adm-search-wrap input {
  width: 100%;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem 0.65rem 2.2rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
}

html[dir="rtl"] .adm-search-wrap input {
  padding: 0.65rem 2.2rem 0.65rem 0.9rem;
}

.adm-btns-group {
  display: flex;
  gap: 0.75rem;
}

.admin-table-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}

.table-card-header {
  margin-bottom: 1.5rem;
}

.table-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.table-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th, .admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.admin-table th {
  background: var(--bg-surface-2);
  color: var(--text-muted);
  font-weight: 700;
  text-align: inherit;
}

.adm-car-thumb {
  width: 70px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.adm-price-input {
  width: 100px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.6rem;
  color: #FFFFFF;
  font-weight: 700;
}

.adm-btn-save-price {
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  color: var(--red-hover);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.adm-btn-save-price:hover {
  background: var(--red-primary);
  color: #FFFFFF;
}

.adm-actions {
  display: flex;
  gap: 0.45rem;
}

.btn-adm-action {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  background: var(--bg-surface-2);
  color: var(--text-muted);
  cursor: pointer;
}

.btn-adm-action:hover {
  border-color: var(--red-primary);
  color: #FFFFFF;
}

.btn-adm-action.delete:hover {
  background: var(--red-primary);
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .adm-btns-group {
    flex-direction: column;
    width: 100%;
  }
}

/* ==========================================================================
   Advantages & Locations
   ========================================================================== */
.advantages-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(13, 15, 20, 0.92) 0%, rgba(18, 20, 28, 0.86) 50%, rgba(13, 15, 20, 0.95) 100%),
              url('assets/images/tangier_sunset_drive.jpg') center center / cover no-repeat fixed;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Travel Roadtrip Experience Banner */
.travel-roadtrip-section {
  padding: 4.5rem 0;
  position: relative;
}

.travel-roadtrip-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: 4.5rem 3.5rem;
  background: linear-gradient(135deg, rgba(13, 15, 20, 0.93) 0%, rgba(13, 15, 20, 0.75) 50%, rgba(13, 15, 20, 0.92) 100%),
              url('assets/images/morocco_roadtrip_fun.jpg') center 35% / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(229, 9, 20, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.travel-roadtrip-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.travel-roadtrip-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 59, 48, 0.2);
  border: 1px solid rgba(255, 59, 48, 0.45);
  color: #FF8A80;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.travel-roadtrip-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.travel-roadtrip-desc {
  font-size: 1.08rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.travel-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.travel-chip {
  background: rgba(28, 28, 35, 0.85);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
}

.travel-chip i {
  color: var(--red-hover);
}

.travel-roadtrip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .travel-roadtrip-banner {
    padding: 2.5rem 1.5rem;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.adv-card {
  background: linear-gradient(165deg, rgba(24, 26, 34, 0.95) 0%, rgba(12, 13, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.adv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.adv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 9, 20, 0.2);
}

.adv-card:hover::before {
  opacity: 1;
}

.adv-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.18) 0%, rgba(13, 13, 18, 0.8) 100%);
  border: 1px solid rgba(229, 9, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--red-hover);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.25);
  transform: translateZ(15px);
}

.adv-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  transform: translateZ(12px);
}

.adv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  transform: translateZ(8px);
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Digital Experience & VIP Delivery Showcase (cars.jpg & download.jpg)
   ========================================================================== */
.digital-experience-section {
  padding: 5.5rem 0;
  background: var(--bg-surface-1);
  position: relative;
  overflow: hidden;
}

.digital-experience-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.digital-experience-grid {
  max-width: 1050px;
  margin: 0 auto;
}

.exp-card {
  background: linear-gradient(170deg, rgba(26, 28, 36, 0.85) 0%, rgba(14, 15, 20, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(229, 9, 20, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(229, 9, 20, 0.2);
}

.exp-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-media-img {
  transform: scale(1.05);
}

.exp-floating-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(14, 15, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

html[dir="rtl"] .exp-floating-badge {
  left: auto;
  right: 1rem;
}

.exp-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  box-sizing: border-box;
}

.exp-step-pill {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-primary);
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: fit-content;
}

.exp-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  word-break: break-word;
}

.exp-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.exp-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.exp-feat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #E2E8F0;
}

.exp-feat-item i {
  color: #22C55E;
  font-size: 1rem;
  flex-shrink: 0;
}

.exp-card-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.exp-card-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  font-size: 0.92rem;
}

@media (max-width: 992px) {
  .exp-card {
    grid-template-columns: 1fr;
  }
  .exp-card-media {
    height: 260px;
    min-height: auto;
  }
  .exp-card-body {
    padding: 1.75rem;
  }
}

@media (max-width: 640px) {
  .digital-experience-section {
    padding: 3.5rem 0;
  }
  .exp-card-media {
    height: 200px;
  }
  .exp-card-body {
    padding: 1.35rem 1rem;
  }
  .exp-card-title {
    font-size: 1.15rem;
  }
  .exp-card-actions {
    flex-direction: column;
    gap: 0.65rem;
  }
  .exp-card-actions .btn {
    width: 100%;
  }
  .exp-floating-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    bottom: 0.65rem;
    left: 0.65rem;
  }
  html[dir="rtl"] .exp-floating-badge {
    left: auto;
    right: 0.65rem;
  }
}

/* Locations */
.locations-section {
  padding: 5.5rem 0;
  background: var(--bg-main);
}

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

.location-card {
  background: linear-gradient(165deg, rgba(24, 26, 34, 0.95) 0%, rgba(12, 13, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.location-card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 9, 20, 0.2);
  transform: translateY(-4px);
}

.loc-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.loc-icon {
  font-size: 2rem;
  color: var(--red-primary);
  background: rgba(229, 9, 20, 0.12);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 9, 20, 0.35);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.2);
}

.loc-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.loc-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ADE80;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
}

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

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Testimonials & FAQ & Contact
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.stars {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-size: 0.95rem;
  color: #E2E8F0;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary) 0%, #1E1E28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.reviewer-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.reviewer-from {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-section {
  padding: 5.5rem 0;
  background: var(--bg-main);
}

.faq-accordion-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-red);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-align: inherit;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--red-primary);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem;
}

/* Contact */
.contact-section {
  padding: 80px 0;
  background: var(--bg-surface-1);
  position: relative;
  overflow: hidden;
}

.contact-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(229, 9, 20, 0.12);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
  line-height: 1.25;
  word-break: break-word;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.contact-item-row:hover {
  border-color: var(--red-primary);
  transform: translateX(-4px);
}

html[dir="ltr"] .contact-item-row:hover {
  transform: translateX(4px);
}

.contact-item-row > div {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.c-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--red-soft-bg);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--red-hover);
  flex-shrink: 0;
}

.c-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.15rem;
}

.c-val {
  font-size: 0.95rem;
  color: #FFFFFF;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
  font-weight: 700;
}

.contact-form-col {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.fast-booking-form-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  box-sizing: border-box;
}

.form-card-header i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-card-header > div {
  min-width: 0;
  flex: 1;
}

.form-card-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0 0 0.25rem 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.form-card-header span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

.direct-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  box-sizing: border-box;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.form-field label i {
  color: var(--red-primary);
  font-size: 0.88rem;
  width: 16px;
  text-align: center;
}

.direct-form input,
.direct-form select,
.direct-form textarea,
.form-input,
.form-select {
  width: 100% !important;
  background: var(--bg-surface-2) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 0.95rem !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  min-height: 48px;
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box !important;
  font-family: inherit;
}

.direct-form input:focus,
.direct-form select:focus,
.direct-form textarea:focus,
.form-input:focus,
.form-select:focus,
textarea:focus {
  border-color: var(--red-primary) !important;
  box-shadow: 0 0 12px var(--red-glow) !important;
  background: rgba(26, 26, 32, 0.95) !important;
}

.direct-form textarea,
textarea.form-input {
  min-height: 75px;
  resize: vertical;
}

.btn-whatsapp-submit {
  width: 100% !important;
  min-height: 52px;
  padding: 0.85rem 1.25rem !important;
  font-size: 0.98rem !important;
  font-weight: 700;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: normal !important;
  text-align: center;
  line-height: 1.35;
  box-sizing: border-box;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 18px rgba(229, 9, 20, 0.35);
  margin-top: 0.35rem;
}

@media (max-width: 992px) {
  .contact-card-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 50px 0 70px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .contact-card-wrapper {
    padding: 1.25rem 0.85rem;
    border-radius: var(--radius-lg);
    gap: 1.5rem;
  }
  .fast-booking-form-card {
    padding: 1.25rem 0.85rem;
    border-radius: var(--radius-lg);
  }
  .contact-title {
    font-size: 1.6rem;
  }
  .form-card-header h3 {
    font-size: 1.02rem;
  }
  .contact-item-row {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
  }
  .c-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .c-val {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #030304;
  border-top: 1px solid var(--border-red);
  padding: 4.5rem 0 1.5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0;
  line-height: 1.65;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--red-primary);
  color: #FFFFFF;
  border-color: var(--red-hover);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red-primary);
}

html[dir="rtl"] .footer-heading::after {
  left: auto;
  right: 0;
}

.footer-links, .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--red-hover);
  transform: translateX(4px);
}

html[dir="rtl"] .footer-links a:hover {
  transform: translateX(-4px);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-list i {
  color: var(--red-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-badges {
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ==========================================================================
   Modals & Extras
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(229, 9, 20, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.modal-title-box i {
  font-size: 1.75rem;
  color: var(--color-whatsapp);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.modal-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

.modal-body {
  padding: 1.75rem;
}

.modal-car-preview {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.m-car-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #000000;
}

.m-car-info {
  flex: 1;
}

.m-car-tag {
  background: var(--red-soft-bg);
  color: var(--red-hover);
  border: 1px solid var(--border-red);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.m-car-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.m-car-specs {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.m-car-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.m-car-price strong {
  font-size: 1.2rem;
  color: var(--red-hover);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem;
}

.extra-checkbox {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.extra-checkbox input {
  accent-color: var(--red-primary);
}

.booking-summary-box {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(20, 20, 28, 0.9) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.summary-row strong {
  color: #FFFFFF;
}

.summary-row.total-row {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.total-price-box strong {
  font-size: 1.45rem;
  color: var(--red-hover);
}

/* Floating Actions */
.floating-contact-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 800;
}

html[dir="rtl"] .floating-contact-bar {
  right: auto;
  left: 2rem;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: all var(--transition-normal);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: var(--color-whatsapp);
  animation: pulseWa 2.2s infinite;
}

.float-phone {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-tooltip {
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  color: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

html[dir="rtl"] .float-tooltip {
  left: auto;
  right: calc(100% + 12px);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-surface-2);
  border: 1px solid var(--color-green);
  color: #FFFFFF;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Booking Page: Top Car Showcase Banner
   ========================================================================== */
.booking-top-car-banner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 2rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 9, 20, 0.12);
}

.top-car-img-wrap {
  width: 100%;
  height: 150px;
  background: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.top-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.booking-top-car-banner:hover .top-car-img {
  transform: scale(1.05);
}

.top-car-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.top-car-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-car-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 0.25rem;
}

.top-car-price-box {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-red);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.top-price-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red-hover);
}

.top-car-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-car-specs-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-car-switcher-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border-light);
}

.top-car-switcher-row label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.top-car-select {
  flex: 1;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  background: var(--bg-surface-1);
  border-color: var(--border-medium);
}

@media (max-width: 768px) {
  .booking-top-car-banner {
    grid-template-columns: 1fr;
  }
  .top-car-img-wrap {
    height: 180px;
  }
  .top-car-switcher-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   Interactive Star Rating Picker & Review Modal
   ========================================================================== */
.star-rating-picker {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
}

.star-pick {
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
}

.star-pick.active {
  color: var(--color-gold);
}

.star-pick:hover {
  transform: scale(1.25);
}

.review-modal-content {
  max-width: 600px;
}

/* ==========================================================================
   Article Comments & Discussion Section
   ========================================================================== */
.article-comments-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-medium);
}

.comments-main-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.comment-item {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color var(--transition-normal);
}

.comment-item:hover {
  border-color: var(--border-medium);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.comment-body {
  flex: 1;
}

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

.comment-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.comment-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.add-comment-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.add-comment-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ==========================================================================
   Inline Review Card & Review Under Review Message Banner
   ========================================================================== */
.inline-review-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 9, 20, 0.15);
  animation: fadeInReview 0.35s ease-out;
}

@keyframes fadeInReview {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inline-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.inline-review-header h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-close-inline {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.btn-close-inline:hover {
  color: var(--red-hover);
}

.review-success-banner {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--color-green);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInReview 0.35s ease-out;
}

.success-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.banner-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ==========================================================================
   Google Maps Reviews Theme & Styling
   ========================================================================== */
.google-maps-theme {
  position: relative;
}

.google-text-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.google-rating-summary-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 2rem;
  background: #1e222b;
  border: 1px solid rgba(66, 133, 244, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(66, 133, 244, 0.08);
}

.google-brand-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-g-logo {
  flex-shrink: 0;
}

.g-brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.g-brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.g-verified-pill {
  font-size: 0.8rem;
  color: #8ab4f8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.google-score-col {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.5rem;
}

html[dir="rtl"] .google-score-col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.g-big-score {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.g-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.g-stars-row {
  color: #FBBC04;
  font-size: 1.2rem;
  display: flex;
  gap: 0.2rem;
}

.g-review-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-google-review {
  background: #202124;
  color: #8ab4f8;
  border: 1px solid rgba(138, 180, 248, 0.4);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-google-review:hover {
  background: #303134;
  border-color: #8ab4f8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.25);
}

/* Google Cards */
.google-card {
  background: #1e222b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all var(--transition-normal);
}

.google-card:hover {
  border-color: rgba(66, 133, 244, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.g-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.g-reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.g-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g-avatar-1 { background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%); }
.g-avatar-2 { background: linear-gradient(135deg, #ea4335 0%, #b71c1c 100%); }
.g-avatar-3 { background: linear-gradient(135deg, #34a853 0%, #1b5e20 100%); }

.g-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.15rem 0;
}

.g-sub-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.g-guide-badge {
  font-size: 0.78rem;
  color: #8ab4f8;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.g-guide-badge i {
  color: #FBBC04;
  font-size: 0.7rem;
}

.g-rating-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.g-stars {
  color: #FBBC04;
  font-size: 0.95rem;
  display: flex;
  gap: 0.15rem;
}

.g-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.g-review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}

.g-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.g-tag-car {
  font-size: 0.8rem;
  color: var(--red-hover);
  background: rgba(229, 9, 20, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.g-helpful-btn {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.g-helpful-btn:hover {
  color: #8ab4f8;
}

/* Google Maps Dialog / Inline Form */
.google-review-card {
  background: #202124;
  border: 1px solid rgba(66, 133, 244, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(66, 133, 244, 0.15);
}

.google-dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.g-dialog-title-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.g-dialog-title-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.2rem 0;
}

.g-dialog-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.google-star-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.g-star-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.google-star-picker {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.google-star-picker .star-pick {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
}

.google-star-picker .star-pick.active {
  color: #FBBC04;
}

.google-star-picker .star-pick:hover {
  transform: scale(1.25);
  color: #FBBC04;
}

.g-rating-tag {
  color: #FBBC04;
  font-weight: 800;
  font-size: 0.95rem;
  margin-right: 0.85rem;
}

.google-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn-google-submit {
  background: #1a73e8;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.35);
}

.btn-google-submit:hover {
  background: #1557b0;
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.5);
  transform: translateY(-2px);
}

.google-success-banner {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.15) 0%, rgba(32, 33, 36, 0.95) 100%);
  border: 1px solid #34a853;
}

.g-success-badge-icon {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .google-rating-summary-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }
  .google-brand-badge {
    justify-content: center;
  }
  .google-score-col {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    justify-content: center;
  }
  .google-cta-col {
    display: flex;
    justify-content: center;
  }
}

/* ==========================================================================
   Authentic Google Maps Review Dialog Styling
   ========================================================================== */
.google-maps-review-modal {
  background: #202124 !important;
  border: 1px solid #3c4043 !important;
  border-radius: 16px !important;
  padding: 1.75rem 2rem !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(66, 133, 244, 0.15) !important;
  color: #e8eaed;
}

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

.gm-user-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.gm-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a73e8;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gm-user-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.15rem 0;
}

.gm-privacy-note {
  font-size: 0.78rem;
  color: #9aa0a6;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gm-business-tag {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #2d2f34;
  border: 1px solid #3c4043;
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.5rem;
}

.gm-biz-icon {
  font-size: 1.2rem;
}

.gm-biz-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
}

.gm-biz-cat {
  display: block;
  font-size: 0.78rem;
  color: #9aa0a6;
}

.gm-stars-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #292a2d;
  border: 1px solid #3c4043;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.gm-stars-title {
  font-size: 0.9rem;
  color: #e8eaed;
  font-weight: 600;
}

.gm-rating-status {
  color: #FBBC04;
  font-size: 1rem;
  font-weight: 800;
}

.gm-chips-section {
  margin-bottom: 1.5rem;
}

.gm-chips-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e8eaed;
  margin-bottom: 0.65rem;
}

.gm-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gm-chip {
  background: #2d2f34;
  border: 1px solid #5f6368;
  color: #e8eaed;
  padding: 0.4rem 0.85rem;
  border-radius: 18px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gm-chip:hover {
  background: #3c4043;
  border-color: #8ab4f8;
}

.gm-chip.active {
  background: rgba(138, 180, 248, 0.18);
  border-color: #8ab4f8;
  color: #8ab4f8;
  font-weight: 700;
}

.gm-field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e8eaed;
  margin-bottom: 0.45rem;
}

.gm-input, .gm-select, .gm-textarea {
  background: #2d2f34 !important;
  border: 1px solid #5f6368 !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
}

.gm-input:focus, .gm-select:focus, .gm-textarea:focus {
  border-color: #8ab4f8 !important;
  box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.25) !important;
}

.gm-hint-text {
  display: block;
  font-size: 0.78rem;
  color: #9aa0a6;
  margin-top: 0.4rem;
}

.gm-footer-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid #3c4043;
}

.gm-btn-cancel {
  background: none;
  border: none;
  color: #8ab4f8;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.gm-btn-cancel:hover {
  background: rgba(138, 180, 248, 0.1);
}

.gm-btn-publish {
  background: #1a73e8;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.4);
}

.gm-btn-publish:hover {
  background: #1557b0;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.6);
  transform: translateY(-1px);
}

/* ==========================================================================
   Speed & Performance Optimization + Custom Luxury Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #08090C;
}

::-webkit-scrollbar-thumb {
  background: #252833;
  border-radius: 999px;
  border: 2px solid #08090C;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

/* GPU Hardware Acceleration for ultra-smooth 60fps renders */
.car-card, .hero-card-showcase, .adv-card, .location-card, .google-card, .blog-card, .btn {
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Live Operational Status Ping */
.status-live-ping {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.status-dot-ping {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePing 1.8s infinite;
}

@keyframes livePing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==========================================================================
   Trustpilot 5-Star Rating Widget (iOS Glass Style)
   ========================================================================== */
.trustpilot-bar-section {
  padding: 2.5rem 0 1rem;
  background: var(--bg-main);
  position: relative;
  z-index: 10;
}

.trustpilot-badge-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 2rem;
  background: linear-gradient(135deg, rgba(20, 25, 28, 0.88) 0%, rgba(12, 15, 18, 0.95) 100%);
  border: 0.5px solid rgba(0, 182, 122, 0.35);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(25px) saturate(190%);
  -webkit-backdrop-filter: blur(25px) saturate(190%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 182, 122, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.trustpilot-badge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 182, 122, 0.6);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 182, 122, 0.22);
}

.tp-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tp-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tp-star-icon {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(0, 182, 122, 0.5));
}

.tp-brand-info {
  display: flex;
  flex-direction: column;
}

.tp-text {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.1;
}

.tp-status-verified {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00B67A;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.tp-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

.tp-stars-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.tp-star-box {
  width: 30px;
  height: 30px;
  background: #00B67A;
  color: #FFFFFF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(0, 182, 122, 0.35);
  transition: transform 0.2s ease;
}

.trustpilot-badge-card:hover .tp-star-box {
  transform: scale(1.06);
}

.tp-score-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.2;
}

.tp-score-text strong {
  color: #FFFFFF;
  font-weight: 800;
}

.tp-score-text .tp-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.tp-right {
  display: flex;
  align-items: center;
}

.btn-tp-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 182, 122, 0.15);
  color: #00B67A;
  border: 0.5px solid rgba(0, 182, 122, 0.4);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.btn-tp-reviews:hover {
  background: #00B67A;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 182, 122, 0.5);
  transform: translateY(-1px);
}

.btn-tp-reviews:active {
  transform: scale(0.95);
}

@media (max-width: 960px) {
  .trustpilot-badge-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.15rem;
  }
  .tp-left {
    justify-content: center;
  }
}

/* ==========================================================================
   Car Brands Infinite Marquee (Right to Left Smooth Motion)
   ========================================================================== */
.brands-marquee-section {
  padding: 1.85rem 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.7) 0%, rgba(8, 8, 12, 0.9) 100%);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 5;
}

.brands-marquee-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.brands-marquee-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brands-marquee-tag i {
  color: var(--red-primary);
}

.brands-track-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  direction: ltr !important;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
  animation: brandsScrollRightToLeft 28s linear infinite;
  will-change: transform;
}

.brands-marquee-section:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brandsScrollRightToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.brand-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.4rem;
  background: rgba(28, 28, 34, 0.75);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: all 0.25s cubic-bezier(0.32, 0.72, 0, 1);
  text-decoration: none;
  color: #FFFFFF;
}

.brand-capsule:hover {
  background: rgba(44, 44, 52, 0.95);
  border-color: var(--red-primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-logo-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  padding: 2px;
  overflow: hidden;
  box-sizing: border-box;
}

.brand-logo-img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
  display: block;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.brand-capsule:hover .brand-logo-img {
  transform: scale(1.18);
}

.brand-name-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.brand-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Payment Method (الدفع عند الاستلام) Styles
   ========================================================================== */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}

.payment-method-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(28, 28, 34, 0.75);
  border: 1.5px solid rgba(48, 209, 88, 0.4);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.payment-method-card.active,
.payment-method-card:hover {
  background: rgba(36, 36, 44, 0.9);
  border-color: #30D158;
  box-shadow: 0 8px 30px rgba(48, 209, 88, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.payment-method-card input[type="radio"] {
  accent-color: #30D158;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
}

.pay-card-content {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.pay-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(48, 209, 88, 0.15);
  border: 1px solid rgba(48, 209, 88, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #30D158;
  flex-shrink: 0;
}

.pay-info {
  flex: 1;
}

.pay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.pay-header strong {
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 800;
}

.badge-recommended {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(48, 209, 88, 0.2);
  color: #30D158;
  border: 0.5px solid rgba(48, 209, 88, 0.4);
}

.pay-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   AIRPORT FEATURED LOCATION CARD
   ========================================================================== */

.location-card-featured {
  position: relative;
  border: 1px solid var(--red-border) !important;
  background: linear-gradient(135deg, rgba(255,59,48,0.08) 0%, rgba(28,28,35,0.9) 100%) !important;
  box-shadow: 0 0 0 1px var(--red-border), 0 8px 32px rgba(255,59,48,0.18) !important;
  overflow: hidden;
}

.location-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), #FF8A65);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.loc-featured-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(255, 214, 10, 0.12);
  border: 0.5px solid rgba(255, 214, 10, 0.35);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.loc-icon-featured {
  color: var(--red-primary) !important;
  filter: drop-shadow(0 0 8px rgba(255,59,48,0.5));
}

.loc-badge-gold {
  background: rgba(255, 214, 10, 0.15) !important;
  color: var(--color-gold) !important;
  border-color: rgba(255, 214, 10, 0.35) !important;
}

.loc-airport-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 1rem;
}

.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.28rem 0.75rem;
}

.loc-chip i {
  color: var(--red-primary);
  font-size: 0.7rem;
}

.loc-airport-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ==========================================================================
   DEDICATED AIRPORT SECTION
   ========================================================================== */

.airport-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0f 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.airport-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,59,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.airport-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Info Panel */
.airport-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.airport-section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
  line-height: 1.2 !important;
  margin: 0.5rem 0 1rem !important;
}

.airport-section-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.airport-details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
}

.airport-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.airport-detail-row:last-child {
  border-bottom: none;
}

.airport-detail-row:hover {
  background: rgba(255,255,255,0.04);
}

.airport-detail-icon {
  font-size: 1rem;
  color: var(--red-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

.airport-detail-row div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.airport-detail-row strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.airport-detail-row span {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.airport-cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.airport-cta-row .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

/* Map Panel */
.airport-map-panel {
  position: sticky;
  top: 100px;
}

.airport-map-wrapper {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-ios-card);
}

.airport-map-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.airport-map-header i {
  color: var(--red-primary);
  font-size: 1rem;
}

.airport-map-iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: brightness(0.9) contrast(1.05) saturate(0.9);
}

.airport-map-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   COMPREHENSIVE MASTER MOBILE RESPONSIVE SYSTEM (SALMOH RENT CAR)
   iPhone (12/13/14/15/16 Pro & Max), Android (Galaxy, Pixel, Xiaomi),
   and Compact Screens (320px - 768px). Fully optimized for Touch & Safe Areas.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TABLETS & SMALL LAPTOPS (max-width: 1080px / 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .btn-whatsapp-nav {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-submit-group {
    grid-column: span 2;
  }
  .booking-page-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-card-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 900px) {
  .airport-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .airport-map-panel {
    position: static;
  }
  .airport-map-iframe {
    height: 300px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .google-rating-summary-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }
  .trustpilot-badge-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.15rem;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   2. STANDARD MOBILE SMARTPHONES (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Safe Area Header */
  .site-header {
    padding-top: max(0px, env(safe-area-inset-top));
  }
  .nav-container {
    height: 64px;
  }
  .logo-img {
    height: 40px;
    width: 40px;
  }
  .brand-name {
    font-size: 1.22rem;
  }
  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 1.3px;
  }
  
  .menu-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(44, 44, 48, 0.8);
    border: 0.5px solid rgba(255, 255, 255, 0.16);
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 3.5rem 0 2.5rem;
    min-height: auto;
  }
  .hero-container {
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .hero-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: clamp(1.75rem, 6.8vw, 2.5rem);
    line-height: 1.22;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }
  
  /* 2x2 Clean Feature Chips on Mobile */
  .hero-features-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
  }
  .hero-chip {
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-md);
    background: rgba(28, 28, 36, 0.85);
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius-full);
  }
  
  /* Hero Showcase Card on Mobile */
  .hero-visual {
    margin-top: 0.5rem;
  }
  .hero-card-showcase {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
  }
  .hero-car-img {
    max-height: 175px;
    margin: 0.5rem auto;
    object-fit: contain;
  }

  /* Brands Infinite Ticker Mobile */
  .brands-marquee-section {
    padding: 1.25rem 0;
  }
  .brands-track {
    gap: 0.85rem;
    animation-duration: 22s;
  }
  .brand-capsule {
    padding: 0.45rem 0.95rem;
    gap: 0.55rem;
  }
  .brand-logo-icon {
    width: 26px;
    height: 26px;
  }
  .brand-name-text {
    font-size: 0.85rem;
  }
  .brand-type-badge {
    font-size: 0.65rem;
    padding: 0.12rem 0.45rem;
  }

  /* Fleet Filters Horizontal Touch Swipe Bar */
  .fleet-filter-bar {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    gap: 1rem;
  }
  .filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.4rem;
    padding: 4px;
    border-radius: var(--radius-full);
    background: rgba(36, 36, 44, 0.7);
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.48rem 1rem;
    font-size: 0.82rem;
  }
  .filter-secondary-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0.75rem;
  }
  .filter-search-box, .filter-sort-box {
    width: 100%;
  }

  /* Fleet Grid & Single Column Car Cards */
  .fleet-section {
    padding: 3.5rem 0;
  }
  .fleet-grid, .home-featured-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .car-card {
    border-radius: var(--radius-lg);
  }
  .car-card:active {
    transform: scale(0.985);
  }
  .car-card-img-wrap {
    height: 200px;
  }
  .car-card-body {
    padding: 1.25rem 1.15rem 1.15rem;
  }
  .car-title {
    font-size: 1.18rem;
  }
  .car-price-val {
    font-size: 1.38rem;
  }
  .car-specs-grid {
    padding: 0.65rem 0.5rem;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }
  .spec-item {
    font-size: 0.74rem;
    gap: 0.15rem;
  }
  .spec-item i {
    font-size: 0.92rem;
  }
  .btn-card-wa {
    min-height: 48px;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }

  /* Dedicated Booking Page Mobile */
  .page-header-banner {
    padding: 2.5rem 0 1.75rem;
  }
  .page-main-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
  }
  .page-main-desc {
    font-size: 0.92rem;
  }
  .dedicated-booking-section {
    padding: 2rem 0 3.5rem;
  }
  .panel-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }
  .booking-top-car-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .top-car-img-wrap {
    height: 165px;
  }

  /* Locations & Why Us Cards */
  .advantages-grid, .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .adv-card, .location-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }

  /* Travel Banner */
  .travel-roadtrip-banner {
    padding: 2.25rem 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
  }

  /* Floating WhatsApp / Phone Contact Bar */
  .floating-contact-bar {
    bottom: max(1.15rem, env(safe-area-inset-bottom));
    right: 1.15rem;
    left: auto;
    gap: 0.65rem;
  }
  html[dir="rtl"] .floating-contact-bar {
    right: auto;
    left: 1.15rem;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.65);
  }
  .float-tooltip {
    display: none !important;
  }

  /* Footer Mobile */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Admin Mobile Layout */
  .admin-header .admin-nav-inner {
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .adm-stat-card {
    padding: 0.85rem;
    gap: 0.75rem;
  }
  .adm-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .adm-stat-val {
    font-size: 1.15rem;
  }
  .admin-controls-bar {
    flex-direction: column;
    gap: 0.85rem;
  }
  .adm-btns-group {
    flex-direction: column;
    width: 100%;
  }
  .adm-btns-group .btn {
    width: 100%;
    justify-content: center;
  }
  .table-responsive {
    border-radius: var(--radius-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-light);
  }
}

/* --------------------------------------------------------------------------
   3. COMPACT PHONES & BOTTOM SHEET MODAL (max-width: 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  /* Search Form on Phones */
  .search-form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .search-submit-group {
    grid-column: span 1;
  }
  .invisible-label {
    display: none;
  }
  .btn-search-trigger {
    height: 48px;
    font-size: 0.95rem;
  }

  /* Form Rows Stack */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .contact-card-wrapper {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  /* Blog Listing on Mobile */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .blog-card {
    border-radius: var(--radius-lg);
  }
  .blog-card-img-wrap {
    height: 180px;
  }

  /* Airport Section Mobile */
  .airport-section {
    padding: 50px 0;
  }
  .airport-section-grid {
    gap: 1.5rem;
  }
  .airport-detail-row {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }
  .airport-cta-row {
    flex-direction: column;
    gap: 0.65rem;
  }
  .airport-cta-row .btn {
    width: 100%;
  }

  /* Modal iOS Sheet Transformation on Mobile */
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .modal-dialog {
    max-width: 100%;
    max-height: 92vh;
    max-height: 92dvh;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1);
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.9);
  }
  .modal-backdrop.open .modal-dialog {
    transform: translateY(0);
  }
  .modal-header {
    padding: 1.15rem 1.25rem;
    position: sticky;
    top: 0;
    background: rgba(28, 28, 35, 0.96);
    backdrop-filter: blur(20px);
    z-index: 10;
  }
  .modal-body {
    padding: 1.25rem 1.15rem;
  }
  .modal-car-preview {
    flex-direction: row;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: var(--radius-md);
  }
  .m-car-img {
    width: 95px;
    height: 65px;
  }
  .m-car-info h4 {
    font-size: 0.98rem;
  }
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .extra-checkbox {
    padding: 0.75rem 0.85rem;
  }
  .booking-summary-box {
    padding: 0.95rem 1.1rem;
  }
  .btn-whatsapp-confirm {
    min-height: 48px;
    font-size: 0.98rem;
  }

  /* Toast Centering */
  .toast-notification {
    width: calc(100% - 2rem);
    max-width: 380px;
    bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}

/* --------------------------------------------------------------------------
   4. ULTRA-COMPACT SCREENS (max-width: 480px / 360px - iPhone SE, Galaxy A)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .site-header {
    backdrop-filter: blur(20px);
  }
  .nav-container {
    height: 60px;
  }
  .logo-img {
    height: 36px;
    width: 36px;
  }
  .brand-name {
    font-size: 1.12rem;
  }
  .brand-sub {
    font-size: 0.52rem;
    letter-spacing: 1px;
  }
  .lang-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.76rem;
    gap: 0.3rem;
  }
  .hero-features-chips {
    grid-template-columns: 1fr;
  }
  .hero-chip {
    justify-content: flex-start;
    padding: 0.45rem 0.85rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .floating-contact-bar {
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    right: 0.85rem;
    left: auto;
  }
  html[dir="rtl"] .floating-contact-bar {
    right: auto;
    left: 0.85rem;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 360px) {
  .nav-container {
    height: 56px;
  }
  .brand-sub {
    display: none;
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .logo-img {
    height: 32px;
    width: 32px;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .car-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-tab {
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
  }
}

