/* ==========================================================================
   CSS Variables
   ========================================================================== */
.logo img,
.logo-img,
.site-logo,
.footer-logo,
.hero-center-logo {
  width: auto !important;
  object-fit: contain !important;
  max-width: 100%;
  /* Crisp 1px black stroke using drop-shadow */
  filter: drop-shadow(1px 1px 0 #000) drop-shadow(-1px -1px 0 #000)
    drop-shadow(1px -1px 0 #000) drop-shadow(-1px 1px 0 #000);
}

:root {
  /* === BRAND PALETTE (Orange + Navy Blue) === */
  --primary: #FF9500; /* Bright Orange — main CTA, active states, highlights */
  --primary-hover: #E68600; /* Darker orange for hover/pressed */
  --primary-glow: rgba(255, 149, 0, 0.18); /* Glow for shadows, outlines */

  --secondary: #0b1e35; /* Midnight Blue — navbar bg, dark cards, deep sections */
  --secondary-mid: #132c48; /* One shade lighter — card hover surfaces, dividers */
  --secondary-deep: #060e1c; /* Near-black — footer, darkest backgrounds */

  --accent-teal: #1c6e8c; /* Teal Blue — secondary buttons, badges, link underlines */
  --accent-teal-hover: #155b76;

  /* === SURFACE COLOURS === */
  --bg-page: #08152a; /* Base page background for dark sections */
  --bg-card: #0f2338; /* Card backgrounds (booking, service, feature cards) */
  --bg-card-hover: #152d47; /* Card hover lift */
  --bg-light: #0b1e35; /* Navy blue */
  --bg-light-card: #0f2338; /* Dark card */

  /* === WHATSAPP === */
  --whatsapp-green: #FF9500;

  /* === TEXT === */
  --black: #060e1c;
  --white: #ffffff;
  --text-main: #d8e4f0; /* Body text on dark backgrounds */
  --text-muted: #7a96b2; /* Subdued labels, captions on dark */
  --text-dark-main: #d8e4f0; /* Light body text */
  --text-dark-muted: #7a96b2;

  /* === BORDERS & DIVIDERS === */
  --border-subtle: rgba(211, 84, 0, 0.15); /* Subtle gold border */
  --border-card: rgba(28, 110, 140, 0.25); /* Teal card border */
  --border-strong: rgba(211, 84, 0, 0.45); /* Highlighted gold border */

  /* === SHADOWS === */
  --shadow-card: 0 4px 24px rgba(6, 14, 28, 0.55);
  --shadow-btn: 0 4px 18px rgba(211, 84, 0, 0.3);
  --shadow-hover: 0 10px 40px rgba(6, 14, 28, 0.65);

  /* === BACKWARDS COMPATIBILITY (MAPPING OLD VARS) === */
  --primary-color: var(--primary);
  --secondary-color: var(--secondary);
  --text-dark: var(--text-dark-main);
  --text-light: var(--text-main);
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.08);
  --border-radius: 8px;
  --pill-radius: 50px;

  /* Typography */
  --font-heading: "Clash Display", sans-serif;
  --font-body: "Cabinet Grotesk", sans-serif;
  --font-display: "Stardom", sans-serif;
  --font-elegant: "Zodiak", serif;
  --font-accent: "Gambetta", serif;
  --font-button: "Cabinet Grotesk", sans-serif;
  --font-formal: "Literata", serif;
  --font-quote: "Karma", serif;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--secondary);
  overflow-x: clip;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-navy {
  background-color: var(
    --white
  ); /* Overriding navy to white for minimalist feel */
  color: var(--text-dark);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--text-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: var(--font-elegant);
  font-weight: 400;
}

.section-title.white-text h2 {
  color: var(--white);
}

.title-underline {
  display: none; /* Removing underline for minimal aesthetic */
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-button);
  font-weight: 600;
  border-radius: var(--pill-radius);
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.btn-full {
  width: 100%;
  display: block;
}

/* ==========================================================================
   Navigation / Header
   ========================================================================== */
.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea; /* clean thin line */
}

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

