/* Component Styles: Navbar, Footer, BookingModal, CarCard, CustomCursor, FloatingActions, PageLoader, SectionHeading */

/* Home sync: navbar layout brought in from rent-a-ride-html without changing labels/links. */
.navbar-header {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1260px);
  height: 70px;
  flex-direction: row;
  border-radius: 9999px;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar-header .top-contact-bar {
  display: none;
}

.navbar-header.inner-page-nav {
  top: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar-header.scrolled {
  top: 0.65rem;
  height: 64px !important;
  width: min(90vw, 1200px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.navbar-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.desktop-nav .nav-links {
  gap: 4px;
  background: rgba(9, 9, 11, 0.05);
  padding: 4px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  box-sizing: border-box;
}

.nav-item {
  color: #3F3F46;
  font-size: 0.82rem;
  letter-spacing: 0;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
}

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

.nav-item:hover {
  background: rgba(9, 9, 11, 0.06);
  color: #09090B;
}

.nav-item.active {
  background: #09090B;
  color: #FFFFFF !important;
  box-shadow: 0 2px 6px rgba(9, 9, 11, 0.15);
}

.navbar-actions {
  gap: 0.75rem;
}

.nav-cta-btn {
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
}

/* Navbar */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 116px;
  z-index: var(--z-header);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: height var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.top-contact-bar {
  width: 100%;
  height: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  background: var(--bg-deep-blue);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  overflow: hidden;
  transition: height var(--transition-smooth), min-height var(--transition-smooth), opacity var(--transition-fast);
}

.top-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-social-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.top-social-link:hover {
  color: var(--bg-deep-blue);
  background: var(--accent-gold);
  transform: translateY(-1px);
}

.top-contact-details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.top-contact-item i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.top-contact-item:hover {
  color: var(--accent-gold);
}

.navbar-header.inner-page-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(11, 19, 37, 0.05);
}

.navbar-header.inner-page-nav .nav-item {
  color: var(--text-body-dark);
}

.navbar-header.inner-page-nav .nav-item:hover {
  color: var(--bg-deep-blue);
}

.navbar-header.inner-page-nav .nav-item.active {
  color: #FFFFFF !important;
  background: #09090B !important;
}

.navbar-header.scrolled {
  height: 72px !important;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(11, 19, 37, 0.08);
}

.navbar-header.scrolled .top-contact-bar {
  height: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.navbar-header.scrolled .nav-item {
  color: var(--text-body-dark);
}

.navbar-header.scrolled .nav-item:hover {
  color: var(--bg-deep-blue);
}

.navbar-header.scrolled .nav-item.active {
  color: #FFFFFF !important;
  background: #09090B !important;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.navbar-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Rent A Ride logo asset */
.rar-logo-img {
  display: block;
  width: clamp(200px, 18vw, 245px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-item {
  color: #0F172A;
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-item:hover,
.nav-item.active {
  color: #0B1325;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-cta-btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.85rem;
}

.nav-whatsapp-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.nav-whatsapp-btn:hover {
  transform: translateY(-2px);
  background: #25D366;
  color: #071326;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.nav-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.mobile-toggle-btn {
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.75rem;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-link .link-num {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--text-light);
}

.mobile-overlay-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-direct-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.mobile-contact-item {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-line {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* Section Heading */
.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 760px;
}

.section-heading.align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.align-center .eyebrow {
  justify-content: center;
}

.section-heading.align-right {
  margin-left: auto;
  text-align: right;
}

.heading-title {
  font-size: var(--text-h2);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.heading-subtitle {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Car Card */
.car-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.car-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent 0%, rgba(212, 175, 55, 0.8) 30%, rgba(15, 44, 89, 0.28) 55%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.car-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-border);
  transform: translateY(-4px);
}

.car-card-image-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-light);
}

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

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

.car-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg-deep-blue);
  color: var(--text-light);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

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

.car-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  display: block;
}

.car-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.2rem;
  line-height: 1.25;
}

.car-tagline {
  font-size: 0.85rem;
  color: var(--text-body-dark);
  margin-top: 0.35rem;
}

.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-light);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-body-dark);
}

.spec-icon {
  color: var(--bg-deep-blue);
  font-size: 0.85rem;
}

.car-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
}

.car-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.675rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.price-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-deep-blue);
}

.car-book-btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.825rem;
}

