/* Navbar */
.navbar-dark {
  background-color: #343a40;
}
.navbar-brand {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  left: 15%;
}
#navbarNav {
  margin-left: 15%;
  position: relative;
  right: 18%;
}

  #preloader, #preloader * { box-sizing:border-box; }


/* Buttons */
.btn-dark-yellow {
  background-color: blue; /* was dark yellow; changed per your code */
  color: white;
  border-radius: 20px;
}
.btn-dark-yellow:hover {
  background-color: wheat;
  color: black;
}

/* Layout wrappers */
.section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 5%;
}

/* Home / hero */
#welcome {
  color: whitesmoke;
}
#home-section {
  background-image: url("../images/backgrounds/taxi-city-day.png");
  background-position: left center;
  background-size: contain;
  background-position-x: left 50px;
  width: 100%;
  height: 100%;
}
.section-box {
  flex: 1 1 300px;
  max-width: 500px;
  margin: 10px;
  padding: 20px;
}



.section-box h2 {
  margin-bottom: 20px;
}

#about-section img{
  margin-top: 20px;
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 10px;
}

/* Services background */
.services-background {
  background-image: url("../images/backgrounds/taxi-city-night.png");
  background-size: cover;
  background-position: left;
  width: 100%;
  height: 100%;
}
#services-section h3 {
  text-align: center;
  color: wheat;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  position: relative;
  top: 50px;              /* fixed unit */
  font-size: 2rem;
  font-weight: bold;
  padding-top: 55px;
}
.central-text {
  text-align: center;
  color: whitesmoke;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  position: relative;
  top: 25px;              /* fixed unit */
  font-size: 2rem;

}

/* Flipcard design */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-front {
  background-color: rgba(248, 249, 250, 0.4);
  color: black;
}

.flip-card-back {
  background-color: rgba(0,123,255,0.8);
  color: white;
  transform: rotateY(180deg);
  padding-top: 30px;
  align-items: center;
  text-align: center;
}
.flip-card-back h4 {
  position: absolute;
  top: 10px;
  font-size: 1.5rem;
}
.flip-card-back p {
  position: absolute;
  top: 45px;
}
.flip-card-back a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  align-content: center;
}