.header .logo img,
.navbar .logo img,
.nav-logo img {
  height: 65px; /* Larger logo */
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px; /* more spacing between links */
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
  padding: 5px 0;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icon-link {
  color: var(--text-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.nav-icon-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.whatsapp-icon {
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section Redesign (Minimalist Circular Layout)
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 0 50px;
  background-color: transparent;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform: translateY(-20px); /* Moved slightly upper as requested */
}

.hero-circle-container {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 30px auto;
  background-color: #f0f0f0; /* fallback */
  flex-shrink: 0;
}

.hero-bg {
  position: absolute;
  top: -100px; /* Offset for GSAP scroll trigger parallax */
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  background-image: url("../assets/images/hero/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  flex-wrap: nowrap;
}

/* Overlapping typography over the circle */
.hero-text-overlap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  pointer-events: none; /* Allows mouse interactions to pass through to circle if needed */
  z-index: 10;
}

.hero-text-label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: absolute;
  top: -285px; /* Moved further up */
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  white-space: nowrap;
  text-align: center;
  display: block;
  margin-bottom: 1rem;
}

.hero-center-logo {
  position: absolute;
  top: -190px; /* Moved further up */
  left: calc(50% - 340px);
  transform: none;
  height: 160px !important;
  z-index: 12;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-text h3 {
  font-family: var(--font-elegant);
  font-size: 8rem;
  line-height: 1;
  margin: 0;
  color: var(--primary-color);
  font-weight: 400;
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-shadow: none;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.9;
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-mobile-br {
  display: none;
}

.title-brand {
  font-size: 1.25em;
  display: inline-block;
  line-height: 0.85;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  position: relative;
  z-index: 11;
  text-align: center;
}

.hero-services-list span:not(.sep) {
  white-space: nowrap; /* Keeps words like "Premium Vehicles" together */
}

.hero-services-list .sep {
  color: #ccc;
  font-size: 0.8em;
}

/* Make sure buttons show above absolute text */
.hero-buttons {
  z-index: 15;
  position: relative;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-size: 1.05rem;
  padding: 12px 32px;
}

/* Tablet / Mobile Adjustments for new Hero */
@media (max-width: 992px) {
  .hero-circle-container {
    width: 350px;
    height: 350px;
    margin-bottom: 140px; /* Push the content below down */
  }
  .hero-text h3 {
    font-size: 7rem;
    top: -230px;
  }
  .hero-text h1 {
    font-size: 4.5rem;
    bottom: -180px;
  }
  .hero-text-label {
    top: -270px; /* Moved further up */
    font-size: 1.1rem;
  }
  .hero-center-logo {
    left: 5px;
    top: -240px; /* Moved further up */
    height: 130px !important;
    transform: none;
  }
  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 12px 32px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0 40px;
  }
  .hero-circle-container {
    width: 250px;
    height: 250px;
    margin-top: 50px; /* Give room for the text above it */
    margin-bottom: 110px; /* Push the content below down */
  }
  .hero-center-logo {
    top: -230px; /* Moved further up */
    height: 120px !important;
  }
  .hero-text-label {
    top: -250px; /* Moved further up */
    font-size: 1.3rem;
  }
  .hero-text h3 {
    font-size: 4.5rem;
    top: -165px;
  }
  .hero-text h1 {
    font-size: 3.2rem;
    bottom: -130px; /* Moved down to fit wrapping text */
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Services Cards
   ========================================================================== */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;

  /* Stacking Effect will be handled by GSAP */
  position: relative;
  will-change: transform;
}

/* Removed static stacking offsets */

/* Highlighted card variant (e.g. 24/7 Support) */
.service-card--highlight {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, #fffaf2 0%, var(--white) 100%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 58, 82, 0.15);
}

/* Maintain backwards compatibility with homepage card layout */
.service-card:has(.service-img) {
  padding: 0;
  justify-content: flex-start;
}

.service-img {
  height: 250px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
}

.service-info {
  padding: 30px;
}

.service-info h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
}

.service-features i {
  color: var(--primary-color);
}

/* Redesigned Services Spacing and Classes */
.service-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-title i {
  color: var(--primary-color);
}

.service-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-features-container {
  margin-top: 24px;
  flex-grow: 1;
}

.service-category {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-list {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--text-dark);
  font-size: 16px;
  top: -1px;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-cta {
  margin-top: 24px;
}

.service-cta .btn {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Vehicle Fleet
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid #eee;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.fleet-img-container {
  height: 220px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.fleet-info {
  padding: 25px;
  background-color: var(--bg-light);
}

.fleet-info h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fleet-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.feature-item {
  background: var(--bg-light);
  border: 1px solid #eaeaea;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  width: calc(33.333% - 20px);
  min-width: 250px;
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}

.feature-item:hover h4,
.feature-item:hover p {
  color: var(--text-dark);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h4 {
  color: var(--secondary-color);
  transition: var(--transition);
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-details-box h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
}

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

/* Form */
.contact-form {
  background: var(--primary-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.3);
}

.contact-form .btn {
  background-color: var(--secondary-color);
  color: var(--white);
}

.contact-form .btn:hover {
  box-shadow: none;
}

.map-wrapper {
  margin-top: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 300px;
}

/* ==========================================================================
   Page Headers
   ========================================================================== */
.page-header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 3rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer .logo img,
.footer-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-col p {
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-contact-item i {
  color: var(--white);
  margin-top: 5px;
}

.footer-contact-item a {
  color: var(--white);
}

.footer-contact-item a:hover {
  color: #cccccc;
  text-decoration: underline;
}

.footer-bottom {
  background-color: var(--secondary-color);
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
}

/* ==========================================================================
   Quick Booking Section
   ========================================================================== */
.quick-booking {
  background-color: var(--white);
}

.booking-cards.list-view {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.booking-card.list-item {
  background: var(--white);
  border: none;
  border-top: 1px solid #eaeaea;
  border-radius: 0;
  padding: 30px 20px;
  text-align: left;
  box-shadow: none;
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  height: auto;
}

.booking-card.list-item:last-child {
  border-bottom: 1px solid #eaeaea;
}

.booking-card.list-item:hover {
  background: var(--bg-light);
  transform: none;
  box-shadow: none;
}

.circle-image-wrapper {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 0;
}

.circle-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-family: var(--font-heading);
}

.booking-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

.btn-minimal {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.btn-minimal:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .booking-card.list-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
/* ==========================================================================
   Testimonials Section (Real Google Reviews)
   ========================================================================== */
.testimonials {
  padding: 60px 20px;
  background-color: var(--bg-light);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(255, 149, 0, 0.1);
  transform: translateY(-4px);
}

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

.rating-stars {
  display: flex;
  gap: 4px;
  color: #ffb800;
  font-size: 18px;
}

.rating-stars i {
  font-size: 16px;
}

.review-date {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-quote {
  font-size: 14px;
  font-family: var(--font-quote);
  color: var(--text-main);
  line-height: 1.6;
  margin-top: 10px;
  margin: 0 0 1rem;
  border-bottom: 0.5px solid var(--border-card);
  padding-bottom: 1rem;
  flex-grow: 1;
}

.testimonial-footer {
  margin: 1rem 0;
}

.customer-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--white);
}

.customer-badge {
  font-size: 12px;
  color: var(--primary-color);
  margin: 0.25rem 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.customer-badge i {
  font-size: 13px;
}

.service-info,
.vehicle-info,
.driver-info,
.destinations-info {
  font-size: 12px;
  color: var(--text-light);
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-info i,
.vehicle-info i,
.driver-info i,
.destinations-info i {
  font-size: 13px;
  color: var(--primary-color);
}

.view-on-google {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border: 0.5px solid var(--secondary-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.view-on-google:hover {
  background: var(--secondary-color);
  color: white;
}

.testimonial-with-image {
  border-left: none;
}

.google-review-cta-section {
  padding: 60px 20px;
  background-color: transparent;
}

.google-review-cta {
  background: rgba(15, 35, 56, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-review-cta h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.google-review-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Deprecated .booking-card picture and .card-image moved up to .circle-image-wrapper */

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.float-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--whatsapp-green);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
}

/* ==========================================================================
   Language Toggle
   ========================================================================== */
.lang-toggle {
  background: var(--bg-light);
  border: 1px solid #ddd;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-left: 20px;
}
.lang-toggle-mobile {
  display: none;
}
.lang-btn {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

/* ==========================================================================
   Photo Gallery (Lightbox & Grid)
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-light);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
  font-family: var(--font-button);
  backdrop-filter: blur(5px);
}

.gallery-filter.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-filter:hover:not(.active) {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.95);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 280px; /* Square base height for tiles */
  grid-auto-flow: dense; /* Fills gaps to create a tight mosaic */
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Mosaic Tile Variations --- */
.gallery-item:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2; /* Large Feature Tile */
}
.gallery-item:nth-child(5n + 3) {
  grid-column: span 2;
  grid-row: span 1; /* Wide Landscape Tile */
}
.gallery-item:nth-child(11n + 5) {
  grid-column: span 1;
  grid-row: span 2; /* Tall Portrait Tile */
}

.gallery-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%; /* Fill the tile regardless of span */
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* White Glassmorphism Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px 25px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(100%);
  opacity: 0;
}

.gallery-tag {
  font-family: var(--font-button);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000000;
  font-weight: 700;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.gallery-spec-badges {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.gallery-spec-badges span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: #000000;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.gallery-spec-badges span i,
.gallery-spec-badges span svg {
  color: #000000;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Premium Lightbox with Glassmorphism */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  touch-action: none;
}

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

.lightbox img {
  max-width: 85%;
  max-height: 80vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 40px;
}
.lightbox-next {
  right: 40px;
}

/* Lightbox counter */
.lightbox-counter {
  position: absolute;
  bottom: 35px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-button);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Fleet Detail Section (services.html)
   ========================================================================== */
.fleet-detail-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.fleet-detail-item {
  display: flex;
  gap: 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  align-items: center;
  border: 1px solid #eee;
}
.fleet-detail-item:nth-child(even) {
  flex-direction: row-reverse;
}
.fleet-detail-img {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleet-detail-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.fleet-detail-content {
  flex: 1;
  padding: 40px;
}
.fleet-detail-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.fleet-spec i {
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .fleet-detail-item {
    flex-direction: column !important;
  }
  .fleet-detail-content {
    padding: 20px;
  }
  .fleet-detail-img {
    min-width: auto;
    padding: 20px 20px 0;
  }
}

/* ==========================================================================
   Bottom Mobile Nav
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #eee;
}
.bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}
.bottom-nav-link i {
  font-size: 18px;
}
.bottom-nav-link.active,
.bottom-nav-link:hover {
  color: var(--primary-color);
}

/* ── Referral Prompt ── */
.referral-prompt {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 998;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26, 58, 82, 0.2);
  border: 1.5px solid rgba(255, 149, 0, 0.3);
  width: min(420px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transition: none;
  overflow: hidden;
}
.referral-prompt.visible {
  opacity: 1;
  pointer-events: all;
}
.referral-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.1rem 1.1rem 0.9rem;
  flex-wrap: wrap;
}
.referral-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.referral-text {
  flex: 1;
  min-width: 160px;
}
.referral-text h4 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-size: 14px;
  margin: 0 0 4px;
}
.referral-text p {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}
.referral-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: var(--white);
  font-family: var(--font-button);
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.referral-share-btn:hover {
  color: var(--white);
}
.referral-share-link {
  display: inline-block;
  color: var(--text-dark, #000000);
  text-decoration: underline;
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-body);
  margin-top: 6px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  cursor: pointer;
}
.referral-share-link:hover {
  color: var(--text-light, #555555);
  text-decoration: underline;
}
.referral-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
  transition: color 0.2s;
  z-index: 10;
}
.referral-close:hover {
  color: var(--secondary-color);
}
.referral-progress {
  height: 3px;
  background: var(--primary-color);
  width: 100%;
  transform-origin: left;
  transform: scaleX(1);
}

/* MORE DROPDOWN MENU (INDIVIDUAL BUBBLES) */
.nav-more-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 5px 0; /* Matches .nav-link padding */
  color: var(--text-dark);
  z-index: 1001;
  height: 100%;
}
.nav-more-dropdown svg {
  font-size: 1.25rem;
  display: block;
  margin: 0;
}
.nav-more-dropdown:hover {
  color: var(--primary-color);
}
.nav-more-dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  right: -10px;
  background: var(--primary) !important;
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  min-width: 160px;
  z-index: 1001;
  padding: 5px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.3s ease !important;
}
.nav-more-dropdown-content::before {
  display: none;
}

.nav-more-dropdown.active .nav-more-dropdown-content,
.nav-more-dropdown:hover .nav-more-dropdown-content {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.nav-more-dropdown-content .nav-link {
  display: block !important;
  background: transparent !important;
  color: #000000 !important;
  text-align: left !important;
  padding: 10px 15px !important;
  margin-bottom: 2px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}
.nav-more-dropdown-content .nav-link:last-child {
  margin-bottom: 0 !important;
}

.nav-more-dropdown-content .nav-link:after {
  display: none !important;
}
.nav-more-dropdown-content .nav-link:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: none !important;
}

/* ==========================================================================
   Booking Form & Modal Styling
   ========================================================================== */
.booking-section {
  position: relative;
  background-color: #ffffff; /* Pure White background */
  overflow: hidden;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.booking-container {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.booking-left {
  position: relative;
  z-index: 2;
}

.booking-left h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.booking-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 30px;
}

.readmore-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: var(--transition);
  text-underline-offset: 3px;
}

.readmore-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Form Card */
.booking-form-card {
  background-color: #121212; /* Dark background like the image */
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.form-group-section {
  margin-bottom: 25px;
}

.form-group-section h3,
.form-selector-col h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0.8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.form-group.has-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
  width: 16px;
  height: 16px;
  transition: color 0.3s ease;
}

.form-group.has-icon .input-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.form-group.has-icon:focus-within .input-icon {
  color: #000000;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}

/* Ensure consistent sizing and appearance for date and time fields */
.form-group input[type="date"],
.form-group input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}

.form-group input::-webkit-datetime-edit {
  padding: 0;
}

.form-group.has-icon input {
  padding-left: 40px;
}

.form-group input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 1px #000000;
}

/* Selector rows (Trip Type and Number of People) */
.form-row-selectors {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-selector-col {
  display: flex;
  flex-direction: column;
}

.selector-button-group {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}

.selector-btn {
  flex: 1;
  border: none;
  background-color: transparent;
  color: #333333;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-button);
}

.selector-btn.active {
  background-color: #000000;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.selector-btn:not(.active):hover {
  color: #000000;
}

.btn-form-submit {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ffffff;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--font-button);
}

.btn-form-submit:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: none;
}

/* Choices Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 0;
  max-width: 480px;
  width: 90%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  text-align: left;
  transform: scale(0.85);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  overflow: hidden;
}

.booking-modal.active .booking-modal-content {
  transform: scale(1);
  opacity: 1;
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.booking-modal-close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #000000;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.booking-modal-close:hover {
  opacity: 1;
  color: #000000;
}

.booking-modal-body {
  padding: 24px 30px;
}

.booking-modal-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444444;
  margin-bottom: 24px;
}

.booking-modal-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-opt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  text-align: left;
  position: relative;
}

.modal-opt-card:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.modal-opt-card.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.opt-card-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.opt-card-middle {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.opt-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #000000;
}

.opt-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666666;
  margin-top: 3px;
  line-height: 1.3;
}

.opt-card-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.modal-opt-card.active .opt-card-right {
  border-color: #000000;
  background: #000000;
}

.opt-card-right::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.modal-opt-card.active .opt-card-right::after {
  opacity: 1;
  transform: scale(1);
}

.booking-modal-footer {
  padding: 20px 30px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
}

.booking-modal-submit-btn {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 24px;
  padding: 12px 28px;
  font-family: var(--font-button);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --blob-bg: #333333;
}

.booking-modal-submit-btn:hover {
  background: #222222;
  border-color: #222222;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Hide WhatsApp icons in standard booking buttons */
.btn-primary svg.fa-whatsapp,
.btn svg.fa-whatsapp,
.btn svg.fab.fa-whatsapp,
.btn svg[class*="fa-whatsapp"] {
  display: none !important;
}

/* Mobile responsive fixes */
@media (max-width: 992px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .booking-left {
    text-align: center;
  }
  .booking-left h2 {
    font-size: 2rem;
  }
  .booking-left p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .booking-section {
    padding: 40px 0;
  }
  .circle-accent-1 {
    left: -80px;
  }
}

@media (max-width: 576px) {
  .booking-container {
    gap: 20px;
  }
  .booking-left h2 {
    font-size: 1.7rem;
  }
  .booking-left p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .form-row,
  .form-row-selectors {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .booking-form-card {
    padding: 20px 15px;
    border-radius: 16px;
  }
  .form-group-section {
    margin-bottom: 15px;
  }
  .form-group-section h3,
  .form-selector-col h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .form-group input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .form-group.has-icon input {
    padding-left: 36px;
  }
  .form-group.has-icon .input-icon {
    left: 12px;
    width: 14px;
    height: 14px;
  }
  .form-group input[type="date"],
  .form-group input[type="time"] {
    min-height: 38px;
  }
  .selector-btn {
    padding: 8px;
    font-size: 0.85rem;
  }
  .form-row-selectors {
    margin-bottom: 20px;
    gap: 15px;
  }
  .btn-form-submit {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* Custom Flatpickr Theme - Minimalist Premium Black & White */
.flatpickr-calendar {
  background: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.6) !important;
  border-radius: 16px !important;
  font-family: var(--font-body), sans-serif !important;
  color: #ffffff !important;
  box-sizing: border-box !important;
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
  border-bottom-color: #121212 !important;
}

.flatpickr-calendar.arrowTop::before {
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: #121212 !important;
}
.flatpickr-calendar.arrowBottom::before {
  border-top-color: rgba(255, 255, 255, 0.15) !important;
}
.flatpickr-calendar.arrowBottom::after {
  border-top-color: #121212 !important;
}

.flatpickr-months {
  padding: 12px 0 6px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.flatpickr-months .flatpickr-month {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.flatpickr-current-month {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  padding: 0 !important;
}

.flatpickr-current-month select.flatpickr-monthDropdown-months {
  color: #ffffff !important;
  background: #121212 !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  padding: 0 4px !important;
}

.flatpickr-current-month select.flatpickr-monthDropdown-months:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-current-month .numInputWrapper {
  width: 65px !important;
}

.flatpickr-current-month input.cur-year {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp::after {
  border-bottom-color: #ffffff !important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown::after {
  border-top-color: #ffffff !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #ffffff !important;
  fill: #ffffff !important;
  padding: 10px !important;
  transition: all 0.2s ease !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #ffffff !important;
  fill: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
}

.flatpickr-weekdays {
  background: transparent !important;
  padding: 10px 0 4px 0 !important;
}

span.flatpickr-weekday {
  color: #888888 !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
}

.flatpickr-days {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.flatpickr-day {
  color: #ffffff !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  border: 1px solid transparent !important;
  font-weight: 500 !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.flatpickr-day.today {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.flatpickr-day.today:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.45) !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Time Picker Clock Design */
.flatpickr-time {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: #181818 !important;
  padding: 12px 10px !important;
  border-radius: 0 0 16px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  box-sizing: border-box !important;
}

.flatpickr-time .numInputWrapper {
  height: 40px !important;
  flex: 1 !important;
  max-width: 60px !important;
}

.flatpickr-time input {
  background: #0d0d0d !important;
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  padding: 0 !important;
  height: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.flatpickr-time input:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 2px #ffffff !important;
}

.flatpickr-time .flatpickr-time-separator {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  margin: 0 8px !important;
  line-height: 40px !important;
  height: 40px !important;
}

.flatpickr-time .flatpickr-am-pm {
  background: #0d0d0d !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  height: 40px !important;
  width: 60px !important;
  margin-left: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.flatpickr-time .numInputWrapper span.arrowUp::after {
  border-bottom-color: #ffffff !important;
}

.flatpickr-time .numInputWrapper span.arrowDown::after {
  border-top-color: #ffffff !important;
}

.flatpickr-time .numInputWrapper span {
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.flatpickr-time .numInputWrapper span:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Footer Address Map Link */
.footer-map-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  text-decoration: none !important;
  color: var(--white) !important;
  transition: color 0.3s ease !important;
}

.footer-map-link:hover {
  color: #cccccc !important;
}

.footer-map-link svg {
  margin-top: 4px !important;
  flex-shrink: 0 !important;
}

/* Blob Follow Button Hover Effect */
.btn-blob {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 10px !important;
  height: 10px !important;
  background-color: var(--blob-bg, #000000) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none !important;
  z-index: 1 !important;
  opacity: 0;
}

/* Ensure buttons transition text color smoothly and keep labels on top of the blob */
.btn,
.selector-btn,
.modal-opt-btn,
.referral-share-btn,
.gallery-filter,
button:not(.lang-btn):not(.booking-modal-close):not(.referral-close):not(
    .lightbox-close
  ):not(.lightbox-prev):not(.lightbox-next) {
  position: relative !important;
  overflow: hidden !important;
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.3s ease !important;
}

/* Primary button (hover background becomes dark gray, text remains white) */
.btn-primary {
  --blob-bg: var(--primary-hover, #333333);
}

/* Outline button (hover background becomes black, text becomes white) */
.btn-outline {
  --blob-bg: var(--primary-color, #000000);
}

/* White form submit & modal form option buttons (hover background becomes black, text becomes white) */
.btn-form-submit,
.btn-go-form,
.btn-go-whatsapp:not(.booking-modal-content .btn-go-whatsapp) {
  --blob-bg: #000000;
}

/* Dark Modal WhatsApp Button (hover background becomes white, text becomes black) */
.booking-modal-content .btn-go-whatsapp {
  --blob-bg: #ffffff;
}

/* Inactive Selector / Option / Filter Buttons (hover background becomes light gray) */
.selector-btn:not(.active),
.gallery-filter:not(.active),
.modal-opt-btn {
  --blob-bg: #e5e5e5;
}

/* Active Selector / Filter Buttons (hover background becomes white) */
.selector-btn.active,
.gallery-filter.active {
  --blob-bg: #ffffff;
}

/* WhatsApp referral share button */
.referral-share-btn {
  --blob-bg: var(--whatsapp-hover, #128c7e);
}

/* Hover-specific rules (only applied on devices supporting hover) */
@media (hover: hover) {
  .btn-primary:hover {
    color: #ffffff !important;
  }

  .btn-outline:hover {
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
  }

  .btn-form-submit:hover,
  .btn-go-form:hover,
  .btn-go-whatsapp:hover {
    color: #ffffff !important;
    border-color: #ffffff !important;
  }

  .booking-modal-content .btn-go-whatsapp:hover {
    color: #000000 !important;
  }

  .selector-btn:not(.active):hover,
  .gallery-filter:not(.active):hover,
  .modal-opt-btn:hover {
    color: #000000 !important;
  }

  .selector-btn.active:hover,
  .gallery-filter.active:hover {
    color: #000000 !important;
  }

  .referral-share-btn:hover {
    color: #ffffff !important;
  }
}

/* Touch-specific active state feedback (applied on mobile/tablet devices) */
@media (hover: none) {
  .btn:active,
  .selector-btn:active,
  .modal-opt-btn:active,
  .referral-share-btn:active,
  .gallery-filter:active,
  button:not(.lang-btn):not(.booking-modal-close):not(.referral-close):not(
      .lightbox-close
    ):not(.lightbox-prev):not(.lightbox-next):active {
    opacity: 0.7 !important;
  }
}

/* GPU Acceleration to prevent flickering on GSAP scroll animations */
.section-title,
.fleet-card,
.service-card,
.testimonial-card,
.fleet-detail-item,
.booking-left,
.booking-form-card,
#contactForm,
.contact-info,
.page-header h1,
.page-header p,
.google-review-cta,
.hero-center-logo,
.hero-text-label,
.hero-text h3,
.hero-text h1,
.hero-buttons a {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Prevent CSS transform and opacity transition conflict with GSAP scroll animations */
.section-title,
.fleet-card,
.service-card,
.testimonial-card,
.fleet-detail-item,
.booking-left,
.booking-form-card,
#contactForm,
.contact-info,
.page-header h1,
.page-header p,
.google-review-cta,
.hero-center-logo,
.hero-text-label,
.hero-text h3,
.hero-text h1,
.hero-buttons a {
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease !important;
}

/* Scramble Typing Animation Cursor styling */
.typing-cursor {
  display: inline-block;
  width: 6px;
  height: 1.15em;
  background-color: var(--primary-color, #000000);
  margin-left: 3px;
  vertical-align: middle;
  animation: cursor-blink-anim 0.8s infinite;
}

@keyframes cursor-blink-anim {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Premium fade-in for about-image to replace the slide-in */
.about-image {
  opacity: 0;
  transition:
    opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(15px);
}

.about-image.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent layout flash by keeping elements hidden until typed */
.about-text h2,
.about-text p {
  visibility: hidden;
}

/* GPU performance optimization for small cards fade animations */
.booking-card,
.feature-item {
  will-change: opacity;
}

/* ==========================================================================
   Concave Carousel (Vehicle Gallery Mini Section)
   ========================================================================== */
.concave-carousel-wrapper {
  perspective: 2500px;
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  margin: 20px 0;
  -webkit-user-select: none;
  user-select: none;
}

.concave-carousel-wrapper:active {
  cursor: grabbing;
}

.concave-carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
}

.carousel-item {
  position: absolute;
  height: 100%;
  /* width set dynamically in JS */
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-light);
  backface-visibility: hidden;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Location Map Section
   ========================================================================== */
.location-map-section {
  width: 100%;
  line-height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container {
  width: 100%;
  height: 400px;
  background-color: var(--bg-light);
}

.theme-map {
  width: 100%;
  height: 100%;
  /* Minimalist B&W Theme */
  filter: grayscale(100%) contrast(1.1) opacity(0.85);
  transition: filter 0.5s ease;
}

.theme-map:hover {
  /* Slight color reveal on hover */
  filter: grayscale(60%) contrast(1.1) opacity(1);
}

/* Gray Button */
.btn-gray {
  background-color: #6c757d;
  color: var(--white);
  border: 2px solid #6c757d;
}
.btn-gray:hover {
  background-color: #5a6268;
  border-color: #5a6268;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 117, 125, 0.3);
}

/* ==========================================================================
   VISUAL REDESIGN (APPENDED)
   ========================================================================== */

/* 2. NAVBAR REDESIGN */
.header {
  background: rgba(11, 30, 53, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
}

.header.scrolled {
  background: rgba(11, 30, 53, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(6, 14, 28, 0.5);
}

body.subpage .header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-links > .nav-link {
  color: #000000 !important;
  opacity: 1 !important;
}
.nav-links > .nav-link:hover,
.nav-links > .nav-link.active {
  color: #000000 !important;
  opacity: 1 !important;
}
.nav-links > .nav-link::after {
  background: #000000 !important;
}
.nav-links > .nav-link.active::after {
  background: #000000 !important;
}
.header .logo img {
  filter: drop-shadow(1px 0 0 #000) drop-shadow(-1px 0 0 #000) drop-shadow(0 1px 0 #000) drop-shadow(0 -1px 0 #000) !important;
}
.nav-icon-link {
  background: rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  color: #000000 !important;
}
.nav-icon-link:hover {
  background: #000000 !important;
  color: var(--white) !important;
  border-color: #000000 !important;
}
.lang-btn {
  border: 1px solid transparent !important;
  color: #ffffff !important;
  opacity: 0.8 !important;
  background: transparent !important;
}
.lang-btn:hover {
  opacity: 1 !important;
}
.lang-btn.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  opacity: 1 !important;
}
.nav-more-dropdown {
  color: #000000 !important;
}
.nav-more-dropdown:hover {
  color: #000000 !important;
}
@media (max-width: 992px) {
  .nav-right {
    background: var(--secondary-deep);
    border-right: 1px solid var(--border-subtle);
  }
}

/* 3. HERO SECTION TEXT FIX */
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 4px rgba(6, 14, 28, 0.8);
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 14, 28, 0.78) 0%,
    rgba(11, 30, 53, 0.6) 40%,
    rgba(11, 30, 53, 0.4) 65%,
    rgba(6, 14, 28, 0.72) 100%
  );
  z-index: 1;
}

/* 4. BUTTONS (Global) */
.btn-primary {
  background: var(--primary);
  color: var(--secondary-deep);
  border: 2px solid var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-btn);
  border-radius: 8px;
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 28px rgba(211, 84, 0, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-whatsapp,
a[href*="wa.me"].btn,
.float-wa {
  background: var(--whatsapp-green);
  color: var(--white);
  border-color: var(--whatsapp-green);
}

/* 5. BOOKING CARDS */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  border-radius: 14px;
  color: var(--text-main);
}
.booking-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.booking-card .card-title,
.booking-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
}
.booking-card .card-subtitle,
.booking-card p {
  color: var(--text-muted);
}
/* Circular arrow buttons */
.booking-card .card-arrow-btn {
  background: var(--primary);
  color: var(--secondary-deep);
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--primary-glow);
}
.booking-card .card-arrow-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

/* Original text design for 'BOOK >' */
.booking-card .btn-minimal {
  background: transparent;
  color: var(--primary);
  border-radius: 0;
  box-shadow: none;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.booking-card .btn-minimal:hover {
  background: transparent;
  color: var(--white);
  transform: translateX(5px);
}

/* 6. BOOKING FORM SECTION */
#booking-section {
  background: var(--secondary-deep);
}
.booking-left h2,
.booking-left .section-title {
  color: var(--white);
}
.booking-left p {
  color: var(--text-muted);
}
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
}
.booking-form-card input,
.booking-form-card select {
  background: rgba(11, 30, 53, 0.6);
  border: 1px solid var(--border-card);
  color: var(--white);
  border-radius: 8px;
}
.booking-form-card input::placeholder {
  color: var(--text-muted);
}
.booking-form-card input:focus,
.booking-form-card select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
}
.booking-form-card label,
.form-group-section h3,
.form-selector-col h3 {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.input-wrapper svg,
.input-wrapper i,
.input-icon {
  color: var(--primary);
}
.selector-button-group {
  background-color: #ffffff !important;
  border: 1px solid var(--border-card) !important;
}
.selector-btn {
  background: transparent !important;
  border: none !important;
  color: #000000 !important;
  border-radius: 6px !important;
}
.selector-btn.active {
  background: var(--primary) !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 700 !important;
}

/* 7. SECTION TITLES & GLOBAL TYPOGRAPHY */
.section-title h2 {
  color: var(--white);
  font-family: var(--font-heading);
}
.section--light .section-title h2,
section[class*="light"] .section-title h2,
.bg-light .section-title h2 {
  color: var(--text-dark-main);
}
.section-label,
.section-eyebrow {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
section:not(.section--light):not(.bg-light) p:not([class]) {
  color: var(--text-muted);
}

/* 8. SERVICES SECTION & CARDS */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  color: var(--text-main);
}
.service-card:hover {
  border-color: var(--border-strong);
}
.service-card h3,
.service-card .service-card-title,
.service-title {
  color: var(--white);
  font-family: var(--font-heading);
}
.service-card p,
.service-description,
.service-card h4,
.service-category,
.service-card li,
.service-list li {
  color: #ffffff !important;
}
.service-card .service-icon,
.service-card .fa-icon-wrapper,
.service-title i {
  color: var(--primary);
  background: var(--primary-glow);
  border-radius: 12px;
  padding: 0.75rem;
}
.service-card .service-features li::before,
.service-card .service-features li .bullet,
.service-list li::before {
  color: var(--primary);
}

/* 9. ABOUT PAGE */
.about-history-section {
  background: var(--secondary);
}
.about-history-section h2 {
  color: var(--white);
}
.about-history-section p {
  color: var(--text-muted);
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.feature-item:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}
.feature-item h3,
.feature-item h4,
.feature-item .feature-title {
  color: var(--white);
}
.feature-item p {
  color: var(--text-muted);
}
.feature-item .feature-icon {
  color: var(--primary);
}
.testimonials {
  background: var(--secondary-deep);
}
.testimonial-card,
.testimonial-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  color: var(--text-muted);
  font-family: var(--font-quote);
}
.testimonial-card .testimonial-author {
  color: var(--primary);
}
.stars,
.star-icon {
  color: var(--primary);
}

/* 10. CONTACT PAGE */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 24px;
}
.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 20px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  text-align: left !important;
}
.contact-card:hover,
.contact-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
}
.contact-card .contact-icon,
.contact-item .contact-icon,
.icon-wrapper {
  color: var(--primary);
  background: var(--primary-glow);
  border-radius: 50%;
  padding: 0.85rem;
}
.contact-item svg {
  color: var(--primary) !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  flex-shrink: 0 !important;
  margin-top: 4px !important;
}
.contact-card h3,
.contact-item h3,
.contact-card h4,
.contact-item h4 {
  color: var(--white);
}
.contact-details-box h3 {
  color: #ffffff !important;
}
.contact-card a,
.contact-card p,
.contact-item a,
.contact-item p {
  color: var(--text-muted);
}
.contact-card a:hover,
.contact-item a:hover {
  color: var(--primary);
}
#contactForm input,
#contactForm textarea,
.contact-form input,
.contact-form textarea {
  background: rgba(11, 30, 53, 0.6);
  border: 1px solid var(--border-card);
  color: var(--white);
  border-radius: 8px;
}
#contactForm input:focus,
#contactForm textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
}
#contactForm input::placeholder,
#contactForm textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

/* 11. VEHICLE GALLERY PAGE */
.filter-btn,
.gallery-filter {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.gallery-filter:hover {
  border-color: var(--border-strong);
  color: var(--white);
}
.filter-btn.active,
.gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary-deep);
  font-weight: 700;
}
.lightbox {
  background: rgba(6, 14, 28, 0.95);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  color: var(--primary);
  border: 1px solid var(--border-subtle);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: var(--secondary-deep);
}
.lightbox-counter {
  color: var(--text-muted);
}

/* 12. FOOTER */
.footer {
  background: var(--secondary-deep);
  border-top: 1px solid var(--border-subtle);
}
.footer h3,
.footer .footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
}
.footer p,
.footer address,
.footer strong {
  color: var(--text-muted);
}
.footer a {
  color: var(--text-muted);
}
.footer a:hover {
  color: var(--primary);
}
.footer .footer-logo-text {
  color: var(--white);
}
.footer .footer-divider,
.footer-bottom {
  border-color: var(--border-subtle);
}
.footer .footer-copyright,
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer a[href*="google"] {
  color: var(--primary);
}
.footer a[href*="google"]:hover {
  color: var(--primary-hover);
}
.footer-contact-item svg,
.footer-contact-item i {
  color: var(--primary);
}

/* 13. FLOATING ELEMENTS */
.mobile-bottom-nav {
  background: var(--secondary-deep);
  border-top: 1px solid var(--border-subtle);
}
.mobile-bottom-nav .nav-item,
.bottom-nav-link {
  color: var(--text-muted);
}
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover,
.bottom-nav-link.active,
.bottom-nav-link:hover {
  color: var(--primary);
}
.mobile-more-dropdown-content {
  background: var(--primary) !important;
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  padding: 5px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  bottom: calc(100% + 10px) !important;
  right: 0 !important;
  
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.3s ease !important;
}

.mobile-more-dropdown.active .mobile-more-dropdown-content {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-more-dropdown-content .bottom-nav-link {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 15px !important;
  background: transparent !important;
  color: #000000 !important;
  padding: 10px 15px !important;
  margin-bottom: 2px !important;
  width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-weight: 600 !important;

  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}
.mobile-more-dropdown-content .bottom-nav-link:last-child {
  margin-bottom: 0 !important;
}

.mobile-more-dropdown-content .bottom-nav-link svg,
.mobile-more-dropdown-content .bottom-nav-link i {
  color: #000000 !important;
  font-size: 1.1rem !important;
}
.mobile-more-dropdown-content .bottom-nav-link span {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #000000 !important;
}

.mobile-more-dropdown-content .bottom-nav-link:hover {
  background: #ffffff !important;
  color: #000000 !important;
}
.mobile-more-dropdown-content .bottom-nav-link:hover svg,
.mobile-more-dropdown-content .bottom-nav-link:hover i,
.mobile-more-dropdown-content .bottom-nav-link:hover span {
  color: #000000 !important;
}

/* 14. BOOKING MODAL */
.booking-modal-overlay {
  background: rgba(6, 14, 28, 0.9);
}
.booking-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}
.booking-modal-content h2,
.booking-modal-content h3 {
  color: var(--white);
}
.booking-modal-desc {
  color: #ffffff !important;
}
.opt-card-title {
  color: #ffffff !important;
}
.opt-card-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}
.booking-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.booking-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.booking-modal-option-card,
.modal-opt-card {
  background: var(--secondary);
  border: 2px solid var(--border-card);
  border-radius: 12px;
  color: var(--text-muted);
}
.booking-modal-option-card.selected,
.booking-modal-option-card:hover,
.modal-opt-card.active,
.modal-opt-card:hover {
  border-color: var(--primary);
  color: var(--white);
}
.booking-modal-option-card .option-icon,
.modal-opt-card .opt-icon-circle {
  color: var(--primary);
}
.modal-opt-card[data-value="whatsapp"].active {
  border-color: var(--whatsapp-green);
}
.booking-modal-close {
  color: #ffffff !important;
  opacity: 0.8 !important;
}
.booking-modal-close:hover {
  color: var(--primary) !important;
  opacity: 1 !important;
}

/* 15. GOOGLE REVIEW CTA SECTION */
.google-review-cta-section {
  background: transparent !important;
  border-top: none;
  border-bottom: none;
}
.google-review-cta-section h2,
.google-review-cta-section h3,
.google-review-cta-section .cta-heading {
  color: var(--white);
}
.google-review-cta-section p {
  color: var(--text-muted);
}
.google-review-cta-section .star-icon,
.google-review-cta-section svg[class*="star"],
.google-review-cta-section svg {
  color: var(--primary);
}

/* 16. PAGE HEADERS */
.page-header {
  background: linear-gradient(
    160deg,
    rgba(6, 14, 28, 0.88) 0%,
    rgba(11, 30, 53, 0.75) 100%
  );
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.page-header h1 {
  color: var(--white);
  font-family: var(--font-heading);
}
.page-header p {
  color: var(--text-muted);
}

/* 17. TOAST NOTIFICATION */
#referral-prompt {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  color: var(--text-main);
}
#referral-prompt .referral-title {
  color: var(--white);
}
#referral-prompt .referral-progress-bar,
#referral-prompt .progress-fill,
#referral-progress {
  background: var(--primary);
}

/* 18. LOCATION MAP SECTION */
.map-section,
.location-section,
.location-map-section {
  background: var(--secondary-deep);
  border-top: 1px solid var(--border-subtle);
}

/* 19. 3D CONCAVE CAROUSEL */
.concave-carousel-wrapper {
  background: var(--secondary-deep);
}
.concave-carousel-wrapper::before,
.concave-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.concave-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--secondary-deep), transparent);
}
.concave-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--secondary-deep), transparent);
}

/* 20. FLEET CARDS */
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.fleet-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.fleet-card .fleet-card-info h3,
.fleet-info h3 {
  color: var(--white);
}
.fleet-card .fleet-card-info p,
.fleet-info p {
  color: var(--text-muted);
}
.fleet-img-container {
  background-color: var(--secondary-mid);
}
.fleet-info {
  background-color: var(--bg-card);
}

/* ==========================================================================
   USER REQUESTED OVERRIDES (Global Background & Header)
   ========================================================================== */

body {
  position: relative;
  background-color: #0b1e35;
}

/* Fix background shaking by using a fixed hardware-accelerated pseudo-element instead of background-attachment: fixed */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -999;
  background-image: linear-gradient(rgba(11, 30, 53, 0.7), rgba(11, 30, 53, 0.7)), url('../assets/images/hero/hero-bg.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
}

.header, .header.scrolled, body.subpage .header {
  background: var(--primary) !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

/* Ensure background image is visible by making main sections transparent */
section, .section, .footer, .about-history-section, .testimonials, .booking-section, .map-section, .location-section, .concave-carousel-wrapper, .page-header {
  background: transparent !important;
}

/* Let cards remain semi-transparent to maintain legibility over the image */
.booking-card, .service-card, .feature-item, .testimonial-card, .contact-card, .fleet-card, .booking-form-card, .modal-opt-card {
  background: rgba(15, 35, 56, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
