/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: BlankSlate WordPress boilerplate starter theme.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2025
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate
*/

/* ============================================================
   TABLE OF CONTENTS
   1.  Base & Body
   2.  Header & Navigation
   3.  Hero Section
   4.  Booking Card & Form
   5.  Why Choose Section
   6.  Drivers / Features Section
   7.  Fleet Section
   8.  Routes Section
   9.  Testimonials Section
   10. Customer Stats Section
   11. How It Works Section
   12. States Section
   13. Travel Blog Section
   14. FAQ Section
   15. Cab Results / Page Banner
   16. Support Section
   17. Footer
   18. Popups & Modals
   19. Buttons (Shared)
   20. Responsive — 1024px
   21. Responsive — 820px
   22. Responsive — 768px
   23. Responsive — 767px
   24. Responsive — 600px
   ============================================================ */


/* ============================================================
   1. BASE & BODY
   ============================================================ */
html{overflow-y: auto;}
body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    background-color: #f9fafc;
    color: #222;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}
.icon-style {
    width: 20px;
    height: 20px;
    padding: 0 5px;
}
.l{width:30px;height:30px;}
.icon {
    display: inline-flex;
}
.w{color:#fff;fill: #fff;}
.b{color:#000;fill: #000;}
.flex-center{display: flex; align-items:center;}
.site-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #facc15;
    margin: 20px auto 40px;
    border-radius: 2px;
}

.underline {
    width: 50px;
    height: 3px;
    background: #f6c800;
    margin: 15px auto 40px;
    border-radius: 2px;
}

.sec-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.sec-title span {
    color: #facc15;
}

.subtitle {
    color: #000;
    font-size: 1.3rem;
    margin: auto 10px 0;
}

.highlight {
    color: #facc15;
}

.available {
    color: #16a34a;
    font-weight: 600;
}

.check {
    background-color: #22c55e;
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: top 0.35s ease;
}

.sticky-header.visible {
  top: 0;
}

.sticky-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.sticky-header .logo img {
  height: 60px;
  width: auto;
}

.sticky-header nav ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sticky-header nav ul li {padding:0 5px;    }
.sticky-header nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.sticky-header nav ul li a:hover {
    color: #fddb00;
}
/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */

.header {
    font-family: "Nunito", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    margin: auto;
    z-index: 99;
    padding: 25px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 150px;
}

.logo span {
    color: #444;
    font-weight: 600;
    line-height: 1.1;
    font-size: 14px;
}

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

.nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    line-height: 2;
    font-family: "Noto Sans", sans-serif;
}

.nav a:hover {
    color: #fddb00;
}
.header-container nav i {
    color: #fdda00;
    border-radius: 50%;
    line-height: 2;
    font-size: 18px;
    text-align: center;
    margin-right: 5px;
}
.nav .menu_icon i {
    color: #fff;
    background: transparent;
    font-size: 22px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}