#service-card-1 {
  background-image: url("../images/flip-card-backgrounds/airport-pickup.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
#service-card-2 {
  background-image: url("../images/flip-card-backgrounds/door-to-door.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

#service-card-3 {
  background-image: url("../images/flip-card-backgrounds/corporate-transfers.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

#service-card-4 {
  background-image: url("../images/flip-card-backgrounds/hourly-transfer.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

/* Headings (one rule for all) */
h1, h2, h3, h4, h5, h6, .card-title {
  color: wheat;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

/* Section headers */
.central-heading {
  text-align: center;
  position: relative;
  top: 0;
  font-size: 2rem;
  font-weight: bold;
  padding-top: 55px;
  margin-bottom: 55px;
}

/* Generic card + why-us */
.card {
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  background-color: rgba(248, 249, 250, 0.4);
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
    background: linear-gradient(135deg, #E5B429 0%, #C4941A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 15px auto;
  font-size: 24px;
}


/* Unified price ribbon styles (used by both city & airport cards) */
.card.city-card,
.card.airport-card {
  position: relative;
  overflow: hidden;
}
.price-ribbon {
  position: absolute;
  top: 12px;
  right: -40px;           /* diagonal center */
  background: #ffc107;    /* Bootstrap warning */
  color: #212529;
  padding: 8px 60px;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  z-index: 2;
}
.city-card .card-img-top,
.airport-card .card-img-top {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Section spacing helpers (optional) */
#popular-cities .central-heading {
  margin-bottom: 1rem;
}
.fleet-card {
  width: 320px;                 /* consistent card width */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fleet-img {
  width: 100%;
  height: 220px;                /* consistent image height */
  object-fit: contain;            /* crops nicely */
  border-radius: 12px;
}

/*howitworks section */
/* Match site style */
:root {
  --accent: #d4a017;      /* your brand yellow */
  --heading: #2b2b2b;     /* dark heading */
  --text: #444;           /* body text */
}

.howitworks {
  background: #fff;
  font-family: inherit;   /* use your site font */
}

/* Your existing .central-heading will style the H2;
   these lines help if you need subtle tweaks */
.central-heading {
  letter-spacing: .3px;
  font-weight: 800;
}

.how-sub {
  max-width: 900px;
  color: var(--text);
  line-height: 1.7;
}

.how-card {
  max-width: 420px;
  margin: 0 auto;
}

.how-icon {
  color: var(--accent);   /* drives SVG color via currentColor */
}

.how-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--heading);
}

.how-step-text {
  color: #4b5563;         /* gray-600 */
  margin: 0 auto;
  max-width: 420px;
}

/* Footer *//* Footer visibility fixes */
.site-footer {
  background: #0b0c0f;
  color: #d9dde3;                 /* base text a bit brighter */
}

.site-footer .text-muted {        /* override Bootstrap muted */
  color: #b3bac4 !important;      /* brighter gray for dark bg */
}

.site-footer .link-muted {
  color: #c3c9d2;                 /* links readable by default */
  text-decoration: none;
}
.site-footer .link-muted:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer p,
.site-footer li {
  line-height: 1.7;               /* more breathing room */
}

/* Make section labels and headings pop */
.site-footer h5,
.site-footer h6,
.site-footer .fw-bold {
  color: #ffffff;
}

/* Social icons use currentColor; make them visible + hover accent */
.site-footer .footer-icon {
  color: #c3c9d2;
}
.site-footer .footer-icon:hover {
  color: #d4a017;
}

/* Ensure nothing gets clipped at the bottom on small screens */
.site-footer .container {
  padding-bottom: 24px;
}



/* Sticky button */
.contact-fab{
  position:fixed !important;
  right:20px !important;
  bottom:84px !important;        /* raise if you have a back-to-top */
  z-index:2147483647;
  pointer-events:none;            /* container ignores clicks */
}
.contact-fab .fab-toggle,
.contact-fab .fab-items { pointer-events:auto; }

/* Round trigger */
.fab-toggle{
  background:var(--accent); color:#111; border:0; border-radius:50%;
  width:56px; height:56px; display:grid; place-items:center;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  cursor:pointer; transition:transform .2s ease;
}
.fab-toggle:hover{ transform:scale(1.05); }

/* Vertical menu */
.fab-items{
  position:absolute; right:0; bottom:70px;
  background:var(--fab-bg); color:var(--fab-text);
  border-radius:12px; padding:8px; width:230px;
  box-shadow:0 16px 40px rgba(0,0,0,.45);
  opacity:0; transform:translateY(10px);
  pointer-events:none; transition:opacity .18s, transform .18s;
}
.contact-fab[aria-expanded="true"] .fab-items{
  opacity:1; transform:translateY(0); pointer-events:auto;
}

.fab-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:8px;
  color:#000000; text-decoration:none; font-size:14px;
  background-color: white; /* default background */
  transition: background .15s, color .15s;
}
.fab-item:hover{ background:rgba(255,255,255,.08); color:#006236; }
.fab-item i{ font-size:18px; line-height:0; }

/* Mobile */
@media (max-width:576px){
  .fab-toggle{ width:52px; height:52px; }
  .fab-items{ width:220px; right:0; bottom:64px; }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .flip-card-inner {
    height: 270px;
  }
  .how-step-text { 
    max-width: 360px; 
  }
}
@media (min-width: 765px) and (max-width: 1200px) {
  .flip-card-inner {
    height: 450px;
  }
  .flip-card-back p {
    top: 70px;
  }
}


/* ============================================
   COMPACT TAXI BOOKING FORM & MAP INTEGRATION
   ============================================ */

/* Main booking section */
#booking-form {
    background-color: rgba(248, 249, 250, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: none; /* Override the section-box max-width */
    overflow: hidden;
}

/* Compact booking container - vertical layout by default */
.booking-page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Compact form container */
.taxi-form-container {
    width: 100%;
    padding: 25px;
    background: white;
    border-radius: 15px;
}

/* Form title - more compact */
.taxi-form-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--heading);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;

}
 .logo-image {
    width: 60px; /* Adjusted for compactness */
    height: 60px;
    margin-right: 10px;}

.taxi-form-title.mini {
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-size: 20px;
    margin-bottom: 15px;
}

.taxi-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

/* Compact form layout */
.taxi-form {
    display: grid;
    gap: 15px;
}

/* Form groups - more compact */
.taxi-form-group {
    position: relative;
}

.taxi-form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Compact form inputs */
.taxi-form-input,
.taxi-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.taxi-form-input:focus,
.taxi-form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 0.15rem rgba(212, 160, 23, 0.15);
    transform: translateY(-1px);
}

.taxi-form-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

/* Address validation states */
.taxi-form-input.valid {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.03);
}

.taxi-form-input.invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.03);
}

/* Address suggestions dropdown */
.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Grid layouts for form rows */
.grid-1 { 
    display: grid; 
    grid-template-columns: 1fr; 
}

.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
}

.grid-3 { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
}

.grid-4 { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
}

