:root {
    --primary-dark: #1b2334;
    --primary-darker: #11141c;
    --primary-gold: #e6a119;
    --primary-gold-hover: #d1941c;
    --text-light: #f8f9fa;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
}


body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background:#020b1e;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.serif-font {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.nav-section {
    background-color: var(--primary-dark);
    padding: 0.6rem 0;
}

.nav-section .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-section .navbar-brand img {
    width: 65px;
}

.nav-section .navbar-nav .nav-link.active {
    color: var(--primary-gold);
}

.nav-section .nav-link {
    /* color: var(--text-light); */
    font-size: 0.9rem;
    margin: 0 10px;
    font-weight: 500;
}

.nav-section .nav-link:hover {
    color: var(--primary-gold);
}

.btn-gold {
    background-color: var(--primary-gold);
    /* color: #fff; */
    border: none;
    padding: 0.5rem 1.3rem;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    color: #000;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    color: var(--text-light);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.badge-gold {
    background-color: rgba(212, 154, 54, 0.2);
    color: var(--primary-gold);
    /* border: 1px solid var(--primary-gold); */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 1.5rem 0;
}

.text-gold {
    color: var(--primary-gold);
}

.hero-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 465px;
    margin-bottom: 2rem;
}

.hero-section .book-btn {
    font-size: 16px;
    padding: 0.75rem 2.1rem;
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1.7rem;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.hero-stats {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: #ffffff1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.stat-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #fff6;
}

/* Section Headers */
.section-padding {
    padding: 90px 0;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-desc {
    color: var(--text-muted);
    max-width: 525px;
    margin: 0 auto 3rem auto;
}

/* Fleet Section */
.bg-light-custom {
    background-color: #080c16;
    color: #fff;
}

.fleet-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #20283c;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-img-placeholder {
    height: 200px;
    /* background: linear-gradient(to bottom, #e2e8f0, #cbd5e1); */
    background-color: #0c1322;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.price-badge {
    background-color: var(--primary-gold);
    color: #fff;
    padding: 0.2rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.fleet-card-body {
    padding: 1.5rem;
}

.fleet-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fleet-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.fleet-capacity {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0;
}

/* How It Works Section */
.bg-dark-custom {
    background-color: #0f1729;
    color: var(--text-light);
}

.steps-container {
    position: relative;
    margin-top: 3rem;
}

.steps-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: #e6a21926;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.step-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-gold);
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonial-card {
    background: #0c1322;
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #e2e8f0;
    font-size: 2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.8rem;
    color: #718096;
}

/* Footer */
footer {
    background-color: #0f1729;
    color: var(--text-muted);
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
}

footer h5 {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li i {
    color: var(--primary-gold);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-gold);
}

.footer-logo {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 100px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom p {
    color: #ffffff4d;
}


/* book ride css  */

/* Header Styling */
.label-new-booking {
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    /* color: #0f1729; */
}

.sub-title {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Select Vehicle Section */
.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.vehicle-card-selected {
    border: 1.5px solid var(--primary-gold);
    background-color: #e6a2190d;
    padding: 16px;
    border-radius: 12px;
    position: relative;
    width: fit-content;
    min-width: 320px;
    margin-bottom: 40px;
}

.checkmark-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--primary-gold);
    /* color: #000; */
    font-size: 1.2rem;
}

.vehicle-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.vehicle-name {
    font-weight: 600;
    font-size: 0.88rem;
    display: block;
    /* color: #0f1729; */
}

.vehicle-desc {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
}

.vehicle-price {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    display: block;
}

/* Form Card Styling */
.form-card {
    background: #0c1322;
    color: #828997;
    border: 1px solid #20283c;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.form-card input {
    background: #0c1322;
}

.form-control::placeholder {
    color: #828997;
}

.form-control {
    background: #0c1322;
    border: 1px solid #20283c !important;
    color: #ffffff;
}

.form-card input::placeholder {
    color: #828997;
}

.form-card h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-header-icon {
    color: var(--primary-gold);
    margin-right: 8px;
}

/* Input Styling */
.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #6b7280;
}

.input-group {
    border: 1px solid #20283c;
    border-radius: 8px;
    overflow: hidden;
}

.input-group-text {
    background-color: transparent;
    border: none;
    color: var(--primary-gold);
    padding-left: 15px;
}

.form-control {
    border: none;
    padding: 10px;
    font-size: 0.9rem;
}

.form-control:focus {
    box-shadow: none;
    background: #0c1322;
    color: #fff;
}

/* Button Styling - Added to match your HTML */
.btn-confirm {
    background-color: var(--primary-gold);
    /* color: white; */
    border: none;
    border-radius: 30px;
    padding: 15px 0;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-confirm:hover {
    background-color: var(--primary-gold-hover);
    /* color: white; */
}

.book-ride-bg {
    background-color: #080c16 !important;
}



/* ── Header ── */
.header-row {
    margin-bottom: 28px;
}

.kicker {
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    /* color: #0d1b2a; */
    margin: 0;
}

.btn-newride {
    background-color: var(--primary-gold);
    color: #000;
    font-weight: 700;
    font-size: 0.87rem;
    border: none;
    border-radius: 50px;
    padding: 8px 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s;
    margin-top: 6px;
}

.btn-newride:hover {
    background-color: var(--primary-gold-hover);
    color: #fff;
}

.btn-newride .plus {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

/* ── Bootstrap Nav Tabs Override ── */
.nav-tabs {
    border-bottom: none !important;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    background: #191f2e;
    border: 1px solid #191f2e !important;
    border-radius: 50px !important;
    padding: 6px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.5;
}

.nav-tabs .nav-link:hover:not(.active) {
    background-color: #0d1b2a;
    color: #333;
    border-color: #0d1b2a !important;
}

.nav-tabs .nav-link.active {
    background-color: #0d1b2a !important;
    color: #fff !important;
    border-color: #0d1b2a !important;
    font-weight: 600;
}

/* ── Ride Card ── */
.ride-card {
    background: #0c1322;
    color: #828997;
    border: 1px solid #20283c;
    border-radius: 16px;
    padding: 22px 22px 16px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    max-width: 440px;
}

.ride-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ride-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.car-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* ── Badges ── */
.badge-pending {
    background-color: #fff8e6;
    color: var(--primary-gold);
    border: 1px solid #f0d080;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-active {
    background-color: #e6f9f0;
    color: #16a34a;
    border: 1px solid #86efac;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-completed {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #93c5fd;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-cancelled {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ── Stops ── */
.stops {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2px;
}

.stop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2.5px solid var(--primary-gold);
    background: transparent;
    flex-shrink: 0;
    margin-top: 4px;
}

.dot.filled {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.stop small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    margin-bottom: 1px;
}

.place {
    font-size: 0.87rem;
    font-weight: 500;
    color: #0f1729;
}

/* ── Divider ── */
.divider {
    border-top: 1px solid #20283c;
    margin: 14px 0;
}

/* ── Ride Bottom ── */
.ride-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #888;
}

.meta-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #888;
}

/* ── Prices ── */
.price {
    color: var(--primary-gold);
    font-size: 0.88rem;
    font-weight: 800;
}

.price-completed {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 800;
}

.price-cancelled {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: line-through;
}

/* ── Tab Content ── */
.tab-content>.tab-pane {
    padding-top: 4px;
}

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: #aaa;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    color: #d1d5db;
}