.main_menu {
    background: #facc15;
    position: fixed;
    right: -500px;
    top: 0;
    width: 22%;
    padding: 40px 0;
    height: 100%;
    transition: all 0.3s ease;
    z-index: 999999;
}
.main_menu.menu-open {
    right: 0;
}
.main_menu ul li{list-style: none;}
.main_menu ul li a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #500c0c75;
    text-decoration: none;
    color: #000;
}
.main_menu ul li a:hover,.main_menu .socials a:hover {color: #1a73e8;}
.main_menu ul {
    margin: 0;
    padding: 0;
}
span.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.main_menu .socials a {
    display: inline-block;
    margin: 0 10px;
    color: #000;
}
.main_menu .socials h3 {
    margin-bottom: 15px;
}
.main_menu  .socials {
    text-align: center;
    margin-top: 30px;
}
.mob-fix-nav,.fixedcta,.sticky-icons{display: none;}
/* ============================================================
   3. HERO SECTION
   ============================================================ */

.hero {
    padding: 160px 0 80px 0;
    background-image: url('https://gaba.free.nf/wp-content/uploads/2025/10/dan-gold-kARZuSYMfrA-unsplash-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.overlay {
    background: rgb(0,0,0,0.7);
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
}

.hero-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.hero-content p {
    font-size: 22px;
    color: #fff;
}

.hero-row .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-row .feature {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.buttons {
    display: flex;
    gap: 20px;
}


/* ============================================================
   4. BOOKING CARD & FORM
   ============================================================ */

.booking-card {
    background: #00000052;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #585858cf;
}
.booking-card h2:after {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    left: 0;
    background: #fdda00;
    bottom: 0;
}

.booking-card h2 {
    margin: 0;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.booking-card h2 span {
    color: #fdda00;
}
.form-wrapper {
    padding: 10px 0;
}

.form-wrapper label {
    padding-bottom: 6px;
    display: inline-block;
    color: #fff;
}
.select2-container--below.select2-container--open .select2-selection--single {
    border-radius: 30px 30px 0 0 !important;
}
.select2-container--above.select2-container--open .select2-selection--single {
    border-radius: 0 0 30px 30px !important;
}
.trip-options{display:flex;gap:12px;flex-wrap:wrap}
.trip-label{display:flex !important;align-items:center;gap:10px;cursor:pointer;padding:12px 20px !important;border:1.5px solid #fff;border-radius:30px;font-size:15px;transition:all .15s ease;user-select:none}
.trip-label input[type=radio]{display:none}
.trip-check{width:20px;height:20px;border-radius:50%;border:1.5px solid #ccc;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .15s ease}
.trip-check svg{opacity:0;transition:opacity .15s ease}
.trip-label input[type=radio]:checked ~ .trip-check{background: #000; border-color: #000; color: #000;}
.trip-label input[type=radio]:checked ~ .trip-check svg{opacity:1}
.trip-label:has(input[type=radio]:checked){background:#facc15;border-color:#facc15; color: #000;}
.form-wrapper .select2-selection {
    height: 50px !important;
    border-radius: 12px !important;
    padding: 0 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{right: 10px !important;}
.form-wrapper .select2-selection span {
    height: 100% !important;
    line-height: 3 !important;
    font-family: "Noto Sans", sans-serif;
}

.form-wrapper input {
    height: 50px;
    width: 100%;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid #aaa;
    box-sizing: border-box;
    font-size: 1rem;
    color: #444;
    font-family: "Noto Sans", sans-serif;
}

.submit-row button {
    background-color: #facc15;
    color: #000;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
    width: 100%;
    border: 0;
    cursor: pointer;
}

/* jQuery UI Datepicker / Timepicker */
#ui-datepicker-div .ui-datepicker-header {
    color: #fff;
    background: #2f82ff;
    border-radius: 8px 8px 0 0;
}

.ui-datepicker td span,
.ui-datepicker td a {
    text-align: center !important;
    border: none !important;
}

.ui-timepicker-div .ui-widget-header {
    color: #fff;
    background: #2f82ff;
    border-radius: 8px 8px 0 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    padding: .4rem 1rem !important;
    font-size: 14px;
    border: none;
}

#ui-datepicker-div .ui-widget-content .ui-priority-primary {
    background: #2f82ff;
    color: #fff;
}

.ui-widget select {
    border: none !important;
    padding: .3rem .6rem;
    background: #eee !important;
}


/* ============================================================
   5. WHY CHOOSE SECTION
   ============================================================ */

.why-choose {
    text-align: center;
    padding: 60px 0;
}

.why-choose .divider {
    width: 80px;
    height: 3px;
    background-color: #facc15;
    margin: 20px auto 40px;
    border-radius: 2px;
}

.why-choose .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.why-choose .card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
}

.why-choose .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.why-choose .icon {
    background-color: #facc15;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.why-choose .icon i {
    font-size: 36px;
}

.why-choose .card h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.why-choose .card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.why-choose .card a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.why-choose .card a:hover {
    text-decoration: underline;
}


/* ============================================================
   6. DRIVERS / FEATURES SECTION
   ============================================================ */

.drivers-wrapper {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    width: 100%;
}

.drivers-content {
    flex: 1;
    padding: 50px 0 50px 50px;
}

.drivers-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.drivers-content p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.drivers-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

.drivers-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 50px 50px 50px 0;
}

.drivers-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.image-bg {
    position: absolute;
    top: 25px;
    right: 20px;
    width: 100%;
    max-width: 550px;
    height: 95%;
    background-color: #fef3c7;
    border-radius: 15px;
    transform: rotate(3deg);
    z-index: 1;
}


/* ============================================================
   7. FLEET SECTION
   ============================================================ */

.fleet-section {
    text-align: center;
    padding: 60px 0;
}

.fleet-container h2 {
    font-size: 2rem;
    font-weight: 700;
}

.fleet-container h2 span {
    color: #facc15;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.fleet-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: left;
    position: relative;
    transition: all 0.2s ease;
    border: 2px solid #eee;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #facc15;
}

.fleet-card .badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #facc15;
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

.fleet-img {
    position: relative;
    margin-bottom: 15px;
    height: 155px;
}

.img-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: #fef3c7;
    border-radius: 12px;
    transform: rotate(2deg);
    z-index: 1;
}

.fleet-img img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    height: 100%;
    object-fit: cover;
}

.fleet-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 8px 0;
    text-align: center;
}

.fleet-card p {
    color: #555;
    font-size: 1rem;
    margin: 10px 0 15px 0;
    text-align: center;
}

.fleet-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.fleet-card ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 15px 0;
    text-align: center;
}

.price span {
    font-size: 0.9rem;
    color: #555;
}

.fleet-card a {
    width: 100%;
    padding: 15px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    text-align: center;
}

.fleet-card button:hover {
    background: #1d4ed8;
}


/* ============================================================
   8. ROUTES SECTION
   ============================================================ */

.routes-section {
    text-align: center;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
    background: #fff;
}

.routes-header p {
    color: #555;
    margin-top: 8px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.route-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    width: calc(100% - 40px);
    position: relative;
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.route-card.popular {
    border: 2px solid #f6c800;
}

.route-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f6c800;
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.route-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.route-card .from,
.route-card .to {
    text-align: left;
}

.route-card .arrow {
    font-size: 1.5rem;
    color: #f6c800;
}

.route-card .icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.yellow i {
    background: #f6c800;
    color: black;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    line-height: 2.2;
    font-size: 32px;
}

.route-info {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    padding-top: 15px;
}

.route-card-inner h3 {
    margin: 14px 0 0 0;
}

.route-card-inner p {
    margin: 0;
}

.route-info p {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    align-items: center;
}

.route-info p.price {
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid #ccc;
    font-size: 18px;
    color: #000;
}

.route-info p.price strong {
    font-size: 20px;
}

.route-info span {
    font-weight: 600;
}

.price strong {
    color: #f6c800;
    font-size: 1.1rem;
}

.book-btn {
    padding: 15px;
    background: #22c55e;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
    width: 100%;
    display: block;
    text-decoration: none;
    box-sizing: border-box;
}

.book-btn:hover {
    background: #16a34a;
}


/* ============================================================
   9. TESTIMONIALS SECTION
   ============================================================ */

.testimonials {
    text-align: center;
    padding: 60px 40px;
    background-color: #f9fafb;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    border: 1px solid #eee;
}

.quote {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    background: #f5c400;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
}

.stars {
    color: #f5c400;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #0056ff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 50%;
}

.user-info h4 {
    margin: 0;
    font-size: 1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: #777;
}


/* ============================================================
   10. CUSTOMER STATS SECTION
   ============================================================ */

.customer-stats {
    padding: 60px 0;
    background: #f9fafc;
}

.customer-stats .stats-section {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #eee;
}

.customer-stats .stats-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.customer-stats .stats-section p {
    color: #555;
    margin-bottom: 40px;
}

.customer-stats .stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.customer-stats .stat-box {
    flex: 1 1 200px;
    text-align: center;
}

.customer-stats .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.customer-stats .yellow { background: #f5c400; }
.customer-stats .blue   { background: #2563eb; }
.customer-stats .green  { background: #22c55e; }

.customer-stats .stat-box h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.customer-stats .stat-box p {
    color: #222;
    margin-top: 5px;
    font-size: 0.95rem;
}


/* ============================================================
   11. HOW IT WORKS SECTION
   ============================================================ */

.how-it-works {
    background: #f9fafb;
    padding: 60px 0;
    text-align: center;
}

.how-it-works .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.how-it-works .step {
    flex: 1 1 220px;
    position: relative;
    text-align: center;
}

.how-it-works .step-number {
    background: #f5c400;
    color: #000;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 35px;
    position: relative;
}

.how-it-works .step-number::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 315px;
    height: 2px;
    background: #f5c400;
    transform: translateY(-50%);
}

.how-it-works .step:last-child .step-number::after {
    display: none;
}

.how-it-works .card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.how-it-works .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.how-it-works .blue  { background: #2563eb; }
.how-it-works .green { background: #22c55e; }

.how-it-works .card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.how-it-works .card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.how-it-works .cta-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    margin: 0 auto;
}

.how-it-works .cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.how-it-works .cta-box p {
    color: #444;
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.how-it-works .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.how-it-works .btn i {
    margin-right: 5px;
    font-size: 18px;
}

.how-it-works .btn:hover {
    opacity: 0.9;
}


/* ============================================================
   12. STATES SECTION
   ============================================================ */

.states-section {
    text-align: center;
    color: #111;
    padding: 50px 0;
}

.states-section .states-container {
    max-width: 1100px;
    margin: 0 auto;
}

.states-section .states-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.states-section .states-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
}

.states-section .states-grid {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.states-section .state-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.states-section .state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.states-section .state-icon {
    background: #1e63ff;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    margin: 0 auto 15px;
}

.states-section .state-icon.more {
    background: #ffd600;
    color: #111;
}

.states-section .state-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.states-section .state-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.states-section .tag {
    display: inline-block;
    margin-top: 10px;
    background: #ffd600;
    color: #111;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 6px;
}

.states-cta {
    background: #000;
    color: #fff;
    border-radius: 16px;
    margin: 60px auto 0;
    padding: 50px 20px;
    text-align: center;
}

.states-cta h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.states-cta p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.states-cta p a {
    color: #fdda00;
}
.states-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.states-cta .btn.outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.states-cta .btn.outline:hover {
    background: #fff;
    color: #000;
}

.cta-buttons i {
    margin-right: 5px;
}


/* ============================================================
   13. TRAVEL BLOG SECTION
   ============================================================ */

.travel-blog {
    padding: 60px 0;
    margin: auto;
    color: #111;
}

.travel-blog .travel-header {
    text-align: center;
    margin-bottom: 50px;
}

.travel-blog .divider {
    width: 70px;
    height: 3px;
    background: #f6c600;
    margin: 15px auto 0;
    border-radius: 2px;
}

.travel-blog .featured-post {
    display: flex;
    flex-wrap: wrap;
    background: #dbeafe;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
    padding: 70px;
}

.travel-blog .featured-text {
    flex: 1 1 450px;
    position: relative;
    padding-right: 40px;
}

.travel-blog .featured-img {
    flex: 1 1 400px;
    position: relative;
}

.travel-blog .featured-img img {
    width: 100%;
    border-radius: 15px;
    position: relative;
}

.blog-img-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: #2563eb38;
    border-radius: 12px;
    transform: rotate(8deg);
}

.travel-blog .blog-grid .badge {
    position: absolute;
    left: 15px;
    top: 15px;
}

.travel-blog .badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    color: #111;
}

.travel-blog .badge.yellow { background: #ffd600; }
.travel-blog .badge.blue   { background: #1e63ff; color: #fff; }
.travel-blog .badge.green  { background: #2ecc71; color: #fff; }
.travel-blog .badge.orange { background: #ff9f43; color: #fff; }
.travel-blog .badge.purple { background: #a855f7; color: #fff; }
.travel-blog .badge.teal   { background: #14b8a6; color: #fff; }

.travel-blog .featured-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
}

.travel-blog .featured-text p {
    color: #444;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.travel-blog .meta {
    font-size: 1.2rem;
    color: #444;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.travel-blog .meta i {
    color: #2563eb;
}

.travel-blog .read-more {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
    width: max-content;
    margin-bottom: 15px;
}

.travel-blog .read-more:hover,
.how-it-works .btn.primary:hover,
.cta-buttons .btn.primary:hover,
.support-buttons .btn.primary:hover,
.about-contact .btn:hover,
.explore-btn:hover {
    background: #1d4ed8;
}

.travel-blog .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
    text-decoration: none;
    line-height: 1.2;
    align-items: center;
    background: #2563eb;
    color: #fff;
    display: inline-block;
}

.travel-blog .btn:hover {
    background: #0d4cd8;
}

.travel-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.travel-blog .blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.travel-blog .blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.travel-blog .blog-card .content {
    padding: 10px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.travel-blog .blog-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0 10px 0;
}

.travel-blog .blog-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.travel-blog .blog-card .meta {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.single table {
    border-collapse: collapse;
    width: 100%;
    background: #fffdf6;
}

.single table th,
.single table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
}

.single table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.single table tr:hover {
    background-color: #fafafa;
}

/* ============================================================
   14. FAQ SECTION
   ============================================================ */

.faq-section {
    padding: 60px 20px;
    color: #111;
}

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

.faq-section .faq-header span {
    color: #f6c600;
}

.faq-section .divider {
    width: 60px;
    height: 3px;
    background: #f6c600;
    margin: 18px auto 0;
    border-radius: 3px;
}

.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-section .faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-section .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 28px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #eee;
    font-family: inherit;
}

.faq-section .faq-question:hover {
    color: #f6c600;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-section .faq-answer p {
    margin: 15px 0 20px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-section .faq-item.active .faq-question {
    color: #f6c600;
}


/* ============================================================
   15. CAB RESULTS / PAGE BANNER
   ============================================================ */

.page-banner {
    padding: 120px 0 60px 0;
    background-image: url(https://gaba.free.nf/wp-content/uploads/2025/10/dan-gold-kARZuSYMfrA-unsplash-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.page-banner h1 {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.page-banner .breadcrumbs span a {
    color: #fdda00;
    text-decoration: none;
}

.page-banner .breadcrumbs span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.subtitle-banner {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.cab-results {
    text-align: center;
}

.cab-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.cab-card img {
    width: 150px;
}

.seat {
    font-size: 1.2rem;
}

.cab-card i {
    display: block;
    color: #2f82ff;
}

.cab-card h4 {
    text-transform: uppercase;
}

.fare {
    color: #facc15;
    font-weight: 700;
    font-size: 1.5rem;
}

.cab-results form button {
    background-color: #2f82ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

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

.thank-you h4 {
    background: #77b255;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
}

.thank-you a {
    background-color: #2f82ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.cab-result-error {
    text-align: center;
    background: #ff99004d;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2rem;
}


/* ============================================================
   16. SUPPORT SECTION
   ============================================================ */

.support-section {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.support-container {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.support-left,
.support-right {
    flex: 1;
    padding: 2.5rem;
}

.support-left h2 {
    font-size: 2rem;
    margin: 1rem 0 1rem 0;
}

.support-left p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.support-channels {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-channels li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.support-channels a {
    color: #2563eb;
    text-decoration: none;
}

.support-channels .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 1rem;
    text-align: center;
    font-size: 18px;
    line-height: 2.2;
}

.icon.call,
.icon.location { background: #FFD700; }
.icon.whatsapp { background: #25D366; color: #fff; }
.icon.email    { background: #1D4ED8; color: #fff; }

.support-right {
    background: #f7f8fc;
    text-align: center;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #FFD700 ;
    font-size: 65px;
    margin-bottom: 1.2rem;
}

.support-right h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

.support-right p {
    color: #555;
    max-width: 400px;
    margin: 0 0 1.5rem;
    font-size: 1.2rem;
}

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


/* ============================================================
   17. FOOTER
   ============================================================ */

.footer {
    background: #000;
    color: #ddd;
    padding: 4% 2rem 1rem;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #facc15;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-about p {
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.footer-about .socials a {
    background: #1d4ed8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 18px;
}

.footer-links h4,
.footer-contact h4,
.service-coverage h4 {
    color: #facc15;
    margin: 1rem 0 1.5rem 0;
    font-size: 1.4rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}
.footer-contact li span {
    position: absolute;
    left: 0;
}
.footer-contact li {
    position: relative;
    padding-left: 40px;
}
.footer-contact .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    line-height: 1.9;
}

footer .icon.call     { background: #facc15; color: #000; }
footer .icon.whatsapp { background: #25D366; }
footer .icon.email    { background: #1D4ED8; }
footer .icon.location { background: #2563eb; }
.fixedcta {
    background: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9994;
}
.ctawrap {
    display: flex;
    align-items: center;
}
.ctawrap a:first-child {
    background: green;
    border-right: none;
}
.ctawrap a:last-child {
    border: none;
}
.ctawrap a {
    color: #fff;
    /* margin: 0 20px; */
    padding: 15px;
    width: 33.3%;
    text-align: center;
    text-decoration: none;
    border-right: 1px solid;
    font-size: 15px;
}
.service-coverage {
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 2rem 0;
}

.service-coverage p {
    margin: 1rem 0 1.5rem 0;
}

.service-coverage h4 {
    margin-top: 0;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.city-list span {
    background: #1a1a1a;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    color: #ccc;
    cursor: default;
}

.emergency-box {
    background: #facc15;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    color: #000;
    max-width: 800px;
}

.emergency-box h4 {
    font-size: 1.5rem;
    margin: 0;
}

.emergency-box p {
    margin: 1rem 0 1.5rem;
}

.emergency-box .buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

footer .btn i {
    margin-right: 5px;
}

footer .btn.white {
    background: #fff;
    color: #000;
    transition: background 0.2s ease;
}

footer .btn.white:hover {
    background: #2563eb;
    color: #fff;
}

footer .btn.outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

footer .btn:hover {
    transform: scale(1.03);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 1.5rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #aaa;
}

.footer-bottom .bottom-links a {
    margin-left: 1.2rem;
}


/* ============================================================
   18. POPUPS & MODALS
   ============================================================ */

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

.booking-popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

.booking-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
}

.popup-content h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.popup-content a.close-popup,.popup-content a.call-btn {
    background-color: #2f82ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
    display: inline-block;
    margin: 0 5px;
}
.popup-content a.close-popup:hover,.popup-content a.call-btn:hover {
    background: #1a66e2;
}

/* Quick Booking Form */
.quick-booking-form {
    max-width: 500px;
    margin: auto;
}

.quick-booking-form .row {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.quick-booking-form .col {
    flex: 1;
}

.quick-booking-form label {
    margin-bottom: 5px;
    display: inline-block;
}

.quick-booking-form p {
    margin: 0;
}

.quick-booking-form input,
.quick-booking-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    height: 45px;
    font-size: 1rem;
}

.quick-booking-form .submit-wrap {
    margin-top: 15px;
}

.quick-booking-form input[type="submit"] {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}

/* Popup Booking Form */
#popupBookingForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

#popupBookingForm .form-group {
    display: flex;
    flex-direction: column;
}

#popupBookingForm label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
}

#popupBookingForm input,
#popupBookingForm select {
    padding: 0 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    height: 48px;
}

#popupBookingForm input:focus,
#popupBookingForm select:focus {
    border-color: #1d4ed8;
    outline: none;
}

#popupBookingForm button {
    background-color: #2f82ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 18px;
    width: 100%;
    border: 0;
    cursor: pointer;
}

#popupBookingFormWrapper .select2-selection {
    height: 50px;
}

#popupBookingFormWrapper .select2-selection span {
    line-height: 3;
    height: 100%;
}


/* ============================================================
   19. BUTTONS (SHARED)
   ============================================================ */

.btn-primary {
    background-color: #facc15;
    color: #000;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
}
.btn-primary:hover .b{fill:#fff;}
.btn-primary:hover,
#popupBookingForm button:hover {
    background-color: #1d4ed8;
    color: #fff;
}

.btn-outline {
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
    border: 1px solid #fff;
}
.btn-outline:hover,
footer .btn.outline:hover {
    background-color: #000;
    color: #fff;
    border-color: #000
}

.btn-book {
    background-color: #2f82ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.btn-book:hover {
    background-color: #1a66e2;
}

/* Shared button base — used across multiple sections */
.how-it-works .btn,
.cta-buttons .btn,
.support-buttons .btn,
.footer .btn,
.about-contact .btn,
.explore-btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
    text-decoration: none;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.how-it-works .btn.primary,
.cta-buttons .btn.primary,
.support-buttons .btn.primary,
.about-contact .btn {
    background: #2563eb;
    color: #fff;
}

.how-it-works .btn.outline,
.support-buttons .btn.secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.how-it-works .btn.outline:hover,
.support-buttons .btn.secondary:hover {
    background: #2563eb;
    color: #fff;
}

.explore-btn {
    background: #facc15;
    color: #000;
    display: inline-block;
}

@media (min-width: 1025px) {
    .how-it-works .card {
    min-height: 240px;
}
}
/* ============================================================
   20. RESPONSIVE — max-width: 1180px
   ============================================================ */

@media (max-width: 1180px) {
.drivers-content {
    padding: 50px;
}
.fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-section{padding-top: 0;}
    .footer-about p,.footer-links li, .footer-contact li{font-size: 1rem;}
}



/* ============================================================
   21. RESPONSIVE — max-width: 1024px
   ============================================================ */

@media (max-width: 1024px) {
    .drivers-wrapper {
    display: block;
    }
    .drivers-image {
    justify-content: flex-start;
    margin: 0 50px 40px;
}
.image-bg {
    right: auto;
    left: 20px;
}
    .fleet-img {
    height: 200px;
}
    .travel-blog .blog-card img {
    height: 175px;
    }
    .how-it-works .step {
        flex: 1 1 calc(50% - 20px);
    }

    .how-it-works .step-number::after {
        display: none;
    }

    .hero-row .feature .icon {
        display: none;
    }

    .hero-row .feature {
        padding: 15px 10px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .buttons a {
        font-size: 16px;
    }

    .btn-primary {
        padding: 15px 20px;
        font-size: 15px;
    }

    .drivers-content {
        padding-right: 50px;
    }

    .travel-blog .featured-post {
        padding: 40px;
    }

    .travel-blog .featured-text {
        padding-bottom: 20px;
    }

    .blog-img-bg {
        height: 75%;
    }

    .footer-links h4,
    .footer-contact h4,
    .service-coverage h4 {
        font-size: 1.2rem;
    }

    .footer-links li,
    .footer-contact li,
    .footer-about p {
        font-size: 1rem;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .fleet-section,
    .how-it-works,
    .states-section,
    .customer-stats,
    .travel-blog {
        padding-bottom: 0 !important;
    }
}


/* ============================================================
   22. RESPONSIVE — max-width: 1000px
   ============================================================ */

@media (max-width: 1000px) {
    .hero-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .drivers-content {
        flex: auto;
        padding: 20px;
    }

    .image-bg {
        right: auto;
    }

    .drivers-image {
        flex: auto;
        padding: 20px;
    }

    .drivers-wrapper {
        padding: 0;
    }
    .drivers-image {
    flex: auto;
    margin: 20px 0 40px 20px;
}
}


/* ============================================================
   23. RESPONSIVE — max-width: 900px
   ============================================================ */

@media (max-width: 900px) {
    .footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}


/* ============================================================
   24. RESPONSIVE — max-width: 820px
   ============================================================ */

@media (max-width: 820px) {
    .why-choose .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-row {
        grid-template-columns: 1fr;
    }

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

    .buttons {
        justify-content: center;
    }

    .drivers-content {
        flex: auto;
    }

    .support-container {
        flex-wrap: wrap;
    }

    .support-channels {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }

    .support-left,
    .support-right {
        flex: auto;
        text-align: center;
    }
    .post-container {
        display: block !important;
    }
    .post-content,.post-sidebar {
    width: 100% !important;
    }
}


/* ============================================================
   25. RESPONSIVE — max-width: 768px
   ============================================================ */

@media (max-width: 768px) {
    .fleet-img {
    height: 155px;
}
        .travel-blog .blog-card img {
    height: 200px;
    }
    .states-section .states-grid,
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-blog .featured-text {
        padding: 0 0 50px;
    }

    .travel-blog .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-section {
        padding: 20px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .cab-card {
        padding: 15px 20px;
    }
}


/* ============================================================
   26. RESPONSIVE — max-width: 767px  (mobile menu)
   ============================================================ */

@media (max-width: 767px) {
    .sticky-header.visible {
    top: 30px;
}
.sticky-header nav ul li:last-child {
    display: block;
}

.sticky-header nav ul li {
    display: none;
}
    .menu-toggle {
        display: block;
        order: 3;
    }
.nav ul {
    display: none;
}
.main_menu {
    width: 70%;
}
body { margin: 34px 0 52px 0;}
.mob-fix-nav,.fixedcta,.sticky-icons{display: block;}
.header {
    padding: 10px 0;
}
.logo img {
    width: 100px;
}
.sticky-icons {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 99;
}
.sticky-icons a {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 22px;
    text-align: center;
    line-height: 2;
    border-radius: 50%;
    margin: 10px 0;
}
.sticky-icons a:last-child {
    background: #008000;
    color: #fff;
}
.sticky-icons a:first-child {
    background: yellow;
}
.mob-fix-nav {
    position: fixed;
    background: #fff;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99;
}
.mob-fix-nav ul {
    margin: 0;
    padding: 0;
}
.mob-fix-nav ul li {
    display: inline-block;
    width: calc(33.3% - 5px);
}
.mob-fix-nav ul li a {
    padding: 8px 5px;
    color: #000;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}
.mob-fix-nav .whatsapp {
    background: #25D366;
    color: #fff !important;
    font-weight: bold;
}
.mob-fix-nav    .callme {
    background: #facc15;
}
 /*   .nav {
        order: 4;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        max-height: 400px;
        opacity: 1;
    }

    .nav ul.menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        list-style: none;
        margin: 0;
    }

    .nav ul.menu li a {
        text-decoration: none;
        color: #222;
        display: block;
        padding: 15px;
        transition: background 0.3s ease;
        border-bottom: 1px solid #ccc;
    }

    .nav ul.menu li a:hover {
        background: #f3f3f3;
    }*/

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cab-card {
        flex-wrap: wrap;
    }

    .cab-card img {
        width: 100%;
    }

    .cab-book-form {
        width: 100%;
        text-align: center;
    }

    .popup-content {
        margin: 0 10px;
    }
    .hero {
    padding: 100px 0 80px 0;
}
    .hero-row .features {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-row .feature {
        width: calc(50% - 32px);
    }
}


/* ============================================================
   27. RESPONSIVE — max-width: 600px
   ============================================================ */

@media (max-width: 600px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .footer .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .support-channels,
    .support-buttons {
        justify-content: center;
        text-align: left;
        flex-wrap: wrap;
    }

    .sec-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .travel-blog .blog-grid {
        grid-template-columns: 1fr;
    }

    .travel-blog,
    .customer-stats,
    .states-section,
    .testimonials {
        padding: 20px 0;
    }

    .how-it-works .cta-buttons {
        flex-wrap: wrap;
    }

    .how-it-works .step {
        flex: 1 1 calc(100% - 20px);
    }

    .how-it-works,
    .routes-section {
        padding: 40px 0;
    }

    .routes-grid,
    .why-choose .card-grid,
    .fleet-grid {
        grid-template-columns: 1fr !important;
    }

    .drivers-content {
        padding: 20px;
    }
    .drivers-image {
     padding: 0; 
     margin: 20px;
    }
    .image-bg {
        display: none;
    }

    .buttons {
        flex-wrap: wrap;
    }

    .why-choose {
        padding: 20px 0 40px 0;
    }

    .booking-popup-content {
        width: 80%;
    }

    .support-container .support-channels {
        justify-content: center;
    }
    .form-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    }
}
.btn-call {
    background-color: #2f82ff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 50px;
}
.routes-pagination a {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 5px;
}

.routes-pagination a:hover {
    background: #1a66e2;
}
.routes-pagination a {
    background: #2f82ff;
    color: #fff;
    text-decoration: none;
}

.routes-pagination span {
    font-weight: bold;
    margin: 5px;
    padding: 10px 15px;
    border: 1px solid #444;
    border-radius: 5px;
}
.routes-pagination {
    margin: 30px 0 10px 0;
}