    /* CSS Variables for Light/Dark Theme */
    html {
      transition: background-color 0.3s ease;
    }
    
    :root {
      --bg-primary: #f5f7fa;
      --bg-secondary: #e8ecf1;
      --bg-card: rgba(255, 255, 255, 0.95);
      --bg-card-hover: #ffffff;
      --text-primary: #1a202c;
      --text-secondary: #4a5568;
      --text-tertiary: #718096;
      --text-light: #a0aec0;
      --border-color: rgba(255, 255, 255, 0.3);
      --shadow-sm: rgba(0, 0, 0, 0.08);
      --shadow-md: rgba(0, 0, 0, 0.12);
      --shadow-lg: rgba(0, 0, 0, 0.15);
      --gradient-start: #667eea;
      --gradient-end: #764ba2;
      --gradient-bg-start: rgba(102, 126, 234, 0.05);
      --gradient-bg-end: rgba(118, 75, 162, 0.05);
      --header-bg: rgba(255, 255, 255, 0.95);
      --footer-bg: #1a202c;
      --input-bg: #ffffff;
      --input-border: #e2e8f0;
    }
    
    
    * {
      scroll-behavior: smooth;
    }

    /* Fixed header + promo bar: keep hash targets (e.g. #booking) visible below header */
    html {
      scroll-padding-top: 7.5rem;
    }
    @media (min-width: 768px) {
      html {
        scroll-padding-top: 9rem;
      }
    }
    #booking,
    #service-areas,
    #contact,
    #about,
    #services,
    #cabs,
    #home {
      scroll-margin-top: 7.5rem;
    }
    @media (min-width: 768px) {
      #booking,
      #service-areas,
      #contact,
      #about,
      #services,
      #cabs,
      #home {
        scroll-margin-top: 9rem;
      }
    }
    
    /* Theme transition for specific elements */
    body, header, section, footer, div:not([class*="fab"]):not([class*="icon"]), 
    p, h1, h2, h3, h4, h5, h6, span:not(.main-fab-icon) {
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
      color: var(--text-primary);
      /* Content Protection */
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-touch-callout: none;
    }
    
    /* Allow text selection for input fields and forms */
    input, textarea, [contenteditable="true"] {
      -webkit-user-select: text;
      -moz-user-select: text;
      -ms-user-select: text;
      user-select: text;
    }
    
    /* Prevent image dragging */
    img {
      -webkit-user-drag: none;
      -moz-user-drag: none;
      user-drag: none;
      pointer-events: none;
    }
    
    /* Re-enable pointer events for clickable images/links */
    a img, button img {
      pointer-events: auto;
    }
    
    /* Copyright notice overlay */
    .copy-notice {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.95);
      color: white;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      z-index: 100000;
      display: none;
      text-align: center;
      max-width: 90%;
      animation: fadeInScale 0.3s ease-out;
    }
    
    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }
    
    .copy-notice h3 {
      margin: 0 0 10px 0;
      font-size: 1.5rem;
      color: #ff6b6b;
    }
    
    .copy-notice p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
    }
    
    /* Header Modern */
    .header-shadow {
      background: var(--header-bg);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px var(--shadow-sm);
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }
    
    /* Top promo ticker — scrolls right → left */
    .header-promo-marquee {
      width: 100%;
      overflow: hidden;
      border-bottom: 1px solid rgba(234, 179, 8, 0.45);
      background: linear-gradient(90deg, rgba(254, 243, 199, 0.98) 0%, rgba(253, 230, 138, 0.95) 50%, rgba(254, 243, 199, 0.98) 100%);
      box-shadow: inset 0 -1px 0 rgba(250, 204, 21, 0.15);
    }
    .header-marquee-inner {
      overflow: hidden;
      padding: 0.35rem 0;
    }
    .header-marquee-track {
      display: flex;
      width: max-content;
      animation: header-marquee-rtl 52s linear infinite;
      will-change: transform;
    }
    .header-promo-marquee:hover .header-marquee-track {
      animation-play-state: paused;
    }
    .header-marquee-segment {
      flex-shrink: 0;
      padding: 0 2.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: 0.02em;
      color: #422006;
      white-space: nowrap;
    }
    .header-marquee-segment strong {
      color: #713f12;
      font-weight: 800;
      text-transform: uppercase;
    }
    .header-marquee-segment a {
      color: #854d0e;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .header-marquee-segment a:hover {
      color: #582c0e;
    }
    @keyframes header-marquee-rtl {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }
    @media (min-width: 768px) {
      .header-marquee-inner {
        padding: 0.4rem 0;
      }
      .header-marquee-segment {
        font-size: 0.8125rem;
        padding: 0 3rem;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .header-marquee-track {
        animation: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.25rem;
      }
      .header-marquee-segment {
        white-space: normal;
        text-align: center;
        padding: 0.25rem 0.75rem;
      }
      .header-marquee-segment[aria-hidden="true"] {
        display: none;
      }
    }
    
    /* Header Logo */
    .header-logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      margin: 0;
      padding: 0;
    }
    
    .header-logo {
      width: 150px;
      height: 45px;
      background-image: url('../logo/gmp-cabs-logo.png');
      background-size: 130%;
      background-position: center center;
      background-repeat: no-repeat;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
      transition: transform 0.3s ease;
      margin: 0;
    }
    
    .header-logo:hover {
      transform: scale(1.05);
    }
    
    @media (min-width: 768px) {
      .header-logo {
        width: 180px;
        height: 52px;
        background-size: 130%;
      }
    }
    
    @media (min-width: 1024px) {
      .header-logo {
        width: 220px;
        height: 62px;
        background-size: 130%;
      }
    }
    
    /* Footer wordmark — amber/yellow (matches header promo marquee) */
    .footer-wordmark-link {
      display: inline-block;
      text-decoration: none;
      margin: 0;
      padding: 0;
      transition: transform 0.3s ease, filter 0.3s ease;
      filter: drop-shadow(0 2px 12px rgba(250, 204, 21, 0.4));
    }
    
    .footer-wordmark-link:hover {
      transform: scale(1.04);
      filter: drop-shadow(0 4px 20px rgba(250, 204, 21, 0.55));
    }
    
    .footer-wordmark {
      display: block;
      font-weight: 800;
      font-size: 1.625rem;
      line-height: 1.2;
      letter-spacing: 0.03em;
      background: linear-gradient(180deg, #fffbeb 0%, #fde047 42%, #eab308 78%, #ca8a04 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    @media (min-width: 768px) {
      .footer-wordmark {
        font-size: 1.875rem;
      }
    }
    
    @media (min-width: 1024px) {
      .footer-wordmark {
        font-size: 2rem;
        letter-spacing: 0.05em;
      }
    }
    
    /* Modern Navigation Styles */
    .nav-link {
      position: relative;
      /* No transition on background — gradients + scroll spy made tabs feel sluggish */
      transition: none;
      padding: 8px 12px;
      border-radius: 8px;
      font-weight: 500;
    }
    
    .nav-link:hover {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      color: #667eea;
    }
    
    .nav-link.active {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
      color: #667eea;
      font-weight: 600;
    }
    
    /* Modern Button Styles */
    .btn-primary {
      background: linear-gradient(to right, #9333ea 0%, #3b82f6 100%);
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }
    
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }
    
    .btn-primary:hover::before {
      left: 100%;
    }
    
    .btn-primary:hover {
      box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
    }
    
    .btn-success {
      background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4);
    }
    
    .btn-success:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(56, 239, 125, 0.5);
    }
    
    /* Modern Card Styles with Glassmorphism */
    .card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      background: var(--bg-card);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-color);
      box-shadow: 0 8px 32px var(--shadow-sm);
    }
    
    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
      border-color: rgba(102, 126, 234, 0.5);
      background: var(--bg-card-hover);
    }

    /* Service area location pills */
    .area-pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .area-pill-list li { margin: 0; padding: 0; }
    .area-pill {
      display: inline-block;
      padding: 0.35rem 0.85rem;
      border-radius: 9999px;
      font-size: 0.8125rem;
      line-height: 1.4;
      background: #f3f4f6;
      color: #374151;
      text-decoration: none;
      border: 1px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    a.area-pill:hover {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
    }
    [data-theme="dark"] .area-pill {
      background: rgba(148, 163, 184, 0.12);
      color: #cbd5e1;
    }
    [data-theme="dark"] a.area-pill:hover {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
    }
    .service-area-card {
      padding: 1.5rem;
      border: 1px solid rgba(102, 126, 234, 0.18);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    @media (min-width: 768px) {
      .service-area-card { padding: 2rem; }
    }
    .service-area-card h3 { margin-bottom: 1rem; }
    [data-theme="dark"] .service-area-card {
      border-color: rgba(148, 163, 184, 0.28);
    }
    .service-area-card:hover {
      transform: none;
      border-color: rgba(102, 126, 234, 0.5);
      box-shadow: 0 0 0 1px rgba(102, 126, 234, 0.12), 0 10px 36px rgba(102, 126, 234, 0.14);
      background: var(--bg-card);
    }
    [data-theme="dark"] .service-area-card:hover {
      border-color: rgba(139, 156, 245, 0.55);
      box-shadow: 0 0 0 1px rgba(139, 156, 245, 0.2), 0 10px 36px rgba(102, 126, 234, 0.18);
    }
    .service-areas-keyword {
      color: #374151;
      font-weight: 700;
    }
    [data-theme="dark"] .service-areas-keyword {
      color: #c7d2fe !important;
    }
    .service-areas-top-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      max-width: 56rem;
      margin: 1.5rem auto 0;
    }
    
    /* Modern Hero Section */
    .hero-section {
      background-color: #667eea;
      background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%),
        url('../background/hero-background.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      overflow: hidden;
      will-change: background-position;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
      animation: pulse 15s ease-in-out infinite;
    }
    
    .hero-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(245, 247, 250, 1), transparent);
    }
    
    @keyframes pulse {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-10%, -10%) scale(1.1); }
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .hero-section,
    .cta-section {
      animation: fadeIn 0.5s ease-out;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    
    /* Fixed header is taller when promo banner is shown */
    #home.hero-with-promo-header {
      padding-top: 7.5rem;
    }
    @media (min-width: 768px) {
      #home.hero-with-promo-header {
        padding-top: 9rem;
      }
    }
    
    /* CTA Section with Parallax Effect */
    .cta-section {
      background-color: #667eea;
      background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.75) 0%, rgba(118, 75, 162, 0.75) 100%),
        url('../background/hero-background.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      overflow: hidden;
      will-change: background-position;
    }
    
    /* Fix background images on mobile devices */
    @media (max-width: 768px) {
      .hero-section,
      .cta-section {
        background-attachment: scroll !important;
      }
    }
    
    /* Mobile Menu */
    .mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
    
    .mobile-menu.active {
      max-height: 500px;
    }
    
    /* Modern Service Icons */
    .service-icon {
      width: 100%;
      height: 200px;
      margin: 0 auto 1.5rem;
      overflow: hidden;
      border-radius: 20px;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      filter: brightness(0.95);
    }
    
    .card:hover .service-icon img {
      transform: scale(1.15);
      filter: brightness(1.05);
    }
    
    .service-icon-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.7));
      padding: 12px;
      color: white;
      font-weight: 700;
      text-align: center;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 0.875rem;
    }
    
    /* Destination Cards */
    .destination-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      height: 280px;
      background-size: cover;
      background-position: center;
    }
    
    .destination-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
      transition: all 0.3s ease;
    }
    
    .destination-card:hover .destination-overlay {
      background: linear-gradient(to top, rgba(30,64,175,0.9) 0%, rgba(59,130,246,0.6) 100%);
    }
    
    /* Modern Floating Elements */
    .floating-whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    
    .floating-whatsapp:hover {
      transform: scale(1.15) translateY(-5px);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
      animation: none;
    }
    
    .floating-whatsapp .whatsapp-icon {
      width: 32px;
      height: 32px;
    }
    
    .floating-whatsapp .whatsapp-text {
      display: none;
    }
    
    /* Mobile: Hide floating WhatsApp (integrated into sticky bar) */
    @media (max-width: 768px) {
      .floating-whatsapp {
        display: none;
      }
    }
    
    /* Cookie Settings Button */
    .cookie-settings-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .cookie-settings-btn:hover {
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
      background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }
    
    /* Mobile: Keep FAB in corner */
    @media (max-width: 768px) {
      .fab-container {
        bottom: 60px;
        left: 12px;
      }
      
      .main-fab {
        width: 54px;
        height: 54px;
      }
      
      .main-fab-icon {
        font-size: 30px;
      }
      
      .fab-action-btn {
        width: 52px;
        height: 52px;
      }
    }
    
    .sticky-call-btn {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      box-shadow: 0 -4px 20px rgba(102, 126, 234, 0.3);
      backdrop-filter: blur(10px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .sticky-call-btn.show {
      transform: translateY(0);
    }
    
    .sticky-call-btn a {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      gap: 6px;
      transition: background-color 0.3s ease;
    }
    
    .sticky-call-btn a:first-child {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .sticky-call-btn a:first-child:hover {
      background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }
    
    .sticky-call-btn a:last-child {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }
    
    .sticky-call-btn a:last-child:hover {
      background: linear-gradient(135deg, #20bd5a 0%, #0f7a68 100%);
    }
    
    .sticky-call-btn a svg,
    .sticky-call-btn a .phone-icon {
      flex-shrink: 0;
    }
    
    @media (max-width: 768px) {
      .sticky-call-btn a {
        font-size: 13px;
        padding: 0 8px;
      }
    }
    
    @media (min-width: 769px) {
      .sticky-call-btn {
        display: none;
      }
    }
    
    /* Modern Badge */
    .badge-24x7 {
      display: inline-block;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      color: white;
      padding: 6px 14px;
      border-radius: 25px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-left: 8px;
      box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
      animation: badgePulse 2s ease-in-out infinite;
      letter-spacing: 0.5px;
    }
    
    @keyframes badgePulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
      }
    }
    
    /* Modern Form Inputs */
    .form-input {
      border: 2px solid rgba(102, 126, 234, 0.2);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(255, 255, 255, 0.9);
    }
    
    .form-input:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
      background: white;
      transform: translateY(-1px);
    }
    
    .form-input:hover {
      border-color: rgba(102, 126, 234, 0.4);
    }
    
    /* Date and time inputs - match other form fields exactly */
    input[type="date"],
    input[type="time"] {
      font-size: 16px;
      color: #374151;
      min-height: 56px;
      -webkit-appearance: none;
      appearance: none;
    }
    
    /* Mobile-specific: Larger font size to prevent zoom on iOS and consistent styling */
    @media (max-width: 768px) {
      /* All text and tel inputs */
      input[type="text"],
      input[type="tel"],
      input[type="date"],
      input[type="time"] {
        font-size: 16px !important;
        min-height: 56px !important;
        padding: 14px 16px !important;
        width: 100% !important;
      }
      
      /* Select dropdowns */
      select.form-input {
        font-size: 16px !important;
        min-height: 56px !important;
        padding: 14px 48px 14px 16px !important;
        width: 100% !important;
      }
      
      /* Form labels */
      label {
        font-size: 14px !important;
        margin-bottom: 8px !important;
      }
      
      /* Ensure labels wrap properly */
      label span {
        display: inline-block;
        margin-left: 4px;
      }
    }
    
    /* Gray out empty date/time fields to indicate they need input */
    input[type="date"]:invalid,
    input[type="time"]:invalid {
      color: #9ca3af;
    }
    
    /* Position calendar/time icons at the right */
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      opacity: 0.7;
      padding: 8px;
      margin-left: auto;
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator:hover,
    input[type="time"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
    }
    
    /* Ensure proper display on mobile */
    input[type="date"]::-webkit-datetime-edit-text-field,
    input[type="time"]::-webkit-datetime-edit-text-field {
      padding: 0;
    }
    
    /* Select dropdown styling */
    select.form-input {
      height: 56px;
      min-height: 56px;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 20px;
      padding-right: 48px !important;
    }
    
    select.form-input:invalid {
      color: #9ca3af;
    }
    
    select.form-input option {
      color: #374151;
    }
    
    select.form-input option:first-child {
      color: #9ca3af;
    }
    
    @media (max-width: 768px) {
      input[type="date"],
      input[type="time"] {
        font-size: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
      }
      
      select.form-input {
        background-size: 24px;
        background-position: right 16px center;
      }
      
      [data-theme="dark"] select.form-input {
        background-size: 24px !important;
        background-position: right 16px center !important;
      }
    }
    
    /* Modern Section Animations */
    section {
      animation: fadeInUp 0.8s ease-out;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Fleet Image Container */
    .fleet-image-container {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .fleet-image-container::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 2px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .card:hover .fleet-image-container::after {
      opacity: 1;
    }

    /* Fleet Tab Buttons */
    .fleet-tab-btn {
      background: transparent;
      color: #6b7280;
      border: none;
      cursor: pointer;
      position: relative;
      padding: 0.75rem 1.5rem;
      margin-bottom: -2px;
    }

    .fleet-tab-btn:hover {
      color: #667eea;
      background: rgba(102, 126, 234, 0.1);
    }

    .fleet-tab-btn.active {
      color: white;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-bottom: 2px solid transparent;
    }

    [data-theme="dark"] .fleet-tab-btn {
      color: #9ca3af;
    }

    [data-theme="dark"] .fleet-tab-btn:hover {
      color: #a78bfa;
      background: rgba(167, 139, 250, 0.1);
    }

    [data-theme="dark"] .fleet-tab-btn.active {
      color: white;
    }

    /* Cookie Consent Banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
      padding: 2rem;
      z-index: 10000;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
    }

    .cookie-banner.show {
      transform: translateY(0);
    }

    .cookie-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cookie-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1a1a1a;
      transition: color 0.3s ease;
    }

    .cookie-text {
      font-size: 1rem;
      line-height: 1.6;
      color: #4a5568;
      margin-bottom: 1.5rem;
      max-width: 900px;
      transition: color 0.3s ease;
    }

    .cookie-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cookie-btn {
      padding: 0.875rem 2rem;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
      border: 2px solid transparent;
      white-space: nowrap;
    }

    .cookie-btn-primary {
      background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
      color: white;
      border: none;
    }

    .cookie-btn-primary:hover {
      background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
    }

    .cookie-btn-outline {
      background: white;
      color: #1a1a1a;
      border: 2px solid #e2e8f0;
    }

    .cookie-btn-outline:hover {
      border-color: #48bb78;
      background: #f7fafc;
    }

    .cookie-btn-full {
      width: 100%;
    }

    /* Cookie Overlay */
    .cookie-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .cookie-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    /* Cookie Sidebar */
    .cookie-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 500px;
      height: 100vh;
      background: white;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .cookie-sidebar.show {
      transform: translateX(0);
    }

    .cookie-sidebar-header {
      padding: 1.5rem;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cookie-sidebar-header h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0;
    }

    .cookie-close {
      background: none;
      border: none;
      font-size: 2rem;
      color: #4a5568;
      cursor: pointer;
      padding: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .cookie-close:hover {
      color: #1a1a1a;
    }

    .cookie-sidebar-content {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
    }

    .cookie-intro {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #4a5568;
      margin-bottom: 1rem;
    }
    
    .cookie-description {
      margin-bottom: 1.5rem;
    }
    
    .cookie-extra-text {
      display: none;
      margin-top: 1rem;
    }
    
    .cookie-description.expanded .cookie-extra-text {
      display: block;
    }
    
    .cookie-show-toggle {
      background: none;
      border: none;
      color: #3b82f6;
      font-size: 0.875rem;
      cursor: pointer;
      padding: 0;
      margin-top: 0.5rem;
      text-decoration: none;
      font-weight: 500;
    }
    
    .cookie-show-toggle:hover {
      text-decoration: underline;
    }
    
    .cookie-list-placeholder {
      margin-top: 1rem;
      padding: 1rem;
      background: #f9fafb;
      border-radius: 0.375rem;
      text-align: center;
      color: #6b7280;
      font-size: 0.875rem;
    }

    .cookie-link {
      color: #48bb78;
      text-decoration: none;
    }

    .cookie-link:hover {
      text-decoration: underline;
    }

    .cookie-category {
      margin-bottom: 1rem;
      border: 1px solid #e2e8f0;
      border-radius: 0.5rem;
      overflow: hidden;
    }

    .cookie-category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: #f7fafc;
    }

    .cookie-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: none;
      border: none;
      cursor: pointer;
      flex: 1;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: #1a1a1a;
    }

    .cookie-toggle-icon {
      display: inline-block;
      transition: transform 0.3s ease;
      font-size: 1.5rem;
      line-height: 1;
    }

    .cookie-category.expanded .cookie-toggle-icon {
      transform: rotate(90deg);
    }

    .cookie-category-name {
      font-size: 1rem;
      font-weight: 600;
    }

    .cookie-status {
      font-size: 0.875rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 1rem;
    }

    .always-active {
      background: #48bb78;
      color: white;
    }

    .cookie-category-content {
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .cookie-category.expanded .cookie-category-content {
      max-height: 500px;
      padding: 1rem;
    }

    .cookie-category-content p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #4a5568;
      margin: 0;
    }

    /* Cookie Toggle Switch */
    .cookie-switch {
      position: relative;
      display: inline-block;
      width: 48px;
      height: 24px;
    }

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

    .cookie-slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #cbd5e0;
      transition: 0.3s;
      border-radius: 24px;
    }

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

    .cookie-switch input:checked + .cookie-slider {
      background-color: #48bb78;
    }

    .cookie-switch input:checked + .cookie-slider:before {
      transform: translateX(24px);
    }

    .cookie-sidebar-footer {
      padding: 1.5rem;
      border-top: 1px solid #e2e8f0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .cookie-banner {
        padding: 1.5rem 1rem;
      }

      .cookie-title {
        font-size: 1.25rem;
      }

      .cookie-text {
        font-size: 0.875rem;
      }

      .cookie-buttons {
        flex-direction: column;
      }

      .cookie-btn {
        width: 100%;
        justify-content: center;
      }

      .cookie-sidebar {
        max-width: 100%;
      }
    }
    
    /* FAB Container */
    .fab-container {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    
    /* Main FAB Button */
    .main-fab {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .main-fab:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
      background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }
    
    .main-fab:active {
      transform: translateY(-2px) scale(1);
    }
    
    .main-fab-icon {
      font-size: 32px;
      font-weight: 300;
      transition: transform 0.3s ease;
      line-height: 1;
      display: inline-block;
      transform: rotate(180deg);
    }
    
    .fab-container.expanded .main-fab-icon {
      transform: rotate(225deg);
    }
    
    /* FAB Action Buttons */
    .fab-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      opacity: 0;
      transform: translateY(20px);
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .fab-container.expanded .fab-actions {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
    
    /* Individual FAB Action Buttons */
    .fab-action-btn {
      width: 56px;
      height: 56px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    
    .fab-action-btn:hover {
      transform: translateY(-3px) scale(1.05);
    }
    
    .fab-action-btn:active {
      transform: translateY(-1px) scale(1);
    }
    
    /* Theme Toggle Button */
    .floating-theme-toggle {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .floating-theme-toggle:hover {
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
      background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }
    
    /* Theme icon visibility based on data-theme attribute */
    /* Light mode - show moon icon (to switch to dark) */
    [data-theme="light"] #floating-sun-icon {
      display: none;
    }
    
    [data-theme="light"] #floating-moon-icon {
      display: block;
    }
    
    /* Dark mode - show sun icon (to switch to light) */
    [data-theme="dark"] #floating-sun-icon {
      display: block;
    }
    
    [data-theme="dark"] #floating-moon-icon {
      display: none;
    }
    
    /* Default state when no data-theme attribute (light mode) */
    html:not([data-theme]) #floating-moon-icon {
      display: block;
    }
    
    html:not([data-theme]) #floating-sun-icon {
      display: none;
    }

    /* Header theme toggle (#sun-icon / #moon-icon) — FAQ & location pages */
    [data-theme="light"] #sun-icon {
      display: none !important;
    }

    [data-theme="light"] #moon-icon {
      display: block !important;
    }

    [data-theme="dark"] #sun-icon {
      display: block !important;
    }

    [data-theme="dark"] #moon-icon {
      display: none !important;
    }

    html:not([data-theme]) #moon-icon {
      display: block !important;
    }

    html:not([data-theme]) #sun-icon {
      display: none !important;
    }

    .theme-toggle-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      transition: all 0.3s ease;
    }

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

    [data-theme="dark"] .theme-toggle-btn:hover {
      background: rgba(148, 163, 184, 0.1);
    }

    [data-theme="dark"] #sun-icon,
    [data-theme="dark"] #moon-icon {
      color: var(--text-primary) !important;
    }
    
    /* Dark Mode Specific Styles - Applied via data-theme attribute */
    [data-theme="dark"] {
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --bg-card: rgba(30, 41, 59, 0.95);
      --bg-card-hover: #334155;
      --text-primary: #f1f5f9;
      --text-secondary: #cbd5e1;
      --text-tertiary: #94a3b8;
      --text-light: #64748b;
      --border-color: rgba(148, 163, 184, 0.2);
      --shadow-sm: rgba(0, 0, 0, 0.3);
      --shadow-md: rgba(0, 0, 0, 0.4);
      --shadow-lg: rgba(0, 0, 0, 0.5);
      --gradient-bg-start: rgba(102, 126, 234, 0.15);
      --gradient-bg-end: rgba(118, 75, 162, 0.15);
      --header-bg: rgba(15, 23, 42, 0.95);
      --footer-bg: #020617;
      --input-bg: #1e293b;
      --input-border: #334155;
    }
    
    [data-theme="dark"] .text-gray-900 {
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .text-gray-800 {
      color: var(--text-secondary) !important;
    }
    
    [data-theme="dark"] .text-gray-700 {
      color: var(--text-tertiary) !important;
    }
    
    [data-theme="dark"] .text-gray-600,
    [data-theme="dark"] .text-gray-500 {
      color: var(--text-light) !important;
    }
    
    [data-theme="dark"] .text-gray-400 {
      color: #94a3b8 !important;
    }

    /* Header nav: .text-gray-700 uses !important above — restore hover/active accent */
    [data-theme="dark"] .nav-link:hover {
      color: #667eea !important;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    }

    [data-theme="dark"] .nav-link.active {
      color: #667eea !important;
    }
    
    [data-theme="dark"] .bg-white {
      background: var(--bg-card) !important;
    }
    
    [data-theme="dark"] .bg-gray-50,
    [data-theme="dark"] .bg-gray-100 {
      background: var(--bg-secondary) !important;
    }
    
    [data-theme="dark"] .border-gray-200,
    [data-theme="dark"] .border-gray-300 {
      border-color: rgba(102, 126, 234, 0.3) !important;
    }
    
    /* Force dark theme on booking form inputs */
    [data-theme="dark"] #booking-form input.border-gray-300 {
      background: var(--input-bg) !important;
      border: 2px solid rgba(102, 126, 234, 0.3) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] #booking-form select.border-gray-300 {
      background-color: var(--input-bg) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 16px center !important;
      background-size: 22px !important;
      border: 2px solid rgba(102, 126, 234, 0.3) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] #booking-form input.border-gray-300:hover,
    [data-theme="dark"] #booking-form select.border-gray-300:hover {
      border-color: rgba(102, 126, 234, 0.5) !important;
    }
    
    [data-theme="dark"] #booking-form input.border-gray-300:focus,
    [data-theme="dark"] #booking-form select.border-gray-300:focus {
      outline: none !important;
      border-color: #667eea !important;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
      transform: translateY(-1px);
    }
    
    /* Disabled input styles */
    #booking-form input:disabled,
    #booking-form select:disabled {
      background-color: #f3f4f6 !important;
      color: #6b7280 !important;
      cursor: not-allowed !important;
      opacity: 0.7;
    }
    
    [data-theme="dark"] #booking-form input:disabled,
    [data-theme="dark"] #booking-form select:disabled {
      background-color: rgba(55, 65, 81, 0.5) !important;
      color: #9ca3af !important;
      border-color: rgba(75, 85, 99, 0.5) !important;
    }
    
    /* Placeholder color in dark theme */
    [data-theme="dark"] #booking-form input::placeholder {
      color: var(--text-light) !important;
      opacity: 0.7;
    }
    
    [data-theme="dark"] .footer-bg {
      background: var(--footer-bg) !important;
    }
    
    /* Dark theme form inputs */
    [data-theme="dark"] input.form-input,
    [data-theme="dark"] textarea.form-input {
      background: var(--input-bg) !important;
      border: 2px solid rgba(102, 126, 234, 0.3) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] select.form-input {
      background-color: var(--input-bg) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 16px center !important;
      background-size: 22px !important;
      border: 2px solid rgba(102, 126, 234, 0.3) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] input.form-input:hover,
    [data-theme="dark"] textarea.form-input:hover {
      border-color: rgba(102, 126, 234, 0.5) !important;
    }
    
    [data-theme="dark"] select.form-input:hover {
      border-color: rgba(102, 126, 234, 0.5) !important;
    }
    
    [data-theme="dark"] input.form-input:focus,
    [data-theme="dark"] textarea.form-input:focus {
      background: var(--input-bg) !important;
      outline: none !important;
      border-color: #667eea !important;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
      transform: translateY(-1px);
    }
    
    [data-theme="dark"] select.form-input:focus {
      background-color: var(--input-bg) !important;
      outline: none !important;
      border-color: #667eea !important;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
      transform: translateY(-1px);
    }
    
    /* Dark theme select options styling */
    [data-theme="dark"] select.form-input:invalid {
      color: #9ca3af !important;
    }
    
    [data-theme="dark"] select.form-input option {
      color: #e5e7eb !important;
      background: var(--input-bg) !important;
    }
    
    [data-theme="dark"] select.form-input option:first-child {
      color: #9ca3af !important;
    }
    
    /* Dark theme date/time inputs */
    [data-theme="dark"] input[type="date"],
    [data-theme="dark"] input[type="time"] {
      color: #e5e7eb;
      min-height: 56px;
    }
    
    [data-theme="dark"] input[type="date"]:invalid,
    [data-theme="dark"] input[type="time"]:invalid {
      color: #9ca3af;
    }
    
    /* Dark theme mobile-specific */
    @media (max-width: 768px) {
      [data-theme="dark"] input[type="text"],
      [data-theme="dark"] input[type="tel"],
      [data-theme="dark"] input[type="date"],
      [data-theme="dark"] input[type="time"] {
        font-size: 16px !important;
        min-height: 56px !important;
        padding: 14px 16px !important;
        width: 100% !important;
      }
      
      [data-theme="dark"] select.form-input {
        font-size: 16px !important;
        min-height: 56px !important;
        padding: 14px 48px 14px 16px !important;
        width: 100% !important;
      }
      
      [data-theme="dark"] label {
        font-size: 14px !important;
        margin-bottom: 8px !important;
      }
    }
    
    /* Dark theme calendar/time icons - white and more visible */
    [data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator,
    [data-theme="dark"] input[type="time"]::-webkit-calendar-picker-indicator {
      filter: invert(1) brightness(1.2);
      opacity: 0.9;
      padding: 8px;
    }
    
    [data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator:hover,
    [data-theme="dark"] input[type="time"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
      filter: invert(1) brightness(1.4);
    }
    
    /* Dark theme hero gradient */
    [data-theme="dark"] .hero-section::after {
      background: linear-gradient(to top, rgba(30, 20, 60, 0.9), transparent) !important;
      height: 150px !important;
    }
    
    /* Service Type Tabs */
    .service-tab {
      background: transparent;
      color: #6b7280;
      border: none;
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .service-tab:hover {
      color: #667eea;
      background: rgba(102, 126, 234, 0.1);
    }
    
    .service-tab.active {
      color: white;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-bottom: 2px solid transparent;
      font-weight: 600;
    }
    
    .service-tab.active:hover {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    [data-theme="dark"] .service-tab {
      color: #9ca3af;
    }
    
    [data-theme="dark"] .service-tab:hover {
      color: #a78bfa;
      background: rgba(167, 139, 250, 0.1);
    }
    
    [data-theme="dark"] .service-tab.active {
      color: white;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    /* Multi-option select (size attribute) styling */
    select[size] {
      padding: 0;
      overflow-y: auto;
      cursor: pointer;
      background-image: none !important;
      padding-right: 0 !important;
    }
    select[size] option {
      padding: 10px 14px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      cursor: pointer;
      transition: background 0.15s ease;
    }
    select[size] option:last-child {
      border-bottom: none;
    }
    select[size] option:hover {
      background: rgba(102, 126, 234, 0.1);
    }
    select[size] option:checked {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      font-weight: 600;
    }
    select[size] option:disabled {
      color: #9ca3af;
      background: #f9fafb;
      font-style: italic;
      cursor: default;
    }
    select[size] option:disabled:checked {
      background: #f9fafb;
      color: #9ca3af;
      font-weight: normal;
    }
    [data-theme="dark"] select[size] option {
      background: var(--input-bg);
      color: var(--text-primary);
      border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    [data-theme="dark"] select[size] option:hover {
      background: rgba(102, 126, 234, 0.2);
    }
    [data-theme="dark"] select[size] option:checked {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
    }
    [data-theme="dark"] select[size] option:disabled {
      color: #6b7280;
      background: rgba(30, 20, 60, 0.5);
    }
    [data-theme="dark"] select[size] option:disabled:checked {
      background: rgba(30, 20, 60, 0.5);
      color: #6b7280;
      font-weight: normal;
    }
    [data-theme="dark"] select[size] {
      background-image: none !important;
      padding-right: 0 !important;
    }

    /* Mobile: vehicle select as normal dropdown */
    @media (max-width: 768px) {
      .vehicle-select {
        height: 56px !important;
        overflow-y: hidden !important;
        padding: 14px 48px 14px 16px !important;
      }
    }
    
    /* Dark theme booking form */
    [data-theme="dark"] .booking-form-container {
      background: rgba(30, 20, 60, 0.85) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      color: white !important;
    }
    
    [data-theme="dark"] .booking-form-title {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
    }
    
    [data-theme="dark"] .booking-form-title {
      background: none !important;
      -webkit-text-fill-color: white !important;
      color: white !important;
    }
    
    [data-theme="dark"] .booking-form-container input {
      background: var(--input-bg) !important;
      border: 2px solid rgba(102, 126, 234, 0.3) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .booking-form-container select {
      background-color: var(--input-bg) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 16px center !important;
      background-size: 22px !important;
      border: 2px solid rgba(102, 126, 234, 0.3) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .booking-form-container input:hover,
    [data-theme="dark"] .booking-form-container select:hover {
      border-color: rgba(102, 126, 234, 0.5) !important;
    }
    
    [data-theme="dark"] .booking-form-container input:focus {
      outline: none !important;
      border-color: #667eea !important;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
      transform: translateY(-1px);
    }
    
    [data-theme="dark"] .booking-form-container select:focus {
      background-color: var(--input-bg) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 16px center !important;
      background-size: 22px !important;
      outline: none !important;
      border-color: #667eea !important;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15) !important;
      transform: translateY(-1px);
    }
    
    /* Dark theme fare legend/details */
    [data-theme="dark"] [id^="fare-details-"] {
      background: rgba(102, 126, 234, 0.15) !important;
      border-color: rgba(102, 126, 234, 0.3) !important;
    }
    [data-theme="dark"] [id^="fare-legend-"] p,
    [data-theme="dark"] [id^="fare-content-"] p {
      color: rgba(255, 255, 255, 0.85) !important;
    }
    [data-theme="dark"] [id^="fare-legend-"] .text-gray-400,
    [data-theme="dark"] [id^="fare-content-"] .text-gray-400,
    [data-theme="dark"] [id^="fare-content-"] .text-gray-500 {
      color: rgba(255, 255, 255, 0.5) !important;
    }
    
    [data-theme="dark"] input,
    [data-theme="dark"] textarea {
      background: var(--input-bg) !important;
      border-color: var(--input-border) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] select {
      background-color: var(--input-bg) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 16px center !important;
      background-size: 22px !important;
      border-color: var(--input-border) !important;
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] input::placeholder,
    [data-theme="dark"] textarea::placeholder {
      color: var(--text-light) !important;
    }
    
    /* Logo filter for dark mode */
    [data-theme="dark"] .header-logo {
      filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
    }
    
    /* Dark mode mobile menu */
    [data-theme="dark"] .mobile-menu {
      background: var(--bg-card) !important;
      border-color: var(--border-color) !important;
    }
    
    [data-theme="dark"] .mobile-menu a {
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .mobile-menu a:hover {
      color: #667eea !important;
    }
    
    [data-theme="dark"] #mobile-menu-toggle {
      color: var(--text-primary) !important;
    }
    
    /* Hover state for theme toggle in dark mode */
    [data-theme="dark"] .theme-toggle-btn:hover {
      background: rgba(148, 163, 184, 0.1);
    }
    
    /* Dark mode cookie sidebar */
    [data-theme="dark"] .header-promo-marquee {
      background: linear-gradient(90deg, rgba(113, 63, 18, 0.65) 0%, rgba(87, 47, 12, 0.55) 50%, rgba(113, 63, 18, 0.65) 100%);
      border-bottom-color: rgba(250, 204, 21, 0.35);
      box-shadow: inset 0 -1px 0 rgba(250, 204, 21, 0.12);
    }
    [data-theme="dark"] .header-marquee-segment {
      color: #fef3c7;
    }
    [data-theme="dark"] .header-marquee-segment strong {
      color: #fde68a;
    }
    [data-theme="dark"] .header-marquee-segment a {
      color: #fcd34d;
    }
    [data-theme="dark"] .header-marquee-segment a:hover {
      color: #fef08a;
    }
    
    [data-theme="dark"] .cookie-sidebar {
      background: var(--bg-card) !important;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5) !important;
    }
    
    [data-theme="dark"] .cookie-sidebar-header {
      border-color: var(--border-color) !important;
    }
    
    [data-theme="dark"] .cookie-sidebar-header h3 {
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .cookie-close {
      color: var(--text-secondary) !important;
    }
    
    [data-theme="dark"] .cookie-close:hover {
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .cookie-intro {
      color: var(--text-light) !important;
    }
    
    [data-theme="dark"] .cookie-category {
      border-color: var(--border-color) !important;
    }
    
    [data-theme="dark"] .cookie-category-header {
      background: var(--bg-secondary) !important;
    }
    
    [data-theme="dark"] .cookie-toggle {
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .cookie-category-content {
      background: var(--bg-card) !important;
      color: var(--text-secondary) !important;
    }
    
    [data-theme="dark"] .cookie-list-placeholder {
      background: var(--bg-secondary) !important;
      color: var(--text-light) !important;
    }
    
    [data-theme="dark"] .cookie-show-toggle {
      color: #667eea !important;
    }
    
    [data-theme="dark"] .cookie-link {
      color: #667eea !important;
    }
    
    [data-theme="dark"] .cookie-sidebar-footer {
      border-color: var(--border-color) !important;
      background: var(--bg-secondary) !important;
    }
    
    /* Dark mode for cookie banner */
    [data-theme="dark"] .cookie-banner {
      background: var(--bg-card) !important;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
    }
    
    [data-theme="dark"] .cookie-title {
      color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .cookie-text {
      color: var(--text-light) !important;
    }
    
    [data-theme="dark"] .cookie-btn-outline {
      background: var(--bg-secondary) !important;
      color: var(--text-primary) !important;
      border-color: var(--border-color) !important;
    }
    
    [data-theme="dark"] .cookie-btn-outline:hover {
      background: rgba(102, 126, 234, 0.1) !important;
      border-color: #667eea !important;
    }