/* Premium Booking Drawer */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  justify-content: flex-end;
  width: 100vw;
  height: 100dvh;
  background: rgba(2, 7, 13, 0.76);
  backdrop-filter: blur(3px) saturate(0.8);
  -webkit-backdrop-filter: blur(3px) saturate(0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0s linear 0.65s;
  will-change: opacity;
}

.booking-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.booking-modal-drawer {
  position: relative;
  isolation: isolate;
  width: min(760px, 100vw);
  max-width: 760px;
  height: 100dvh;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  overflow: hidden;
  color: var(--text-light);
  color-scheme: dark;
  border-left: 1px solid rgba(220, 184, 97, 0.5);
  background: linear-gradient(145deg, #07111e 0%, #142033 48%, #081727 100%);
  box-shadow: inset 0 3px 0 #c9a651, -36px 0 100px rgba(0, 0, 0, 0.5);
  opacity: 0.96;
  transform: translate3d(104%, 0, 0);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.34s ease;
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint style;
}

.booking-modal-drawer::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -30%;
  pointer-events: none;
  background: repeating-linear-gradient(116deg, transparent 0 74px, rgba(255, 255, 255, 0.026) 75px 76px);
  opacity: 0.85;
  transform: translate3d(-5%, 0, 0);
  animation: reservation-lines-drift 14s ease-in-out infinite alternate;
  animation-play-state: paused;
  will-change: transform;
}

.booking-modal-drawer::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -42%;
  left: 0;
  width: 2px;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(236, 205, 126, 0.95), transparent);
  animation: reservation-rail-scan 4.8s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.booking-modal-overlay.open .booking-modal-drawer {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.booking-modal-overlay.open .booking-modal-drawer::before,
.booking-modal-overlay.open .booking-modal-drawer::after,
.booking-modal-overlay.open .booking-modal-drawer .submit-btn::before {
  animation-play-state: running;
}

@keyframes reservation-lines-drift {
  to { transform: translate3d(5%, 0, 0); }
}

@keyframes reservation-rail-scan {
  to { transform: translate3d(0, 340%, 0); }
}

@keyframes reservation-button-sheen {
  0%, 72% { transform: skewX(-20deg) translate3d(-420%, 0, 0); }
  100% { transform: skewX(-20deg) translate3d(720%, 0, 0); }
}

.booking-modal-drawer .modal-close-btn {
  position: absolute;
  z-index: 4;
  top: clamp(1.1rem, 2.5vw, 2rem);
  right: clamp(1.1rem, 2.5vw, 2rem);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 12, 21, 0.72);
  color: #f7f2e7;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(12px, -12px, 0) rotate(25deg);
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease,
    opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-drawer .modal-close-btn i {
  display: none;
}

.booking-modal-drawer .modal-close-btn::before {
  content: '\00d7';
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1;
}

.booking-modal-overlay.open .modal-close-btn {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
  transition-delay: 0s, 0s, 0s, 0.28s, 0.28s;
}

.booking-modal-drawer .modal-close-btn:hover {
  border-color: #d8b866;
  background: #d8b866;
  color: #07111e;
  transform: rotate(90deg);
}

.booking-modal-drawer .modal-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: clamp(0.68rem, 1.35vh, 0.95rem);
}

.booking-modal-drawer .modal-header {
  position: relative;
  margin-bottom: 0.2rem;
  padding: 0 4rem 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.booking-modal-drawer .modal-header .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d8b866;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.booking-modal-drawer .modal-header .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #d8b866;
}

.booking-modal-drawer .modal-title {
  max-width: 520px;
  margin-top: 0.55rem;
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 3.05rem);
  line-height: 1.02;
}

.booking-modal-drawer .modal-subtitle {
  max-width: 540px;
  margin-top: 0.5rem;
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.88rem;
  line-height: 1.55;
}

.booking-modal-drawer .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.booking-modal-drawer .form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.38rem;
}

