.tab-menu {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 500px;
  margin: 20px auto 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border: none;
  background-color: white;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  border-right: 1px solid #ffc107;
}

.tab:first-child {
  border-radius: 30px 0 0 30px;
}

.tab:last-child {
  border-radius: 0 30px 30px 0;
  border-right: none;
}

.tab.active {
  background-color: #ffc107;
  color: white;
  border: none;
}

.tab-content {
  max-width: 500px;
  margin: 20px auto;
}

.ride-form {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.ride-form.active {
  display: flex;
}

.ride-form input,
.ride-form select,
.ride-form button {
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.ride-form button {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.time-group {
    display: inline-flex
;
    gap: 30px;
}

.section-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0b0b0b;
  text-align: center;
}

.section-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.underline {
  width: 50px;
  height: 3px;
  background-color: #ffb400;
  margin: 0 auto 30px auto;
  position: relative;
}

.underline::after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #ffb400;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
}

.cities-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.cities-grid ul {
  list-style: none;
  padding: 0;
}

.cities-grid li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.cities-grid li::before {
  content: "›";
  color: #ffb400;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cities-grid a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.cities-grid a:hover {
  color: #000;
  text-decoration: underline;
}

       /* 'outstation */
      .booking-section {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.booking-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}
.booking-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  color: #000;
}
.booking-tab.active {
    background-color: #f9d700;
    color: #000000;
}
.booking-form {
  display: none;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
}
.booking-form.active {
  display: block;
}
.booking-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.booking-col {
  flex: 1;
  min-width: 200px;
}
.booking-col label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #444;
}
.booking-col input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button[type="submit"] {
  padding: 10px 20px;
  background: #18b4f4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
button[type="submit"]:hover {
  background: #0d8ecf;
}
@media (max-width: 768px) {
  .booking-row {
    flex-direction: column;
  }
}
    /* 'info */
 .info-section {
  padding: 30px 20px;
}

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

.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-paragraph {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.section-space {
padding: 50px 0 20px 0;
}

/* Custom Booking Section */
/* Custom Booking Section */
.custom-booking-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-booking-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  gap: 10px;
}
.custom-tab {
  flex: 1;
  background: #f1f1f1;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s;
  border-radius: 6px 6px 0 0;
}
.custom-tab.active {
  background: #ffc107;
  color: #fff;
}
.custom-booking-form {
  display: none;
}
.custom-booking-form.active {
  display: block;
}
.custom-booking-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.custom-col {
  flex: 1 1 45%;
}
.custom-col label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
}
.custom-col input,
.custom-col select {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}
.custom-col input:focus,
.custom-col select:focus {
  border-color: #ffc107;
  outline: none;
}
.custom-submit-btn {
  background: #17b3f1;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.custom-submit-btn:hover {
  background: #0fa1db;
}
@media (max-width: 768px) {
  .custom-booking-row {
    flex-direction: column;
  }
  .custom-col {
    flex: 1 1 100%;
  }
  .custom-tab {
    font-size: 14px;
  }
}


/* nav button */
.call-now-btn a {
  background-color: #ffc107;
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  animation: flash 1.4s infinite;
  transition: background-color 0.3s ease;
}
.call-now-btn a:hover {
  background-color: #ffdb4d;
  text-decoration: none;
  color: #000;
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* fandq */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

.faq-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  color:#333;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough height to show content */
}

.faq-answer p {
  padding: 10px 0;
  margin: 0;
  color: #444;
}


/* ===== Booking Form Section ===== */
.cabform-section {
    background: #f8f8f8;
    padding: 50px 20px;
}

.cabform-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cabform-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #222;
}

.cabform-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cabform-form input,
.cabform-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.cabform-form input:focus,
.cabform-form select:focus {
    border-color: #ff9800;
    box-shadow: 0 0 5px rgba(255,152,0,0.4);
}

.cabform-btn {
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background 0.3s ease;
}

.cabform-btn:hover {
    background: #e68900;
}

/* ===== Popup ===== */
.cabform-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cabform-popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    width: 90%;
}

#cabform-close-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .cabform-container {
        padding: 20px;
    }
    .cabform-title {
        font-size: 22px;
    }
    .cabform-form {
        gap: 10px;
    }
}



/* ==== Cab Section ==== */
/* Section wrapper */
.cab-sec {
  padding: 60px 20px;
}

.cab-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cab-head h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.cab-head p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Grid for cards */
.cab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Individual card */
.cab-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cab-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Pricing ribbon */
.cab-rate {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffdb4d;
  color: #1d1d1d;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Image */
.cab-img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Title & text */
.cab-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.cab-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Button */
.cab-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #e1c829;
  color: #161616;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cab-btn:hover {
  background: #e65c00;
  color: #FFF;
}

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

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


/*form css booking*/
/* Booking Form Title */
.bkform-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

/* Form Container */
.bkform {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* Input Fields & Dropdowns */
.bkform-input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.bkform-input:focus {
  border-color: #ff6600;
  outline: none;
  box-shadow: 0px 0px 6px rgba(255,102,0,0.3);
}

/* Flex for Time + AM/PM */
.bkform-flex {
  display: flex;
  gap: 10px;
}

/* Button */
.bkform-btn {
  width: 100%;
  padding: 14px;
  background: #ff6600;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.bkform-btn:hover {
  background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  .bkform {
    padding: 20px;
  }
  .bkform-flex {
    flex-direction: column;
  }
}

/* --- IGNORE --- */
.cab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0px 50px 0;
}

/* Individual Card */
.cab-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image */
.cab-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Card Content */
.cab-card-content {
    padding: 15px;
}

.cab-card-content h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.cab-card-content p {
    margin: 5px 0;
    color: #666;
}

.cab-price {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    color: #e91e63;
}

/* Book Now Button */
.cab-book-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 15px;
    background-color: #e1c829;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.cab-book-btn:hover {
    background-color: #e65c00;
    color: white;
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .cab-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .cab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .cab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cab-card img {
        height: 120px;
    }
}

/* =============================================
   City Autocomplete Dropdown — Global
   ============================================= */
.city-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.city-autocomplete-wrapper input {
    width: 100%;
}

.city-autocomplete-list {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    max-height: 230px;
    overflow-y: auto;
    z-index: 999999;
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    animation: acDropIn 0.14s ease;
}

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

.city-autocomplete-list li {
    padding: 9px 14px !important;
    cursor: pointer;
    font-size: 14px !important;
    color: #333 !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: background 0.12s;
    border-bottom: 1px solid #f4f4f4 !important;
    margin: 0 !important;
    line-height: 1.4;
}

.city-autocomplete-list li:last-child {
    border-bottom: none !important;
}

/* Override any global li::before bullets */
.city-autocomplete-list li::before,
.city-autocomplete-list li:before {
    content: none !important;
    display: none !important;
}

.city-autocomplete-list li .ac-pin {
    color: #ffc107;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 2px;
}

.city-autocomplete-list li:hover,
.city-autocomplete-list li.ac-active {
    background: #fffbe6 !important;
    color: #b8860b !important;
}

.city-autocomplete-list li mark {
    background: none;
    color: #ffc107;
    font-weight: 700;
    padding: 0;
}