.grid-5 { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
}

.gap-8 { gap: 0.5rem; }
.gap-12 { gap: 0.75rem; }

/* Legacy form row support */
.taxi-form-row {
    display: flex;
    gap: 1rem;
}

.taxi-form-row .taxi-form-group {
    flex: 1;
}

/* Compact submit button */
.taxi-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.taxi-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFE55C, #d4a017);
}

.taxi-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Map container - starts hidden, appears below form */
.taxi-map-container {
    width: 100%;
    height: 0;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 0;
}

/* Map container when shown */
.taxi-map-container.show {
    height: 400px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
}

/* Map styles */
#map {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Distance badge */
.distance-badge {
    background: rgba(11, 12, 15, 0.9);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 14px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

/* Loading state */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text);
    background: #f8f9fa;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

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

/* Success/Error messages */
.booking-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.booking-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

/* Utility classes */
.block { display: block; }
.me-2 { margin-right: 0.5rem; }
.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.text-muted { opacity: 0.7; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large screens - show form and map side by side */
@media (min-width: 1200px) {
    .booking-page-container.map-active {
        flex-direction: row;
        gap: 30px;
    }

    .booking-page-container.map-active .taxi-form-container {
        flex: 0 0 500px;
    }

    .booking-page-container.map-active .taxi-map-container {
        flex: 1;
        height: 600px;
        margin-top: 0;
    }
}

/* Tablet - keep compact layout with adjusted grids */
@media (max-width: 768px) {
    /* Adjust grid layouts for tablet */
    .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .taxi-form-container {
        padding: 20px;
    }

    .taxi-map-container.show {
        height: 350px;
    }

    .distance-badge {
        bottom: 15px;
        left: 15px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .taxi-form-title {
        font-size: 18px;
    }

    .taxi-form-input,
    .taxi-form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .taxi-form-label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .taxi-form {
        gap: 12px;
    }

    /* Legacy row support for tablet */
    .taxi-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile - still compact but optimized for touch */
@media (max-width: 576px) {
    /*body {
        padding: 10px;
    }*/

     .logo-image {
    width: 60px; /* Adjusted for compactness */
    height: 60px;
    margin-right: 10px;}

    /* Keep 2-column layout for compact form */
    .grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    /* Passengers field spans full width on small screens */
    .grid-3 .taxi-form-group:nth-child(3) {
        grid-column: 1 / -1;
    }

    .taxi-form-container {
        padding: 15px;
    }

    .taxi-map-container.show {
        height: 280px;
        margin-top: 15px;
    }

    .taxi-submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .taxi-form-input,
    .taxi-form-select {
        padding: 10px;
        font-size: 13px;
    }

    .taxi-form-label {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .taxi-form {
        gap: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .taxi-form-input,
    .taxi-form-select {
        padding: 9px;
        font-size: 13px;
    }

    .taxi-form-title {
        font-size: 16px;
    }

    .taxi-icon {
        font-size: 1.2rem;
    }

    .taxi-map-container.show {
        height: 250px;
    }
}






        /*loading screen */
    /* ============================================
      Preloader (scoped)
     ============================================ */
         
  


  #preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0b0c0f 0%, #343a40 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  #preloader .bg-animation { position:absolute; inset:0; overflow:hidden; z-index:1; }
  #preloader .bg-circle {
    position:absolute; border-radius:50%; background:rgba(212,160,23,0.1); animation:float 6s ease-in-out infinite;
  }
  #preloader .bg-circle:nth-child(1){ width:80px; height:80px; top:20%; left:10%; animation-delay:0s;}
  #preloader .bg-circle:nth-child(2){ width:120px; height:120px; top:60%; right:15%; animation-delay:2s;}
  #preloader .bg-circle:nth-child(3){ width:60px; height:60px; bottom:20%; left:20%; animation-delay:4s;}

  #preloader .loading-container { text-align:center; z-index:10; position:relative; padding:16px; }

  #preloader .logo { margin-bottom:40px; animation:logoGlow 2s ease-in-out infinite alternate; }
  #preloader .logo h1 {
    color:wheat; font-size:3rem; font-weight:700;
    text-shadow:-1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; margin-bottom:10px;
  }
  #preloader .logo p { color:#d9dde3; font-size:1.2rem; letter-spacing:2px; text-transform:uppercase; }

  #preloader .taxi-animation { position:relative; width:200px; height:100px; margin:0 auto 40px; }
  #preloader .taxi {
    width:90px; height:35px; background:#d4a017; border-radius:15px 15px 8px 8px; position:relative;
    animation:taxiMove 3s ease-in-out infinite; box-shadow:0 4px 15px rgba(0,0,0,0.3);
  }
  #preloader .taxi::before{
    content:''; position:absolute; top:-12px; left:20px; width:50px; height:20px; background:#0b0c0f;
    border-radius:8px 8px 4px 4px; box-shadow: inset 0 2px 8px rgba(212,160,23,0.4);
  }
  #preloader .taxi::after{
    content:'TAXI'; position:absolute; top:8px; left:50%; transform:translateX(-50%);
    font-size:10px; font-weight:700; color:#0b0c0f; background:rgba(248,249,250,0.9);
    padding:2px 6px; border-radius:3px; text-shadow:none;
  }

  #preloader .wheel {
    width:14px; height:14px; background:#0b0c0f; border-radius:50%; position:absolute; bottom:-7px;
    animation:wheelSpin 0.5s linear infinite; border:2px solid #343a40;
  }
  #preloader .wheel.front { right:12px; }
  #preloader .wheel.back { left:12px; }

  #preloader .loading-dots { display:flex; justify-content:center; align-items:center; gap:8px; margin-bottom:30px; }
  #preloader .dot { width:12px; height:12px; background:#d4a017; border-radius:50%; animation:dotPulse 1.4s ease-in-out infinite; box-shadow:0 0 10px rgba(212,160,23,0.5); }
  #preloader .dot:nth-child(2){ animation-delay:.2s; }
  #preloader .dot:nth-child(3){ animation-delay:.4s; }

  #preloader .progress-container {
    width:300px; height:6px; background:rgba(248,249,250,0.2); border-radius:3px;
    margin:0 auto 20px; overflow:hidden; box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  }
  #preloader .progress-bar {
    height:100%; background: linear-gradient(90deg, #d4a017, #b8900f); border-radius:3px;
    animation:progressFill 4s ease-in-out infinite; box-shadow:0 0 10px rgba(212,160,23,0.5);
  }

  #preloader .loading-text { color:#d9dde3; font-size:1.1rem; font-weight:500; animation:textFade 2s ease-in-out infinite alternate; }

  /* Animations */
  @keyframes float{ 0%,100%{transform:translateY(0) rotate(0);} 50%{transform:translateY(-20px) rotate(180deg);} }
  @keyframes logoGlow{ from{ text-shadow:-1px 0 black,0 1px black,1px 0 black,0 -1px black;} to{ text-shadow:-1px 0 black,0 1px black,1px 0 black,0 -1px black,0 0 20px rgba(212,160,23,0.8);} }
  @keyframes taxiMove{ 0%,100%{transform:translateX(-60px);} 50%{transform:translateX(60px);} }
  @keyframes wheelSpin{ from{transform:rotate(0);} to{transform:rotate(360deg);} }
  @keyframes dotPulse{ 0%,60%,100%{transform:scale(1);opacity:1;} 30%{transform:scale(1.5);opacity:.7;} }
  @keyframes progressFill{ 0%{width:0;} 50%{width:75%;} 100%{width:100%;} }
  @keyframes textFade{ from{opacity:.7;} to{opacity:1;} }

  /* Responsive */
  @media (max-width:768px){
    #preloader .logo h1{ font-size:2.5rem; }
    #preloader .logo p{ font-size:1rem; }
    #preloader .progress-container{ width:250px; }
    #preloader .taxi-animation{ width:150px; }
  }
  @media (max-width:480px){
    #preloader .logo h1{ font-size:2rem; }
    #preloader .progress-container{ width:200px; }
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    #preloader .bg-circle,
    #preloader .taxi,
    #preloader .wheel,
    #preloader .dot,
    #preloader .progress-bar,
    #preloader .logo,
    #preloader .loading-text { animation: none !important; }
  }

  /* Inline header ticker */
.ticker{
  overflow:hidden;
  min-height: 1.75rem;      /* keep header compact */
}
.ticker-track{
  display:inline-block;
  white-space:nowrap;
  will-change: transform;
  animation: ticker-scroll 22s linear infinite; /* adjust speed here */
}
.ticker-track:hover{ animation-play-state: paused; }  /* allow reading on hover */

.ticker-track span{
  display:inline-flex;
  align-items:center;
  gap:.25rem;
  padding:0 .9rem;
  border-right:1px solid rgba(255,255,255,.25);
  opacity:.95;
}
.ticker-track span:last-child{ border-right:none; }

.ticker-track a{ color:inherit; }

@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); } /* because sequence is duplicated */
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .ticker-track{ animation: none; }
}

/* Optional: slightly emphasize the brand item */
.ticker .brand{ opacity:1; }