.booking-modal-drawer .form-group label {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(232, 202, 128, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.booking-modal-drawer .form-group label i {
  width: 13px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  transition: color 0.25s ease;
}

.booking-modal-drawer .form-group:focus-within label {
  color: #f0cf7c;
  transform: translate3d(3px, 0, 0);
}

.booking-modal-drawer .form-group:focus-within label i {
  color: #f0cf7c;
}

.booking-modal-drawer .form-group input,
.booking-modal-drawer .form-group select {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0.84rem 0.95rem;
  outline: none;
  border: 1px solid rgba(201, 216, 232, 0.2);
  border-radius: 8px;
  background: rgba(3, 9, 16, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.25s ease, background-color 0.25s ease,
    box-shadow 0.25s ease, transform 0.25s ease;
}

.booking-modal-drawer .form-group input::placeholder {
  color: rgba(203, 213, 225, 0.46);
}

.booking-modal-drawer .form-group input:hover,
.booking-modal-drawer .form-group select:hover {
  border-color: rgba(220, 190, 112, 0.5);
  background: rgba(8, 17, 28, 0.8);
}

.booking-modal-drawer .form-group input:focus,
.booking-modal-drawer .form-group select:focus {
  border-color: #d8b866;
  background: rgba(10, 20, 33, 0.96);
  box-shadow: 0 0 0 3px rgba(216, 184, 102, 0.14), 0 12px 28px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -1px, 0);
}

.booking-modal-drawer .form-group select option {
  background: #101b2a;
  color: #fff;
}

.booking-modal-drawer .form-group select option:checked {
  background: #d8b866;
  color: #07111e;
}


.booking-modal-drawer .submit-btn {
  min-height: 60px;
  margin-top: 0.1rem;
  padding-inline: 1.2rem;
  justify-content: space-between;
  border: 1px solid rgba(255, 233, 172, 0.46);
  border-radius: 8px;
  background: linear-gradient(100deg, #b88d3d, #e0c277 52%, #bd9342);
  box-shadow: 0 14px 34px rgba(185, 141, 61, 0.24);
  color: #07111e;
  font-size: 0.94rem;
}

.booking-modal-drawer .submit-btn::before {
  content: '';
  position: absolute;
  inset: -25% auto -25% 0;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-20deg) translate3d(-420%, 0, 0);
  animation: reservation-button-sheen 3.8s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.booking-modal-drawer .submit-btn:hover {
  background: linear-gradient(100deg, #c49b49, #efd58d 52%, #c99f4d);
  box-shadow: 0 18px 40px rgba(198, 157, 73, 0.34);
}

.booking-modal-drawer .submit-btn i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-drawer .submit-btn:hover i {
  transform: translate3d(4px, -3px, 0);
}

/* Modal Success View */
.booking-success-view {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  gap: 1.5rem;
  text-align: center;
}

.success-icon-wrap {
  font-size: 3.5rem;
  color: var(--accent-gold);
}

.summary-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(216, 184, 102, 0.4);
  border-radius: 8px;
  background: rgba(3, 9, 16, 0.58);
  text-align: left;
}

.sum-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--text-sm);
}

.sum-item span { color: var(--text-light-muted); }
.sum-item strong { color: #e0c277; }

@media (max-height: 760px) and (min-width: 769px) {
  .booking-modal-drawer {
    padding: 1rem 1.4rem;
  }

  .booking-modal-drawer .modal-close-btn {
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
  }

  .booking-modal-drawer .modal-form {
    gap: 0.46rem;
  }

  .booking-modal-drawer .modal-header {
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }

  .booking-modal-drawer .modal-header .eyebrow {
    font-size: 0.66rem;
  }

  .booking-modal-drawer .modal-title {
    margin-top: 0.25rem;
    font-size: 1.95rem;
  }

  .booking-modal-drawer .modal-subtitle {
    margin-top: 0.2rem;
    font-size: 0.78rem;
  }

  .booking-modal-drawer .form-row {
    gap: 0.65rem;
  }

  .booking-modal-drawer .form-group {
    gap: 0.18rem;
  }

  .booking-modal-drawer .form-group label {
    font-size: 0.62rem;
  }

  .booking-modal-drawer .form-group input,
  .booking-modal-drawer .form-group select {
    min-height: 43px;
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
  }

  .booking-modal-drawer .submit-btn {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal-drawer::before,
  .booking-modal-drawer::after,
  .booking-modal-drawer .submit-btn::before {
    animation: none;
  }
}

/* Luxury booking drawer refresh */
.booking-modal-overlay {
  background:
    radial-gradient(circle at 22% 22%, rgba(218, 185, 103, 0.18), transparent 34%),
    radial-gradient(circle at 72% 82%, rgba(42, 78, 132, 0.22), transparent 36%),
    rgba(2, 7, 13, 0.78);
  perspective: 1400px;
}

.booking-modal-drawer {
  width: min(760px, 100vw);
  border-left: 1px solid rgba(240, 210, 128, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 24%),
    radial-gradient(circle at 16% 12%, rgba(231, 199, 119, 0.2), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(34, 69, 121, 0.34), transparent 42%),
    linear-gradient(145deg, #050914 0%, #111c2e 46%, #060d18 100%);
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    -44px 0 120px rgba(0, 0, 0, 0.58);
  transform-origin: right center;
}

.booking-modal-drawer::before {
  background:
    linear-gradient(100deg, transparent 0 44%, rgba(255, 255, 255, 0.045) 45% 46%, transparent 47% 100%),
    repeating-linear-gradient(116deg, transparent 0 76px, rgba(255, 255, 255, 0.03) 77px 78px);
  opacity: 0.9;
}

.booking-modal-drawer::after {
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, #ffe8a0 42%, #b88934 58%, transparent);
  box-shadow: 0 0 22px rgba(230, 197, 116, 0.72);
}

.booking-modal-drawer .modal-form {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.booking-modal-drawer .modal-header {
  padding-bottom: 1.15rem;
  border-bottom-color: rgba(236, 205, 126, 0.2);
}

.booking-modal-drawer .modal-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, #f0cf7c, transparent);
}

.booking-modal-drawer .modal-title {
  background: linear-gradient(90deg, #ffffff 0%, #f8e7b8 48%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.035em;
}

.booking-modal-drawer .modal-subtitle {
  color: rgba(232, 238, 247, 0.72);
}

.booking-modal-drawer .form-group {
  position: relative;
}

.booking-modal-drawer .form-group input,
.booking-modal-drawer .form-group select {
  min-height: 56px;
  border-color: rgba(229, 205, 148, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(4, 11, 21, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.16);
  color: #fff9ec;
}

.booking-modal-drawer .form-group input:hover,
.booking-modal-drawer .form-group select:hover {
  border-color: rgba(240, 207, 124, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(8, 17, 30, 0.88);
}

.booking-modal-drawer .form-group input:focus,
.booking-modal-drawer .form-group select:focus {
  border-color: #f0cf7c;
  box-shadow:
    0 0 0 3px rgba(240, 207, 124, 0.16),
    0 16px 38px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.booking-modal-drawer .submit-btn {
  position: relative;
  overflow: hidden;
  min-height: 60px;
  border-color: rgba(255, 238, 184, 0.72);
  background:
    linear-gradient(100deg, #b88633 0%, #f1d98a 44%, #c79b45 100%);
  box-shadow:
    0 18px 44px rgba(184, 134, 51, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.booking-modal-drawer .submit-btn:hover {
  background: linear-gradient(100deg, #c5953c 0%, #ffe49b 48%, #d1a24b 100%);
}

.booking-success-view .modal-title {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

/* Final booking modal visibility lock */
.booking-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10050 !important;
}

.booking-modal-overlay.open .booking-modal-drawer {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) !important;
  filter: none !important;
}

@media (max-width: 560px) {
  .booking-modal-drawer .form-row {
    grid-template-columns: 1fr;
  }

  .booking-modal-drawer .form-group input,
  .booking-modal-drawer .form-group select {
    min-height: 46px;
  }
}


/* /* ============================================================
   GLOBAL FLOATING QUICK ACTIONS (WHATSAPP LEFT, CALL RIGHT)
   ============================================================ */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.25s ease;
  animation: floatingPulseLeft 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12) translateY(-4px);
  background: #20BA56;
  color: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.15);
}

.floating-call-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #1D4ED8;
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.25s ease;
  animation: floatingPulseRight 2.5s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.12) translateY(-4px);
  background: #1E40AF;
  color: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.6), 0 0 0 8px rgba(29, 78, 216, 0.15);
}

@keyframes floatingPulseLeft {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@keyframes floatingPulseRight {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.45), 0 0 0 0 rgba(29, 78, 216, 0.4);
  }
  50% {
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.55), 0 0 0 12px rgba(29, 78, 216, 0);
  }
}

@media (max-width: 576px) {
  .floating-whatsapp-btn {
    bottom: 20px;
    left: 18px;
    width: 54px;
    height: 54px;
    font-size: 30px;
  }

  .floating-call-btn {
    bottom: 20px;
    right: 18px;
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(circle at 50% 30%, rgba(218, 185, 103, 0.12), transparent 34%),
    linear-gradient(135deg, #02050c 0%, #071326 52%, #02050c 100%);
  color: var(--text-light);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  width: min(86vw, 620px);
  overflow: visible;
}

.loader-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  width: min(86vw, 560px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.loader-logo-img {
  display: block;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1024 / 254;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.36));
}

.loader-brand .brand-word {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--text-light);
}

.loader-brand .brand-sub {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.loader-bar-bg {
  width: min(64vw, 260px);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-full);
}

.loader-bar-fill {
  height: 100%;
  background: var(--accent-gold);
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--accent-gold);
}

.loader-num {
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

/* Footer */
.footer-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid var(--border-dark);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) minmax(150px, 0.8fr) minmax(190px, 0.9fr) minmax(260px, 1.15fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo-text strong {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.footer-logo-text span {
  margin-top: 2px;
  color: var(--accent-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.footer-brand-desc {
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin: 1.25rem 0 1.5rem;
}

.footer-direct-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent-gold-border);
  text-decoration: none;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.f-contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.f-contact-line a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.f-contact-line a:hover {
  color: var(--accent-gold);
}

.f-icon {
  color: var(--accent-gold);
  width: 16px;
}

.footer-map-card {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--accent-gold-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  width: 100%;
  max-width: 320px;
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.footer-map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-map-link i {
  color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.footer-seo-hub {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

.seo-hub-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.seo-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.seo-pill {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.825rem;
  color: var(--text-light-muted);
}

.footer-bottom > div {
  min-width: 0;
}

.bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bottom-links a,
.footer-credit a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bottom-links a:hover,
.footer-credit a:hover {
  color: var(--accent-gold);
}

.footer-credit {
  color: var(--text-light-muted);
  font-size: 0.825rem;
}

.footer-credit a {
  color: var(--accent-gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.scroll-top-btn {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
}

/* Final footer alignment override */
.footer-section .footer-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.footer-section .footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(150px, 0.7fr) minmax(215px, 0.95fr) minmax(280px, 1.1fr);
  align-items: start;
  justify-content: space-between;
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: 2.5rem;
}

.footer-section .footer-grid > div {
  min-width: 0;
}

.footer-section .footer-brand-col,
.footer-section .footer-links-col,
.footer-section .footer-services-col,
.footer-section .footer-address-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section .footer-logo-link {
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-section .footer-logo-img {
  width: min(280px, 100%);
  max-width: 100%;
}

.footer-section .footer-brand-desc {
  max-width: 380px;
  margin-bottom: 1.25rem;
}

.footer-section .footer-col-title {
  margin-top: 0;
  min-height: 1.3rem;
}

.footer-section .footer-links {
  align-items: flex-start;
}

.footer-section .footer-address-text {
  margin: 0;
  color: var(--text-light-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-section .footer-map-card {
  max-width: none;
  width: min(100%, 330px);
}

.footer-section .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content 38px;
  align-items: center;
  column-gap: 1.5rem;
}

.footer-section .footer-copyright {
  min-width: 0;
}

.footer-section .footer-credit {
  text-align: right;
  white-space: nowrap;
}

.footer-section .scroll-top-btn {
  justify-self: end;
}

/* Final navbar sync override from rent-a-ride-html. */
.navbar-header {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1260px);
  height: 70px;
  flex-direction: row;
  border-radius: 9999px;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar-header .top-contact-bar {
  display: none;
}

.navbar-header.inner-page-nav {
  top: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar-header.scrolled {
  top: 0.65rem;
  height: 64px !important;
  width: min(90vw, 1200px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.navbar-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.desktop-nav .nav-links {
  gap: 4px;
  background: rgba(9, 9, 11, 0.05);
  padding: 4px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(9, 9, 11, 0.08);
  box-sizing: border-box;
}

.nav-item {
  color: #3F3F46;
  font-size: 0.82rem;
  letter-spacing: 0;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
}

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

.nav-item:hover {
  background: rgba(9, 9, 11, 0.06);
  color: #09090B;
}

.nav-item.active {
  background: #09090B;
  color: #FFFFFF !important;
  box-shadow: 0 2px 6px rgba(9, 9, 11, 0.15);
}

.navbar-actions {
  gap: 0.75rem;
}

.nav-cta-btn {
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
}
