/* =========================
   BASIC RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #3b414d;
color: #ffffff;
}


/* =========================
   HEADER
========================= */

.ns-header{
    background:#2f3746;
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}


/* =========================
   NAVBAR
========================= */

.ns-navbar {
    width: 90%;
    max-width: 1400px;
    height: 75px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   NS TRAVELS LOGO
========================= */

.ns-logo {
    display: flex;
    align-items: center;
    gap: 7px;

    cursor: pointer;
    user-select: none;
}
.ns-logo{
    display:flex;
    align-items:center;
}

.logo-img{
    height:100px;
    width:auto;
    object-fit:contain;
    display:block;
}

@media (max-width:768px){

    .logo-img{
        height:45px;
    }

}

.logo-ns {
    background-color: #eeeeee;
    color: #333333;

    font-size: 24px;
    font-weight: 800;

    padding: 8px 10px;

    border-radius: 7px;
}

.logo-travels {
    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================
   NAVIGATION LINKS
========================= */

.ns-nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 35px;
}

.ns-nav-links a {
    position: relative;

    color: #dddddd;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}


/* HOVER */

.ns-nav-links a:hover {
    color: #ffffff;
}


/* ACTIVE LINK */

.ns-nav-links a.active {
    color: #ffffff;
}


/* BOTTOM LINE EFFECT */

.ns-nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background-color: #bdbdbd;

    transition: width 0.3s ease;
}

.ns-nav-links a:hover::after,
.ns-nav-links a.active::after {
    width: 100%;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.ns-menu-button {
    display: none;

    background: transparent;
    border: none;

    color: #ffffff;

    font-size: 28px;

    cursor: pointer;
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 768px) {

    .ns-navbar {
        width: 92%;
        height: 70px;
    }

    .logo-ns {
        font-size: 20px;
        padding: 7px 9px;
    }

    .logo-travels {
        font-size: 20px;
    }

    .ns-menu-button {
        display: block;
    }

    .ns-nav-links {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background-color: #444444;

        flex-direction: column;

        gap: 0;

        display: none;

        padding: 10px 0;

        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .ns-nav-links.show-menu {
        display: flex;
    }

    .ns-nav-links li {
        width: 100%;
    }

    .ns-nav-links a {
        display: block;

        width: 100%;

        padding: 16px 25px;

        text-align: center;
    }

    .ns-nav-links a::after {
        display: none;
    }

    .ns-nav-links a:hover {
        background-color: #555555;
    }
}
/* =========================
   HERO & BOOKING SECTION
========================= */

.booking-section {
    min-height: calc(100vh - 75px);
    padding: 45px 20px 70px;

background: linear-gradient(135deg, #4E5764 0%, #3C4553 100%);
}


/* MAIN CONTAINER */

.booking-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   BOOKING TABS
========================= */

.booking-tabs{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}


.booking-tab{
    flex:1;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#ffffff;
    border:2px solid #14B8A6;
    border-radius:16px;

    color:#14B8A6;
    font-size:18px;
    font-weight:700;

    cursor:pointer;
    transition:all .3s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.booking-tab:hover{
    background:#EAFBF8;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(20,184,166,.25);
}

.booking-tab.active{
    background:linear-gradient(135deg,#14B8A6,#0F766E);
    color:#ffffff;
}

.booking-tab.active .tab-icon,
.booking-tab.active span{
    color:#ffffff;
}
/* Mobile */
@media(max-width:768px){

    .booking-tabs{
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

    .booking-tab{
        height:60px;
        font-size:16px;
    }

}

@media(max-width:480px){

   .booking-tabs{
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

}


/* =========================
   BOOKING FORM BOX
========================= */

.booking-form-box {
    background-color: #ffffff;

    border-radius: 16px;

    padding: 35px 40px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}


/* =========================
   FORM SECTION
========================= */

.form-section{
    margin-bottom:30px;

    background:#F8FAFC;

    padding:24px;

    border-radius:16px;

    border:1px solid #E5E7EB;

    box-shadow:0 5px 15px rgba(0,0,0,.06);
}


.form-section h2{

    margin-bottom:20px;

    color:#1E293B;

    font-size:22px;

    font-weight:700;

    border-left:5px solid #14B8A6;

    padding-left:12px;
}


/* =========================
   FORM GRID
========================= */

.form-grid {
    display: grid;
    gap: 25px;
}


.three-columns {
    grid-template-columns: repeat(3, 1fr);
}


.two-columns {
    grid-template-columns: repeat(2, 1fr);
}


/* =========================
   INPUT GROUP
========================= */

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.input-group label {
    color: #555555;

    font-size: 14px;
    font-weight: 600;
}


.input-group input,
.input-group select,
.input-group textarea{

    width:100%;
    height:56px;

    padding:0 18px;

    background:#FFFFFF;

    border:2px solid #D6DCE5;

    border-radius:14px;

    font-size:15px;
    color:#1E293B;

    transition:all .3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#14B8A6;

    box-shadow:0 0 0 4px rgba(20,184,166,.12);

    outline:none;
}


.input-group input::placeholder {
    color: #999999;
}




/* =========================
   INPUT WITH ICON
========================= */

.input-with-icon{
    position:relative;
}

.input-with-icon span{

    position:absolute;

    left:16px;
    top:50%;

    transform:translateY(-50%);

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#14B8A6,#0F766E);

    color:#ffffff;

    border-radius:50%;

    font-size:15px;

    box-shadow:0 6px 15px rgba(20,184,166,.35);

    pointer-events:none;
}

.input-with-icon input{

    padding-left:60px;
}


/* =========================
   TRIP TYPE
========================= */

.trip-type-options {
    display: flex;
    gap: 12px;
}


.trip-option{
    min-width:140px;

    padding:15px 24px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#FFFFFF;

    border:2px solid #D6DCE5;

    border-radius:14px;

    color:#1E293B;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:all .3s ease;
}

.trip-option input {
    display: none;
}


.trip-option:hover{

    background:#F8FAFC;

    border-color:#14B8A6;

    transform:translateY(-2px);

    box-shadow:0 6px 15px rgba(0,0,0,.12);
}


.trip-option.active{

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border-color: #14B8A6;

    color: #FFFFFF;

    box-shadow: 0 8px 18px rgba(20,184,166,.35);

    transform: translateY(-2px);
}


/* =========================
   DATE ROW
========================= */

.booking-date-row {
    margin-top: 25px;
}


/* =========================
   SEARCH BUTTON
========================= */

.booking-button-area {
    margin-top: 35px;

    display: flex;
    justify-content: center;
}


.search-cabs-button{

   background: linear-gradient(135deg,#14B8A6,#0F766E);
border: 2px solid #14B8A6;
color: #ffffff;
box-shadow: 0 12px 28px rgba(20,184,166,.35);
transition: .3s;
}

.search-cabs-button:hover{

    background: linear-gradient(135deg,#2DD4BF,#14B8A6);
box-shadow: 0 18px 35px rgba(20,184,166,.45);
transform: translateY(-3px);
}
.search-cabs-button:active{
    transform:scale(.98);
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

    .booking-tabs {
        width: 90%;
    }


    .three-columns {
        grid-template-columns: 1fr 1fr;
    }


    .booking-form-box {
        padding: 30px;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 600px) {

    .booking-section {
        padding: 25px 12px 50px;
    }


   .booking-tabs{
    width:100%;
    grid-template-columns: repeat(2,1fr);
    gap:6px;
}


   


    .booking-form-box {
        padding: 25px 18px;

        border-radius: 0 0 12px 12px;
    }


    .three-columns,
    .two-columns {
        grid-template-columns: 1fr;
    }


    .trip-type-options {
        flex-direction: column;
    }


    .trip-option {
        width: 100%;
    }


    .search-cabs-button {
        width: 100%;
    }

}
/* =========================
   POPULAR ROUTES SECTION
========================= */

.popular-routes-section {
    padding: 80px 20px;
    background-color: #f3f6fb;
}


.routes-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}


.section-small-title {
    display: inline-block;
    margin-bottom: 10px;

    color: #666666;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2 {
    margin-bottom: 12px;

    color: #2f2f2f;

    font-size: 36px;
    font-weight: 800;
}


.section-heading p {
    color: #777777;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   ROUTES GRID
========================= */

.routes-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


/* =========================
   ROUTE CARD
========================= */

.route-card {
    position: relative;

    padding: 28px;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.route-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.14);
}


/* TOP */

.route-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


.route-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #eeeeee;

    border-radius: 50%;

    font-size: 24px;
}


.route-badge {
    padding: 7px 13px;

    background-color: #eeeeee;

    border-radius: 50px;

    color: #555555;

    font-size: 12px;
    font-weight: 700;
}


/* ROUTE TITLE */

.route-card h3 {
    margin-bottom: 25px;

    color: #333333;

    font-size: 21px;
    font-weight: 800;
}


/* =========================
   ROUTE INFORMATION
========================= */

.route-info {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    padding: 20px 0;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}


.route-detail {
    display: flex;
    align-items: center;

    gap: 12px;
}


.route-detail-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f1f1f1;

    border-radius: 8px;

    font-size: 17px;
}


.route-detail div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.route-detail small {
    color: #888888;

    font-size: 12px;
}


.route-detail strong {
    color: #444444;

    font-size: 15px;
}


/* =========================
   PRICE AND BUTTON
========================= */

.route-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;
}


.route-price {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.route-price small {
    color: #888888;

    font-size: 12px;
}


.route-price strong {
    color: #333333;

    font-size: 22px;
    font-weight: 800;
}


/* BOOK NOW BUTTON */

.route-book-button {
    padding: 13px 25px;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border: none;

    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


.route-book-button:hover {
    background-color: #2f2f2f;

    transform: translateY(-2px);

    box-shadow:
        0 7px 15px rgba(0, 0, 0, 0.18);
}


/* =========================
   TABLET
========================= */

@media screen and (max-width: 800px) {

    .routes-grid {
        grid-template-columns: 1fr;
    }


    .section-heading h2 {
        font-size: 30px;
    }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 500px) {

    .popular-routes-section {
        padding: 60px 15px;
    }


    .route-card {
        padding: 22px 18px;
    }


    .route-card h3 {
        font-size: 18px;
    }


    .route-info {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .route-card-bottom {
        align-items: flex-end;
    }


    .route-price strong {
        font-size: 19px;
    }


    .route-book-button {
        padding: 12px 18px;
    }

}
/* =========================
   OUR FLEET SECTION
========================= */

.fleet-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}


.fleet-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   FLEET GRID
========================= */

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* =========================
   FLEET CARD
========================= */

.fleet-card {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 18px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    height: 100%;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.14);
}


/* =========================
   VEHICLE IMAGE AREA
========================= */

.fleet-image-box {
    position: relative;

    height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eeeeee,
            #d7d7d7
        );
}


.vehicle-placeholder {
    font-size: 100px;

    transition: transform 0.3s ease;
}


.fleet-card:hover .vehicle-placeholder {
    transform: scale(1.08);
}


/* VEHICLE TYPE BADGE */

.fleet-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 8px 14px;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border-radius: 50px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}


/* =========================
   FLEET CONTENT
========================= */

.fleet-content {
    padding: 26px;
}


.fleet-content h3 {
    margin-bottom: 10px;

    color: #333333;

    font-size: 22px;
    font-weight: 800;
}


.fleet-description {
    min-height: 48px;

    margin-bottom: 24px;

    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   FLEET FEATURES
========================= */

.fleet-features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 25px;
}


.fleet-feature {
    padding: 13px 8px;

    display: flex;
    align-items: center;

    gap: 8px;

    background-color: #f4f4f4;

    border-radius: 9px;
}


.fleet-feature > span {
    font-size: 18px;
}


.fleet-feature p {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.fleet-feature small {
    color: #888888;

    font-size: 10px;
}


.fleet-feature strong {
    color: #444444;

    font-size: 12px;
}


/* =========================
   SELECT VEHICLE BUTTON
========================= */

.fleet-book-button{

    width:100%;

    padding:15px 25px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#14B8A6,#0F766E);

    color:#ffffff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:0 8px 20px rgba(20,184,166,.30);
}

.fleet-book-button:hover{

    background:linear-gradient(135deg,#0F766E,#0D9488);

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(20,184,166,.40);
}


.fleet-book-button:hover {
    background-color: #2f2f2f;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.18);
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media screen and (max-width: 850px) {

    .fleet-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 500px) {

    .fleet-section {
        padding: 60px 15px;
    }


    .fleet-image-box {
        height: 190px;
    }


    .vehicle-placeholder {
        font-size: 80px;
    }


    .fleet-content {
        padding: 22px 18px;
    }


    .fleet-features {
        grid-template-columns: 1fr;
    }


    .fleet-description {
        min-height: auto;
    }

}
/* =========================
   WHY CHOOSE NS TRAVELS
========================= */

.why-choose-section {
    padding: 80px 20px;

    background-color: #f3f6fb;
}


.why-choose-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================
   WHY CHOOSE GRID
========================= */

.why-choose-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* =========================
   WHY CHOOSE CARD
========================= */

.why-card {
    position: relative;

    padding: 32px 25px;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 16px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.why-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.13);
}


/* =========================
   FEATURE ICON
========================= */

.why-icon {
    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: #eeeeee;

    border-radius: 50%;

    font-size: 31px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.why-card:hover .why-icon {
    transform: scale(1.1);

    background-color: #dddddd;
}


/* =========================
   FEATURE TEXT
========================= */

.why-card h3 {
    margin-bottom: 12px;

    color: #333333;

    font-size: 19px;

    font-weight: 800;
}


.why-card p {
    color: #777777;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

    .why-choose-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 600px) {

    .why-choose-section {
        padding: 60px 15px;
    }


    .why-choose-grid {
        grid-template-columns: 1fr;
    }


    .why-card {
        padding: 28px 20px;
    }

}
/* =========================
   ABOUT NS TRAVELS
========================= */

.about-section {
    padding: 90px 20px;

    background-color: #ffffff;
}


.about-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto 60px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    align-items: center;

    gap: 70px;
}


/* =========================
   ABOUT VISUAL
========================= */

.about-visual {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;
}


.about-main-card {
    width: 100%;

    min-height: 350px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background:
        linear-gradient(
            135deg,
            #3d3d3d,
            #707070
        );

    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18);
}


.about-car-icon {
    margin-bottom: 20px;

    font-size: 90px;
}


.about-main-card h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 34px;

    font-weight: 800;
}


.about-main-card p {
    color: #dddddd;

    font-size: 15px;
}


/* =========================
   EXPERIENCE CARD
========================= */

.about-experience-card {
    position: absolute;

    right: 0;

    bottom: 15px;

    min-width: 160px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    align-items: center;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 15px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);
}


.about-experience-card strong {
    margin-bottom: 5px;

    color: #333333;

    font-size: 28px;
}


.about-experience-card span {
    color: #777777;

    font-size: 13px;

    font-weight: 600;
}


/* =========================
   ABOUT CONTENT
========================= */

.about-content h2 {
    max-width: 550px;

    margin: 8px 0 20px;

    color: #2f2f2f;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 800;
}


.about-content > p {
    margin-bottom: 15px;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   ABOUT POINTS
========================= */

.about-points {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.about-point {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.about-point > span {
    min-width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border-radius: 50%;

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;
}


.about-point h4 {
    margin-bottom: 5px;

    color: #3a3a3a;

    font-size: 16px;
}


.about-point p {
    color: #888888;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   ABOUT STATISTICS
========================= */

.about-stats-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background-color: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}


.about-stat {
    position: relative;

    padding: 30px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.about-stat:not(:last-child) {
    border-right: 1px solid #e2e2e2;
}


.about-stat strong {
    margin-bottom: 7px;

    color: #333333;

    font-size: 30px;

    font-weight: 800;
}


.about-stat span {
    color: #777777;

    font-size: 13px;

    font-weight: 600;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-visual {
        max-width: 650px;

        width: 100%;

        margin: 0 auto;
    }


    .about-content {
        text-align: center;
    }


    .about-content h2 {
        margin-left: auto;

        margin-right: auto;
    }


    .about-point {
        text-align: left;
    }


    .about-stats-container {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-stat {
        border-bottom: 1px solid #e2e2e2;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 550px) {

    .about-section {
        padding: 60px 15px;
    }


    .about-visual {
        min-height: 350px;

        padding: 0 0 45px;
    }


    .about-main-card {
        min-height: 300px;

        padding: 30px 20px;
    }


    .about-car-icon {
        font-size: 70px;
    }


    .about-main-card h3 {
        font-size: 28px;
    }


    .about-experience-card {
        right: 15px;

        bottom: 0;
    }


    .about-content h2 {
        font-size: 30px;
    }


    .about-stats-container {
        grid-template-columns: 1fr;
    }


    .about-stat:not(:last-child) {
        border-right: none;

        border-bottom: 1px solid #e2e2e2;
    }

}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 90px 20px;

    background-color: #f3f6fb;
}


.contact-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 60px;

    align-items: center;
}


/* =========================
   CONTACT INFORMATION
========================= */

.contact-info h2 {
    max-width: 500px;

    margin: 8px 0 18px;

    color: #2f2f2f;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 800;
}


.contact-intro {
    max-width: 550px;

    margin-bottom: 32px;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.contact-detail-card {
    padding: 18px;

    display: flex;

    align-items: center;

    gap: 16px;

    background-color: #f7f7f7;

    border: 1px solid #d5d5d5;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.contact-detail-card:hover {
    transform: translateX(5px);

    background-color: #ffffff;
}


.contact-detail-icon {
    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border-radius: 50%;

    color: #ffffff;

    font-size: 19px;
}


.contact-detail-card div:last-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.contact-detail-card span {
    color: #888888;

    font-size: 12px;

    font-weight: 600;
}


.contact-detail-card strong {
    color: #333333;

    font-size: 15px;
}


/* =========================
   CONTACT FORM CARD
========================= */

.contact-form-card {
    padding: 38px;

    background-color: #ffffff;

    border: 1px solid #d8d8d8;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}


.contact-form-heading {
    margin-bottom: 28px;
}


.contact-form-heading h3 {
    margin-bottom: 8px;

    color: #333333;

    font-size: 26px;

    font-weight: 800;
}


.contact-form-heading p {
    color: #888888;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   CONTACT FORM INPUTS
========================= */

.contact-form-group {
    margin-bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.contact-form-group label {
    color: #555555;

    font-size: 13px;

    font-weight: 700;
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background-color: #f7f7f7;

    border: 1px solid #cccccc;

    border-radius: 8px;

    color: #333333;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


.contact-form-group input {
    height: 50px;
}


.contact-form-group select {
    height: 50px;

    cursor: pointer;
}


.contact-form-group textarea {
    resize: vertical;

    min-height: 120px;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    background-color: #ffffff;

    border-color: #666666;

    box-shadow:
        0 0 0 3px rgba(80, 80, 80, 0.12);
}


/* =========================
   SUBMIT BUTTON
========================= */

.contact-submit-button {
    width: 100%;

    padding: 15px 25px;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border: none;

    border-radius: 9px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


.contact-submit-button:hover{
    background: linear-gradient(135deg,#0F766E,#0D9488);
    transform:translateY(-2px);
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media screen and (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-info {
        text-align: center;
    }


    .contact-info h2,
    .contact-intro {
        margin-left: auto;

        margin-right: auto;
    }


    .contact-detail-card {
        text-align: left;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 550px) {

    .contact-section {
        padding: 60px 15px;
    }


    .contact-info h2 {
        font-size: 30px;
    }


    .contact-form-card {
        padding: 28px 18px;
    }


    .contact-form-heading h3 {
        font-size: 23px;
    }


    .contact-detail-card strong {
        font-size: 13px;
    }

}

/* =========================
   FOOTER
========================= */

.ns-footer {
    background-color: #1e293b;
    color: #ffffff;
}


.footer-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 65px 20px 50px;

    display: grid;

    grid-template-columns:
        1.4fr 0.8fr 1fr 1.3fr;

    gap: 45px;
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-column h3 {
    position: relative;

    margin-bottom: 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 17px;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background-color: #999999;
}


/* =========================
   FOOTER LOGO
========================= */

.footer-logo {
    margin-bottom: 22px;

    display: flex;

    align-items: center;

    gap: 8px;
}


.footer-logo-ns {
    padding: 8px 10px;

    background-color: #eeeeee;

    border-radius: 7px;

    color: #333333;

    font-size: 23px;

    font-weight: 800;
}


.footer-logo-travels {
    color: #ffffff;

    font-size: 23px;

    font-weight: 700;
}


.footer-brand > p {
    max-width: 300px;

    margin-bottom: 15px;

    color: #bdbdbd;

    font-size: 14px;

    line-height: 1.8;
}


.footer-brand .footer-tagline {
    color: #ffffff;

    font-weight: 700;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links,
.footer-services {
    list-style: none;
}


.footer-links li,
.footer-services li {
    margin-bottom: 13px;
}


.footer-links a {
    color: #bdbdbd;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-links a:hover {
    color: #ffffff;

    padding-left: 5px;
}


.footer-services li {
    color: #bdbdbd;

    font-size: 14px;
}


/* =========================
   FOOTER CONTACT
========================= */

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.footer-contact-item > span {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: #444444;

    border-radius: 50%;

    font-size: 14px;
}


.footer-contact-item div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.footer-contact-item small {
    color: #999999;

    font-size: 11px;
}


.footer-contact-item strong {
    color: #d7d7d7;

    font-size: 13px;

    font-weight: 600;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid #484848;

    background-color: #282828;
}


.footer-bottom-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom-container p {
    color: #999999;

    font-size: 13px;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-bottom-links a {
    color: #999999;

    text-decoration: none;

    font-size: 12px;

    transition: color 0.3s ease;
}


.footer-bottom-links a:hover {
    color: #ffffff;
}


.footer-bottom-links span {
    color: #555555;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media screen and (max-width: 950px) {

    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 600px) {

    .footer-container {
        padding: 50px 20px 35px;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom-container {
        flex-direction: column;

        text-align: center;
    }

}
/* =========================
   SELECTED SERVICE BOX
========================= */

.selected-service-box {
    margin-bottom: 30px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background-color: #f1f1f1;

    border: 1px solid #d5d5d5;

    border-left:5px solid #14B8A6;

    border-radius: 10px;
}


.selected-service-box > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.selected-service-box span {
    color: #888888;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.selected-service-box strong {
    color: #333333;

    font-size: 20px;

    font-weight: 800;
}


.selected-service-box p {
    color: #777777;

    font-size: 13px;

    text-align: right;
}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 600px) {

    .selected-service-box {
        flex-direction: column;

        align-items: flex-start;
    }


    .selected-service-box p {
        text-align: left;
    }

}
/* =========================
   FARE ESTIMATE SECTION
========================= */

.fare-estimate-section {
    margin-top: 35px;

    padding: 28px;

    background-color: #f5f5f5;

    border: 1px solid #d5d5d5;

    border-radius: 14px;
}


/* =========================
   FARE HEADING
========================= */

.fare-estimate-heading {
    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.fare-small-title {
    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.fare-estimate-heading h2 {
    color: #333333;

    font-size: 21px;

    font-weight: 800;
}


.fare-rate-badge {
    padding: 10px 17px;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border-radius: 50px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}


/* =========================
   DISTANCE INPUT
========================= */

.fare-distance-input {
    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: end;

    gap: 15px;

    margin-bottom: 25px;
}


.calculate-fare-button{

    padding:16px 30px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#14B8A6,#0F766E);

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:0 8px 20px rgba(20,184,166,.30);
}

.calculate-fare-button:hover{

    background:linear-gradient(135deg,#0F766E,#0D9488);

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(20,184,166,.40);
}


/* =========================
   FARE RESULT
========================= */

.fare-result-box {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background-color: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 12px;

    overflow: hidden;
}


.fare-result-item {
    padding: 18px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    border-right: 1px solid #e5e5e5;
}


.fare-result-item:nth-child(4) {
    border-right: none;
}


.fare-result-item span {
    color: #888888;

    font-size: 11px;

    font-weight: 600;
}


.fare-result-item strong {
    color: #333333;

    font-size: 15px;
}


/* =========================
   TOTAL FARE
========================= */

.fare-total {
    grid-column: 1 / -1;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background-color: #3f3f3f;
}


.fare-total > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.fare-total span {
    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


.fare-total small {
    color: #bdbdbd;

    font-size: 11px;
}


.fare-total > strong {
    color: #ffffff;

    font-size: 28px;

    font-weight: 800;
}


/* =========================
   TABLET
========================= */

@media screen and (max-width: 800px) {

    .fare-result-box {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .fare-result-item {
        border-bottom:
            1px solid #e5e5e5;
    }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 550px) {

    .fare-estimate-section {
        padding: 22px 15px;
    }


    .fare-estimate-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .fare-distance-input {
        grid-template-columns: 1fr;
    }


    .calculate-fare-button {
        width: 100%;
    }


    .fare-result-box {
        grid-template-columns: 1fr;
    }


    .fare-result-item {
        border-right: none;
    }


    .fare-total {
        align-items: flex-start;

        flex-direction: column;
    }


    .fare-total > strong {
        font-size: 26px;
    }

}
/* =========================
   SELECTED VEHICLE BOX
========================= */

.selected-vehicle-box {
    margin-top: 30px;
    margin-bottom: 25px;

    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background-color: #eeeeee;

    border: 1px solid #cccccc;
    border-left:5px solid #14B8A6;

    border-radius: 10px;
}


.selected-vehicle-box > div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.selected-vehicle-box span {
    color: #888888;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}


.selected-vehicle-box strong {
    color: #333333;

    font-size: 17px;
    font-weight: 800;
}


/* MOBILE */

@media screen and (max-width: 550px) {

    .selected-vehicle-box {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================
   AVAILABLE CABS
========================= */

.available-cabs-section {
    display: block;

    margin-top: 35px;

    padding-top: 35px;

    border-top: 1px solid #dddddd;
}


.available-cabs-section.show {
    display: block;
}


.available-cabs-heading {
    margin-bottom: 25px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.available-cabs-heading span {
    color: #f8f8f7;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.available-cabs-heading h2 {
    margin-top: 5px;

    color: #f8f8f7;

    font-size: 25px;
}


.available-cabs-heading p {
    color: #f8f8f7;

    font-size: 13px;
}


/* =========================
   AVAILABLE CAB GRID
========================= */

.available-cabs-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


/* =========================
   VEHICLE RESULT CARD
========================= */

.search-vehicle-card {
    padding: 20px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    border-radius: 12px;

    transition: all 0.3s ease;
}


.search-vehicle-card:hover {
    transform: translateY(-3px);

    border-color: #999999;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.09);
}


.search-vehicle-card.selected{

    border-left:5px solid #14B8A6;

    background:#F0FDFA;

    box-shadow:0 10px 25px rgba(20,184,166,.15);
}


/* VEHICLE ICON */

.search-vehicle-icon{
    width: 80px;
    height: 80px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:12px;
    background:#eee;
}

.search-vehicle-image{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}


/* VEHICLE INFO */

.search-vehicle-info h3 {
    margin-bottom: 5px;

    color: #333333;

    font-size: 16px;
}


.search-vehicle-info p {
    margin-bottom: 7px;

    color: #888888;

    font-size: 11px;
}


.search-vehicle-info span {
    color: #555555;

    font-size: 12px;

    font-weight: 700;
}


/* PRICE */

.search-vehicle-price {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 7px;
}


.search-vehicle-price small {
    color: #888888;

    font-size: 10px;
}


.search-vehicle-price strong {
    color: #333333;

    font-size: 20px;

    font-weight: 800;
}


/* SELECT BUTTON */

.choose-cab-button {
    padding: 10px 20px;

    background: linear-gradient(135deg, #14B8A6, #0F766E);

    border: none;

    border-radius: 10px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;

    box-shadow: 0 8px 18px rgba(20,184,166,.35);
}

.choose-cab-button:hover {

    background: linear-gradient(135deg,#2DD4BF,#14B8A6);

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(13, 238, 211, 0.45);
}

.choose-cab-button:active{
    transform: scale(.97);
}


.choose-cab-button:hover {
    background-color: #2f2f2f;
}


/* =========================
   TABLET
========================= */

@media screen and (max-width: 900px) {

    .available-cabs-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 600px) {

    .available-cabs-heading {
        flex-direction: column;

        align-items: flex-start;
    }


    .search-vehicle-card {
        grid-template-columns:
            auto 1fr;
    }


    .search-vehicle-price {
        grid-column: 1 / -1;

        width: 100%;

        align-items: stretch;
    }


    .search-vehicle-price strong {
        font-size: 22px;
    }


    .choose-cab-button {
        width: 100%;

        padding: 12px;
    }

}
/* =========================
   BOOKING SUMMARY
========================= */

.booking-summary-section {
    display: none;

    margin-top: 30px;
    padding: 28px;

    background-color: #f5f5f5;

    border: 1px solid #d5d5d5;
    border-radius: 12px;
}


.booking-summary-section.show {
    display: block;
}


.booking-summary-heading {
    margin-bottom: 25px;
}


.booking-summary-heading span {
    color: #777777;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.booking-summary-heading h2 {
    margin-top: 5px;
    margin-bottom: 5px;

    color: #333333;

    font-size: 24px;
}


.booking-summary-heading p {
    color: #777777;

    font-size: 13px;
}


/* SUMMARY GRID */

.booking-summary-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.summary-item {
    padding: 15px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 8px;
}


.summary-item span {
    color: #888888;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}


.summary-item strong {
    color: #333333;

    font-size: 15px;

    word-break: break-word;
}


/* TOTAL */

.booking-summary-total {
    margin-top: 20px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background-color: #444444;

    border-radius: 10px;

    color: #ffffff;
}


.booking-summary-total div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.booking-summary-total span {
    font-size: 14px;
    font-weight: 700;
}


.booking-summary-total small {
    color: #dddddd;

    font-size: 11px;
}


.booking-summary-total > strong {
    font-size: 28px;
    font-weight: 800;
}


/* CONFIRM BUTTON */

.confirm-booking-button {
    width: 100%;

    margin-top: 20px;
    padding: 15px;

    background-color: #444444;

    border: none;
    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;
}


.confirm-booking-button:hover {
    background-color: #222222;
}


/* MOBILE */

@media screen and (max-width: 600px) {

    .booking-summary-grid {
        grid-template-columns: 1fr;
    }


    .booking-summary-total {
        flex-direction: column;

        align-items: flex-start;
    }

}
/* =========================
   BOOKING SUCCESS MODAL
========================= */

.booking-modal-overlay {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    padding: 20px;

    background-color: rgba(0, 0, 0, 0.65);

    align-items: center;
    justify-content: center;

    z-index: 9999;
}


/* SHOW MODAL */

.booking-modal-overlay.show {
    display: flex;
}


/* MODAL BOX */

.booking-modal {
    width: 100%;
    max-width: 500px;

    padding: 35px;

    background-color: #ffffff;

    border-radius: 16px;

    text-align: center;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.25);
}


/* SUCCESS ICON */

.booking-success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #444444;

    border-radius: 50%;

    color: #ffffff;

    font-size: 36px;
    font-weight: 800;
}


/* HEADING */

.booking-modal h2 {
    margin-bottom: 8px;

    color: #333333;

    font-size: 28px;
}


/* MESSAGE */

.booking-success-message {
    margin-bottom: 25px;

    color: #777777;

    font-size: 14px;

    line-height: 1.6;
}


/* BOOKING ID */

.booking-id-box {
    margin-bottom: 20px;
    padding: 18px;

    display: flex;
    flex-direction: column;

    gap: 6px;

    background-color: #f5f5f5;

    border: 1px solid #dddddd;
    border-radius: 10px;
}


.booking-id-box span {
    color: #888888;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.booking-id-box strong {
    color: #333333;

    font-size: 20px;
    font-weight: 800;
}


/* BOOKING DETAILS */

.booking-success-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 25px;

    text-align: left;
}


.booking-success-details div {
    padding: 14px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    background-color: #f8f8f8;

    border: 1px solid #e2e2e2;
    border-radius: 8px;
}


.booking-success-details span {
    color: #888888;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


.booking-success-details strong {
    color: #333333;

    font-size: 14px;

    word-break: break-word;
}


/* DONE BUTTON */

.booking-modal-done-button {
    width: 100%;

    padding: 14px;

    background-color: #444444;

    border: none;
    border-radius: 8px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;
}


.booking-modal-done-button:hover {
    background-color: #222222;
}


/* MOBILE */

@media screen and (max-width: 600px) {

    .booking-modal {
        padding: 25px 18px;
    }


    .booking-success-details {
        grid-template-columns: 1fr;
    }


    .booking-modal h2 {
        font-size: 24px;
    }

}
.fare-note {
    margin-top: 12px;
    padding: 10px;
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.fare-note strong {
    color: #d97706;
}
.vehicle-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.vehicle-placeholder {
    width: 100%;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 12px 12px 0 0;
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.search-vehicle-image{
   max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
/* =========================
   SEARCH AVAILABLE CABS BUTTON
========================= */

.search-cabs-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:13px;

    min-width:260px;
    height:58px;

    padding:0 30px;

    background:linear-gradient(135deg,#14B8A6,#0F766E);

    color:#FFFFFF;

    border:none;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:0 10px 25px rgba(20,184,166,.35);
}

.search-cabs-button:hover{

    background:linear-gradient(135deg,#2DD4BF,#14B8A6);

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(20,184,166,.45);
}