.empty-state p {
    font-size: 0.95rem;
    margin: 0;
}


/* modal popup css  */

/* Custom Colors */
:root {
    --primary-orange: #ff9f00;
    --light-orange: #fff4e5;
    --text-gray: #6c757d;
    --bg-card: #ffffff;
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

/* Fare Breakdown Styles */
.fare-card {
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.badge-estimated {
    background-color: #e7f7ed;
    color: #28a745;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: #fff;
}

.surge-row {
    background-color: var(--light-orange);
    border-radius: 10px;
    padding: 12px;
    margin: 5px 0;
    font-weight: 600;
    color: #b36b00;
}

.total-estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.total-pill {
    background-color: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
}

.promo-banner {
    background-color: #f8fff9;
    border: 1px solid #d4edda;
    border-radius: 12px;
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #155724;
    display: flex;
    justify-content: space-between;
}

.btn-confirm {
    background-color: var(--primary-orange);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
}

/* Order Summary Styles */
.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.badge-mini {
    background-color: var(--primary-orange);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Route Timeline */
.route-container {
    padding: 0 20px;
    position: relative;
}

.route-line {
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #e0e0e0;
}

.route-dot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.dot-orange {
    width: 12px;
    height: 12px;
    background: #ffcc00;
    border-radius: 50%;
    margin-right: 15px;
}

.dot-red {
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border-radius: 50%;
    margin-right: 15px;
}

.route-info {
    font-size: 14px;
    color: #fff;
}

.trip-stats {
    background: transparent;
    border: 1px solid #2b3347;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    padding: 12px;
    margin: 15px 20px;
    font-size: 13px;
    color: var(--text-gray);
}

.stat-price {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: bold;
}

/* Payment Methods */
.payment-item {
    border: 1px solid #2b3347;
    border-radius: 15px;
    padding: 12px;
    margin: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.payment-item.active {
    border: 2px solid var(--primary-orange);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: #414141;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.payment-details {
    flex-grow: 1;
}

.payment-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.payment-details p {
    margin: 0;
    font-size: 12px;
    color: var(--text-gray);
}

.payment-badge {
    background: #fff3cd;
    color: #856404;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Promo Input */
.promo-box {
    margin: 10px 20px;
    display: flex;
    background: #1e263a;
    border: 1px solid #2b3347;
    border-radius: 12px;
    padding: 5px;
}

.promo-input {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    flex-grow: 1;
    background: transparent;
}

.btn-apply {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 13px;
}

/* Footer */
.summary-footer {
    padding: 20px;
    background: #1e263a;
    border-top: 1px solid #20283c;
}

.total-payable-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
}

.payment-method-small {
    font-size: 12px;
    color: var(--text-gray);
    text-align: right;
}

.btn-pay-securely {
    background: var(--primary-orange);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
}

.modal-content {
    background: #20283cf2;
}

.is-invalid {
    border-color: red !important;
}

.flatpickr-input:required {
    background: #0c1322 !important;
    color: #ffffff !important;
}

/* Autofill background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #0c1322 inset !important;
    -webkit-text-fill-color: #fff !important;
    background: #0c1322 !important;
    color: #828997;
    border: 1px solid #20283c;
    transition: background-color 5000s ease-in-out 0s;
}


input[type="time"] {
    cursor: pointer;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
}


.btn-close-custom {
    background: #fffffff0 var(--bs-btn-close-bg) center / 1em auto no-repeat !important;
}



/* my rides page css */
.journey-label {
    color: #d8a62a;
    font-size: 12px;
    letter-spacing: 3px;
}

.ride-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.btn-gold {
    background: #d8a62a;
    border: none;
    color: #000;
    border-radius: 50px;
    padding: 12px 28px;
}

.btn-gold:hover {
    background: #c4931c;
}

.ride-tabs {
    background: #111827;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
}

.ride-tabs .nav-link {
    color: #9ca3af;
    border-radius: 50px;
}

.ride-tabs .nav-link.active {
    background: #020b1e;
    color: #fff;
}

.ride-card {
    background: #06142f;
    border: 1px solid #1e335c;
    border-radius: 20px;
    padding: 25px;
}

.vehicle-title {
    color: #fff;
    margin: 0;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
}

.status-pending {
    background: #fff3cd;
    color: #9a6700;
}

.status-confirmed {
    background: #cff4fc;
    color: #055160;
}

.status-completed {
    background: #d1e7dd;
    color: #0f5132;
}

.status-cancelled {
    background: #f8d7da;
    color: #842029;
}

.route-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d8a62a;
    margin-top: 8px;
}

.route-dot.filled {
    background: #d8a62a;
}

.route-address {
    color: #fff;
    font-size: 16px;
}

.route-item small {
    color: #9ca3af;
}

.ride-meta {
    color: #9ca3af;
}

.ride-price {
    color: #d8a62a;
    font-size: 24px;
    font-weight: 700;
}


/* this for cancel button on booking details page */
.modal-content {
    border-radius: 20px;
}

.modal-header {
    padding: 20px 25px;
}

.modal-body {
    padding: 10px 30px 30px;
}

.modal-footer {
    padding: 20px 25px;
}

.btn-danger {
    border-radius: 10px;
}

.btn-light {
    border-radius: 10px;
}

/* 5-june-2026 */

/* .ride-height-fix{
    height: 100vh;
} */

.ride-height-fix {
    min-height: 545px;
    height: 100%;
}

 /**
 * =====================================================
 * ABOUT PAGE
 * =====================================================
 */

.about-page {

    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

    color: #ffffff;

    min-height: 100vh;
}

/**
 * =====================================================
 * HERO SECTION
 * =====================================================
 */

.about-hero-section {
    position: relative;
    min-height: 650px;
    background-image: url('../userBooking_assets/image/aboutUs/a1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, .75),
        rgba(0, 0, 0, .35)
    );
}

.about-hero-section .container {

    position: relative;

    z-index: 2;
}

/**
 * =====================================================
 * BADGE
 * =====================================================
 */

.badge-premium {

    display: inline-block;

    background: rgba(
        234,
        179,
        8,
        .15
    );

    color: #eab308;

    padding: 10px 20px;

    border-radius: 50px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

/**
 * =====================================================
 * HERO TITLE
 * =====================================================
 */

.hero-title {

    color: #ffffff;

    font-size: clamp(
        2.5rem,
        5vw,
        4.5rem
    );

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 20px;
}

.gold-text {

    color: #eab308;
}

/**
 * =====================================================
 * HERO DESCRIPTION
 * =====================================================
 */

.hero-description {

    color: #e2e8f0;

    font-size: 1.2rem;

    line-height: 1.8;

    max-width: 650px;
}

/**
 * =====================================================
 * SECTION SPACING
 * =====================================================
 */

.hero-section {

    padding: 120px 0 80px;
}

.section-title {

    font-size: clamp(
        2rem,
        4vw,
        3.5rem
    );

    font-weight: 700;

    line-height: 1.2;
}

.text-muted-custom {

    color: #cbd5e1;
}

/**
 * =====================================================
 * ABOUT IMAGE
 * =====================================================
 */

.about-image {

    width: 100%;

    border-radius: 24px;

    object-fit: cover;

    box-shadow:
        0 20px 40px rgba(
            0,
            0,
            0,
            .35
        );
}

/**
 * =====================================================
 * ABOUT CARDS
 * =====================================================
 */

.about-card {

    background: rgba(
        255,
        255,
        255,
        .05
    );

    backdrop-filter: blur(
        10px
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        .08
    );

    border-radius: 20px;

    padding: 35px;

    height: 100%;

    transition: all .3s ease;
}

.about-card:hover {

    transform: translateY(
        -5px
    );

    border-color: rgba(
        234,
        179,
        8,
        .40
    );
}

/**
 * =====================================================
 * STATS SECTION
 * =====================================================
 */

.stat-box {

    background: rgba(
        255,
        255,
        255,
        .05
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        .08
    );

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    transition: .3s ease;
}

.stat-box:hover {

    border-color: rgba(
        234,
        179,
        8,
        .35
    );
}

.stat-number {

    font-size: 2.5rem;

    font-weight: 700;

    color: #eab308;

    margin-bottom: 10px;
}

.stat-label {

    color: #cbd5e1;

    font-size: 1rem;
}

/**
 * =====================================================
 * CTA SECTION
 * =====================================================
 */

.cta-section {

    background: rgba(
        234,
        179,
        8,
        .08
    );

    border: 1px solid rgba(
        234,
        179,
        8,
        .20
    );

    border-radius: 25px;

    padding: 60px 30px;
}

/**
 * =====================================================
 * BUTTON
 * =====================================================
 */

.btn-gold {

    background: #eab308;

    color: #000000;

    border-radius: 50px;

    padding: 14px 32px;

    font-weight: 600;

    text-decoration: none;

    display: inline-block;

    transition: .3s ease;
}

.btn-gold:hover {

    background: #facc15;

    color: #000000;

    transform: translateY(
        -2px
    );
}

/**
 * =====================================================
 * RESPONSIVE
 * =====================================================
 */

@media (
    max-width: 991px
) {

    .about-hero-section {

        min-height: 500px;

        text-align: center;
    }

    .hero-description {

        margin: 0 auto;
    }
}

@media (
    max-width: 768px
) {

    .about-hero-section {

        min-height: 450px;
    }

    .hero-title {

        font-size: 2.5rem;
    }

    .hero-description {

        font-size: 1rem;
    }

    .section-title {

        font-size: 2rem;
    }
}

.footer-links ul {
    list-style: disc;
    padding-left: 1rem;
}