* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #F40002;
    --yellow: #f7b500;
    --dark: #111;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.eot');
    src: url('../fonts/Outfit-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Outfit-Regular.woff2') format('woff2'),
        url('../fonts/Outfit-Regular.woff') format('woff'),
        url('../fonts/Outfit-Regular.ttf') format('truetype'),
        url('../fonts/Outfit-Regular.svg#Outfit-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

.logo {
    font-size: 0rem;
    background: url('../images/logo.png') no-repeat;
    background-size: contain;
    width: 20%;
    height: 70px;
    position: relative;
    top: -33px;
    left: 5%;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.navbar-nav {
    background-image: url('../images/navbar-bg.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 80px;
    position: relative;
    z-index: 9;
}

.phone-logo {
    width: 20px;
    height: 20px;
    background-image: url(../images/call-logo.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.mail-logo {
    width: 20px;
    height: 20px;
    background-image: url(../images/mail-logo.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.nav-item .phone-number,
.nav-item .email {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: var(--primary-red);
    float: left;
    padding: 0 1rem;
}

.btn.custom-btn,
.btn.custom-btn.active,
.btn.custom-btn:focus,
.btn.custom-btn:hover {
    background-color: #ff0000;
    color: white;
    border: none;
}

.mt-n2 {
    margin-top: -2rem
}

.ms-custom {
    margin-left: 1.6rem;
    margin-top: -1.5rem !important;
    margin-right: 4.5rem;
}

.navbar-nav .nav-item a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: #FFFFFF;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.nav-item a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-item a:hover::after {
    width: 80%;
    left: 10%;
}

.navbar-nav a.active::after,
.navbar-nav a.active {
    border-bottom: 2px solid #FFFFFF;
    color: #fff !important;
}

/* ===== SLIDER ===== */

.slider {
    overflow: hidden;
}

.slide {
    position: relative;
    height: 500px;
}

.bg-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* #F40002 road image */
.road {
    position: absolute;
    right: 246px;
    top: 0;
    z-index: 5;
}

.road img {
    height: 100%;
}

/* LEFT CONTENT */
.slider-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 20;
    color: white;
    max-width: 550px;
}

.sub-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.slider-content h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.slider-content h2 {
    font-size: 65px;
    font-weight: 700;
    color: var(--primary-red);
    ;
    line-height: 1.1;
    margin-bottom: 25px;
}

.slider-content .desc {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.slider-content .btn {
    font-size: 22px;
    position: relative;
    z-index: 999;
}

/* CAR IMAGE */
.car-img {
    position: absolute;
    right: 0px;
    bottom: -50px;
    z-index: 10;
}

.car-img img {
    width: 500px;
    max-width: 100%;
}

/* =========================
   SLICK ARROWS
========================= */

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);

    cursor: pointer;
    transition: .3s;

    font-size: 0;
    /* hide text */
}

/* hover */
.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-red);
    ;
}

/* LEFT POSITION */
.slick-prev {
    left: 25px;
}

/* RIGHT POSITION */
.slick-next {
    right: 25px;
}

/* create arrow icons */
.slick-prev::before,
.slick-next::before {
    font-size: 28px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

/* left arrow */
.slick-prev::before {
    content: '‹';
}

/* right arrow */
.slick-next::before {
    content: '›';
}

/* =========================
   SLICK DOTS
========================= */

.slick-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    display: none !important;
}

.slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .5);
    font-size: 0;
    cursor: pointer;
}

.slick-dots .slick-active button {
    background: var(--primary-red);
    ;
}

/* ===== ANIMATION ===== */

.animate-left,
.animate-right,
.animate-up {
    opacity: 0;
}

/* animate active slide text */
.slick-active .animate-left {
    animation: leftAnim 1s ease forwards;
}

/* animate active slide car */
.slick-active .animate-right {
    animation: rightAnim 1s ease forwards;
    animation-delay: .3s;
}

/* text from left */
@keyframes leftAnim {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* car from right */
@keyframes rightAnim {
    from {
        opacity: 0;
        transform: translateX(150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes upAnim {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 6rem 0;
}

/* LEFT IMAGE */


.about-image-box img {
    width: 100%;
    border-radius: 25px;
}

/* RIGHT CONTENT */
.section-tag {
    color: #f2b300;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.about-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #666666;
    margin-bottom: 36px;
}

/* ======================
   STATS SECTION
====================== */

.stats-row {
    margin-top: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

/* subtle hover animation */
.stat-box:hover {
    transform: translateY(-6px);
}

/* icon image */
.stat-icon img {
    width: 42px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

/* icon zoom on hover */
.stat-box:hover .stat-icon img {
    transform: scale(1.08);
}

/* number */
.stat-text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

/* label */
.stat-text p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #555;
    line-height: 1.2;
    font-weight: 500;
}

/* =========================
   SCROLL ANIMATIONS
========================= */

/* initial hidden state */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 1;
    transition: all 0.9s ease;
}

.reveal-left {
    animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* right → left */
.reveal-right {
    animation: slideRight 1s ease forwards;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* bottom → top */
.reveal-up {
    transform: translateY(50px);
}

/* active state */
.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================
   ABOUT US SECTION
========================= */


.about-Services {
    background: linear-gradient(to right, #181818, #222);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* heading */
.section-tag {
    text-align: center;
    color: #f2b300;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

/* main layout */
.services-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* left + right columns */
.services-left,
.services-right {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    z-index: 2;
}

/* service box */
.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
}

/* icon */
.service-icon img {
    width: 65px;
    height: auto;
    transition: 0.3s;
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

/* text */
.service-text h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 33px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 4px;
    white-space: nowrap;
}

.service-text p {
    font-size: 18px;
    line-height: 23px;
    color: #666666;
    transition: color 0.2s;
}

/* center car */
.services-center {
    width: 30%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.car-topdown {
    position: relative;
}

.car-topdown img {
    width: 260px;
    max-width: 100%;
}

.car-topdown.animate-car img {
    animation: carFloat 2s ease-out forwards;
}

@keyframes carFloat {
    from {
        transform: translateY(-200px);
    }

    to {
        transform: translateY(40px);
    }
}

/* car light beam */
.car-topdown::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 190px;
    width: 320px;
    height: 280px;
    /* background: rgba(255,255,255,0.85);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    filter: blur(10px); */
    z-index: -1;
}

/* ROAD */
.about-Services::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000;
    border-top: 10px solid #f2b300;
    border-bottom: 10px solid #f2b300;
}

.about-Services::before {
    content: "";
    position: absolute;
    bottom: 42px;
    left: 0;
    width: 100%;
    height: 4px;

    background-image: repeating-linear-gradient(to right,
            #fff 0px,
            #fff 20px,
            transparent 20px,
            transparent 40px);

    background-size: 40px 4px;
    background-repeat: repeat-x;

    animation: roadMove 0.8s linear infinite;
    z-index: 2;
}

@keyframes roadMove {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: -40px;
    }
}

/* ─────────────────────────────────────────────────── */
/*  EASY STEPS                                         */
/* ─────────────────────────────────────────────────── */
/* MAIN SECTION */
.steps {
    width: 100%;
    background: #FFFFFF;
    padding: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    align-items: center;
    height: auto;
    justify-items: center;
    justify-content: center;
    align-content: center;
    grid-auto-flow: row;
}

.steps-wrapper {
    position: relative;
    display: grid;
    grid-auto-flow: row;
    align-content: center;
    justify-content: center;
    align-items: baseline;
    justify-items: center
}

.steps-content {
    display: grid;
    justify-content: center;
    align-content: center;
    grid-auto-flow: row;
    align-items: center;
}

/* common style */
.steps-image1 img,
.steps-image2 img {
    position: absolute;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* step1 image */
.steps-image1 img {
    z-index: 2;
    max-width: 290px;
    /* default front */
}

/* step2 image */
.steps-image2 img {
    left: 120px;
    position: relative;
    max-width: 290px;
    /* back */
}

/* active (front) */
/* animation keyframes */
@keyframes slideInLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* front image animation */
.steps-active {
    z-index: 2 !important;
    animation: slideInLeft 0.6s ease;
}

/* back image */
.inactive {
    z-index: 1 !important;
    opacity: 0.9;
    transform: scale(0.95);
}

/* FRONT IMAGE */
.steps-image1 {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 2;
}

.steps-image1 img {
    width: 360px;
    border-radius: 18px;
}

/* RIGHT CONTENT */
.steps-content {
    max-width: 550px;
}

/* TAG */
.steps-section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.steps-section-tag p {
    margin: 0;
    color: var(--yellow);
    ;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.bars::before {
    width: 25px;
    height: 25px;
    background: url("../images/slash.png") no-repeat center;
    background-size: contain;
    content: "";
    position: relative;
    top: 4px;
    display: inline-block;
}

/* HEADING */
.steps-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 50px;
}

/* STEP LIST */
.step-list {
    display: flex;
    flex-direction: column;
    /* gap:25px; */
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* LEFT CIRCLE */
.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--yellow);
    ;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-red);
    ;
}

.step-circle img {
    width: 28px;
}

.step-circle:hover {
    animation: pulse;
    animation-duration: 0.8s;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(244, 0, 2, 0.4);
    background: var(--primary-red);
    ;
    cursor: pointer;
}

.active-step {
    background: var(--primary-red);
    ;
}

.step-connector {
    width: 1px;
    height: 60px;
    background: var(--primary-red);
    ;
}

/* TEXT */
.step-body h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.step-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 350px;
}

/* LAST STEP */
.step-item:last-child .step-connector {
    display: none;
}

/* SECTION */
.booking-section {
    padding: 3rem 0px;
    background: #fff;
}

.booking-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    background: #1f1f1f;
    min-height: 360px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 20px 60px;
}

/* Yellow angled background */
.booking-container::after {
    content: "";
    position: absolute;
    right: 180px;
    top: 0;
    width: 120px;
    height: 100%;
    background: #f7c933;
    transform: skewX(-10deg);
    z-index: 1;
}

/* Left ticket dots */
.ticket-edge {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    background:
        radial-gradient(circle at left,
            white 10px,
            transparent 11px);
    background-size: 25px 38px;
    z-index: 3;
}

.booking-form {
    width: 60%;
    position: relative;
    z-index: 5;
}

/* FORM */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 30px;
}

.input-box {
    position: relative;
}

.input-box input {
    width: 100%;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(247, 201, 51, 0.5);
    border-radius: 5px;
    color: #ffffff;
    padding: 0 45px 0 18px;
    outline: none;
    font-size: 15px;
}

.input-box span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f7c933;
    font-size: 18px;
}

/* Button */
.book-btn {
    margin-top: 28px;
    background: red;
    color: white;
    border: none;
    padding: 15px 50px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    cursor: pointer;
}

.book-btn span {
    position: absolute;
    right: -35px;
    top: 0;
    width: 30px;
    height: 100%;
    background: red;
    transform: skewX(-30deg);
}

/* Car */
.booking-car {
    position: relative;
    z-index: 5;
    width: 35%;
    text-align: right;
}

.booking-car img {
    max-width: 100%;
    width: 340px;
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 40px 0 0;
}

/* TRACK */
.testimonials-track {
    display: flex;
    padding: 20px 0;
    transition: transform .75s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    gap: 90px;
    /* use gap instead of margin-right */
}

/* EACH CARD WRAPPER */
.testimonials-frame-wrapper {
    position: relative;
    flex: 0 0 350px;
    transition: all .6s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: .55;
}

/* ACTIVE WRAPPER */
.testimonials-frame-wrapper.active {
    opacity: 1;
    z-index: 5;
}

/* =========================
   DECORATIVE FRAME
========================= */

.testimonials-frame-wrapper::before {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: -16px;
    height: 2px;
    background: #cbd5e1;
}

.testimonials-frame-wrapper::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: -16px;
    height: 2px;
    background: #cbd5e1;
}

.testimonials-v-line {
    position: absolute;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #cbd5e1;
}

.testimonials-left-line {
    left: -20px;
}

.testimonials-right-line {
    right: -20px;
}

/* CORNERS */
.testimonials-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 2;
}

.testimonials-corner::before,
.testimonials-corner::after {
    content: "";
    position: absolute;
    background: #94a3b8;
}

.testimonials-corner::before {
    width: 18px;
    height: 1.5px;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-corner::after {
    width: 1.5px;
    height: 18px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-top-left {
    top: -24px;
    left: -28px;
}

.testimonials-top-right {
    top: -24px;
    right: -28px;
}

.testimonials-bottom-left {
    bottom: -24px;
    left: -28px;
}

.testimonials-bottom-right {
    bottom: -24px;
    right: -28px;
}

/* =========================
   TESTIMONIAL CARD
========================= */

.testimonials-testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .03);
    opacity: .45;
    filter: blur(.6px);
    transition: all .5s ease;
    min-height: 250px;
}

/* ACTIVE CARD */
.testimonials-frame-wrapper.active .testimonials-testimonial-card {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 20px 35px rgba(0, 0, 0, .10);
    border-color: #cbdff2;
}

/* =========================
   TEXT
========================= */

.testimonials-quote {
    font-size: 17px;
    line-height: 1.6;
    color: #0f172a;
    margin-bottom: 24px;
}

.testimonials-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
}

.testimonials-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e7ff;
}

.testimonials-user span {
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 40px;
}

/* =========================
   DOTS
========================= */

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: .3s;
}

.dot.active-dot {
    width: 28px;
    border-radius: 20px;
    background: #3b82f6;
}

.car-banner img {
    width: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 220px;
}

.taxi-scene {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
}

/* TAXI */
.taxi-car {
    position: absolute;
    bottom: 0px;
    left: 50px;
    animation: taxiMove 4s ease-in-out infinite alternate;
}

/* move slightly toward passenger */
@keyframes taxiMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(120px);
    }
}

.taxi-car::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 45%;
    width: 900px;
    height: 120px;
    background: rgba(255, 220, 220, 0.18);
    clip-path: polygon(0 40%, 100% 0, 100% 100%);
    animation: beamPulse 2s ease-in-out;
}

@keyframes beamPulse {

    0%,
    100% {
        opacity: .15;
    }

    50% {
        opacity: .35;
    }
}

.waiting-person {
    position: absolute;
    right: 40px;
    bottom: 0px;
    width: 90px;
    animation: personWave 1.5s ease-in-out infinite;
}

@keyframes personWave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 60px 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    position: relative;
}

.footer-logo-icon img {
    max-width: 180px;
    height: auto;
}

.footer-col h4,
.footer-touch p {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
    ;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
}

.contact-icon img {
    width: 20px;
    height: 20px;
}

/* email box */
.email-input-wrap {
    display: flex;
    align-items: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
}

.email-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    padding: 14px;
}

.email-input-wrap button {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--primary-red);
    ;
    color: #fff;
    cursor: pointer;
}

.email-input-wrap button svg {
    width: 20px;
    height: 20px;
}

/* footer bottom */
.footer-bottom {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}


.running-taxi {
    overflow: hidden;
    /* position: absolute; */
    width: 100%;
    /*height: 100px;*/
    left: 0;
    bottom: 0;
    z-index: 2;
}

.running-taxi .taxi {
    background-image: url('../images/truck-1.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: running-anim;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
}

.running-taxi .taxi-2 {
    background-image: url('../images/truck-2.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite;
}

.running-taxi .taxi-3 {
    background-image: url('../images/truck-4.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 51px;
    right: 30%;
    bottom: -5px;
    animation: running-anim 35s linear infinite;
}

.footer-email-msg {
    margin-top: 10px;
    font-size: 13px;
    min-height: 18px;
    transition: color .2s;
    color: transparent;
}

.footer-email-msg.success {
    color: #00e676;
}

.footer-email-msg.error {
    color: #ff6b6b;
}

@-moz-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

.testimonial-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.booking-hero-content {
    position: absolute;
    left: 5%;
    color: #FDFDFD;
    z-index: 10;
    top: 35%;
    flex-direction: column;
    /*animation: booking-hero-contentEnter 1.5s ease-out forwards; */
}

.booking-hero-stars {
    display: flex;
    gap: 5px;
    /* space between stars */
    padding-top: 10px;
}

.booking-hero-stars img {
    width: 30px;
}

.booking-hero h1 {
    color: #fff;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    text-transform: capitalize;
}

.booking-hero p {
    color: #fff;
    font-size: clamp(14px, 2vw, 20px);
    margin-top: 8px;
    font-weight: 400;
}

.booking-hero-content h1 span {
    color: #ff0000;
    /* red for "Services" */
}

.booking-red-rectangle {
    position: absolute;
    right: 15%;
    top: -56px;
    width: 28vw;
    max-width: 430px;
    min-width: 180px;
    height: 340px;
    max-height: 340px;
    background-image: url(../images/service-rect.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.booking-hero-content {
    animation: fadeUp 0.9s ease 0.3s both;
}

/* Fade up from below */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

button a {
    color: #fff;
    text-decoration: none;
}

/* MAIN SECTION */
.ride-confirmed-section {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* BOX */
.confirmation-box {
    text-align: center;
    max-width: 700px;
    width: 100%;
    padding: 40px 20px;
}

/* ICON */
.success-icon {
    width: 100px;
    margin: 0 auto 30px;
}

.success-icon svg {
    width: 100%;
    height: auto;
}

/* TITLE */
.confirmation-box h2 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* SUBTEXT */
.confirmation-box p {
    font-size: 22px;
    color: #777;
    margin-bottom: 35px;
}

/* BUTTON */
.home-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.home-btn:hover {
    background: #d90000;
    color: #fff;
}

.btn {
    padding: 10px 26px;
}

/* SECTION */
.transport-section {
    width: 100%;
    padding: 60px 0%;
    /* background: #f5f5f5; */
}

/* ROW */
.transport-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}

/* TEXT */
.transport-text {
    flex: 1;
}

.transport-text h2 {
    color: #ff0000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.transport-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #222;
}

/* IMAGE */
.transport-image {
    flex: 1;
}

.transport-image img {
    width: 100%;
    border-radius: 25px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Reverse second row */
.transport-row.reverse {
    flex-direction: row;
}

.cta-band {
    background: #faba02;
    border-radius: 18px;
    margin: 3rem 0% 0;
    padding: 36px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.cta-band .sub {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    ;
    margin-bottom: 6px;
}

.cta-band h2 {
    color: #000;
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.3;
}

.cta-right {
    text-align: center
}

.cta-phone-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    ;
    margin-bottom: 4px
}

.cta-phone-num {
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
}

.info-item {
    background: #424242;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    fill: #faba02
}

.info-lbl {
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 3px
}

.info-val {
    font-size: 15px;
    font-weight: 500;
    color: #fff
}

.info-div {
    border: none;
    border-top: 1px solid #444;
    margin: 16px 0 14px
}


/* =========================
BOOKING FORM BOX
========================= */

.booking-form-box {
    max-width: 420px;
    background: #f8f8f8;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 35px;
    margin: auto;
}

.booking-form-box .booking-form {
    width: 100%;
}

/* Title */

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 30px;
}

/* Form */

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* Input Group */

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input[type="date"],
.input-group input[type="time"] {
    position: relative;
    cursor: pointer;
}

/* make full input clickable */
.input-group input[type="date"]::-webkit-calendar-picker-indicator,
.input-group input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* custom icon */
.input-group .icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.input-group input::placeholder {
    color: #888;
}

.input-group input:focus,
.input-group input:active {
    outline: none;
    box-shadow: none;
    border: 1px solid #d8d8d8;
    background: #e4e4e4;
}

input[type="date"]:focus,
input[type="time"]:focus {
    outline: none;
    box-shadow: none;
}

/* Date + Time */

.date-time-row {
    display: flex;
    gap: 15px;
}

.date-time-row .input-group {
    flex: 1;
}

/* Button */

.next-btn {
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background: #ff1200;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.next-btn:hover {
    background: #e60000;
}

.field {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.field input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Custom SVG Icon */
.icon {
    position: absolute;
    right: 15px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke: #f5a400;
    fill: none;
    stroke-width: 2;
}

/* =========================
CAR SECTION
========================= */

.car-selection-section {
    background: #f8f8f8;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 35px 10px;
    margin: auto;
    display: flex;
    flex: 1;
    height: 100%;
}

.car-section-title {
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* GRID */

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */

.car-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 22px;
    position: relative;
    transition: 0.3s;
}

.car-card:hover {
    transform: translateY(-5px);
}

/* RECOMMENDED TAG */

.recommended-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #f7b000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 20px 0 20px;
    font-size: 14px;
}

/* IMAGE */

.car-image {
    text-align: center;
    margin-top: 20px;
}

.car-image img {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
}

/* TITLE */

.car-card h3 {
    font-size: 20px;
    margin: 20px 0;
    color: var(--dark);
    ;
}

/* FEATURES */

.car-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.car-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #777;
    font-size: 14px;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: #888;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FOOTER */

.card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-btn {
    background: #ff1200;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.booking-bg-rect img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.next-btn a {
    color: #fff;
    text-decoration: none;
}

.explore-hero-stars img {
    width: 30px;
}


/* SECTION */
.summary-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

/* OUTER BOX */
.summary-box {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 30px;
}

.summary-box h2 {
    color: #ff0000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* FLEX */
.summary-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* LEFT */
.summary-details {
    width: 40%;
    background: #faf5f5;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.detail-item {
    margin-bottom: 18px;
}

.detail-item strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 4px;
}

.detail-item span {
    color: #666;
    font-size: 15px;
}

/* BUTTONS */
.summary-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.prev-btn {
    padding: 12px 24px;
    border: 1px solid #ff0000;
    background: #fff;
    color: #222;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.prev-btn a{
    color: #222;
}

.ride-btn {
    padding: 12px 24px;
    border: none;
    background: #ff0000;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* RIGHT */
.summary-map {
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
}

.summary-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}


/* SECTION */
.contact-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

/* MAIN WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* IMAGE */
.contact-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 220px;
    z-index: 2;
}

.contact-image img {
    width: 100%;
    display: block;
}

/* FORM BOX */
.contact-form-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-left: 150px;
    display: flex;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* LEFT FORM */
.form-left {
    flex: 1;
}

.form-left h2 {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 8px;
}

.form-left p {
    color: #555;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group label span {
    color: red;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

/* BUTTON */
.send-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

/* RIGHT CARD */
.contact-info-card {
    width: 280px;
    background: #1f1f1f;
    color: #fff;
    border-radius: 18px;
    padding: 25px;
}

.contact-info-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
}

.info-box {
    background: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.social-links {
    text-align: center;
    margin-top: 20px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.icons a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

#bookingForm .input-group,
#bookingForm .input-group input,
#bookingForm .input-group textarea {
    width: 100%;
    border: none;
    background: #e4e4e4;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    display: flex;
    align-items: center;
}

.car-card.active {
    border: 2px solid var(--yellow);
    background: #f2ebd6;
}
.car-card.active .select-btn {
    background: green;
    color: #fff;
}
.input-box input[type="date"]:-webkit-autofill,
.input-box input[type="time"]:-webkit-autofill,
.input-box input[type="date"]:-webkit-autofill:hover,
.input-box input[type="time"]:-webkit-autofill:hover,
.input-box input[type="date"]:-webkit-autofill:focus,
.input-box input[type="time"]:-webkit-autofill:focus,
/* Remove browser autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1f1f1f inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    border: 1px solid #c79a00 !important;
    transition: background-color 5000s ease-in-out 0s;
}

#bookingForm .input-box input[type="date"]:-webkit-autofill,
#bookingForm .input-box input[type="time"]:-webkit-autofill,
#bookingForm .input-box input[type="date"]:-webkit-autofill:hover,
#bookingForm .input-box input[type="time"]:-webkit-autofill:hover,
#bookingForm .input-box input[type="date"]:-webkit-autofill:focus,
#bookingForm .input-box input[type="time"]:-webkit-autofill:focus,
#bookingForm input:-webkit-autofill,
#bookingForm input:-webkit-autofill:hover,
#bookingForm input:-webkit-autofill:focus,
#bookingForm input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #e4e4e4 inset !important;
    -webkit-text-fill-color: #000 !important;
}
/* Normal focus */
.input-box input:focus {
    background: transparent !important;
    outline: none;
    box-shadow: none !important;
    color: #fff;
}

/* Remove browser outline */
input,
textarea,
select {
    outline: none !important;
    box-shadow: none !important;
}

/* common style */
.steps-image1 img,
.steps-image2 img {
    position: absolute;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* step1 image */
.steps-image1 img {
    z-index: 2;
    max-width: 290px;
    /* default front */
}

/* step2 image */
.steps-image2 img {
    left: 120px;
    position: relative;
    max-width: 290px;
    /* back */
}

/* active (front) */
/* animation keyframes */
@keyframes slideInLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* front image animation */
.active {
    z-index: 2 !important;
    animation: slideInLeft 0.6s ease;
}

/* back image */
.inactive {
    z-index: 1 !important;
    opacity: 0.9;
    transform: scale(0.95);
}

/* FRONT IMAGE */
.steps-image1 {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 2;
}

.steps-image1 img {
    width: 360px;
    border-radius: 18px;
}

/* RIGHT CONTENT */
.steps-content {
    max-width: 550px;
}

/* TAG */
.steps-section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.steps-section-tag p {
    margin: 0;
    color: #f7b500;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.counter {
    min-width: 80px;
    display: inline-block;
}

@media (min-width:1400px) {
    .booking-red-rectangle {
        right: 12%;
        top: -56px;
        height: 372px;
        max-height: 372px;
    }
}

@media (min-width:992px) and (max-width:1024px) {
    .booking-red-rectangle {
        right: 21%;
        top: -5.3rem;
        width: 26vw;
        min-width: 180px;
        height: 340px;
        max-height: 340px;
    }
}

@media (min-width:1025px) and (max-width:1100px) {
    .booking-red-rectangle {
        right: 19%;
        top: -75px;
        width: 25vw;
        overflow: hidden;
    }
}

@media (min-width:1100px) and (max-width:1239px) {
    .booking-red-rectangle {
        right: 18%;
        top: -57px;
        height: 308px;
    }
}
@media (max-width: 992px) {

    body,
    html {
        overflow-x: hidden;
        height: 100%;
    }

    /* =========================
       HEADER
    ========================== */

    .header-wrapper > nav:first-child {
        display: none;
    }

    .header-wrapper header {
        padding: 10px 0;
    }

    .header-wrapper .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    header,
    .header-wrapper,
    .container-fluid,
    .navbar {
        overflow: visible !important;
        position: static !important;
    }

    /* =========================
       NAVBAR
    ========================== */

    .navbar {
        padding: 12px 15px !important;
        min-height: 70px;
    }

    .navbar > .container-fluid,
    .navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
    }

    /* =========================
       LOGO
    ========================== */

    .logo {
        width: 150px;
        height: 55px;
        margin: 0 !important;
        top: 0;
        left: 0;
        position: relative;
        flex-shrink: 0;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
    }

    /* =========================
       MOBILE MENU
    ========================== */

    .navbar-collapse {
        position: fixed;
        inset: 0;
        width: 100%;
        min-height: 100vh;
        background: rgba(0, 0, 0, 0.96);
        z-index: 9999;
        padding: 90px 20px 30px;
        overflow-y: auto;

        transform: translateX(-100%);
        transition: transform 0.35s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    /* =========================
       NAV ITEMS
    ========================== */

    .navbar-nav {
        width: 100%;
        padding: 15px 10px;
        text-align: center;

        background: #111;
        background-image: none !important;
        border-radius: 15px;
        min-height: auto;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        margin: 8px 0 12px;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        font-size: 16px;
        padding: 12px 0 !important;
        margin: 0 !important;
    }

    /* =========================
       HAMBURGER
    ========================== */

    .navbar-toggler {
        margin-left: auto;
        padding: 6px 8px;
        border: none;
        background: transparent;
        box-shadow: none !important;
        position: relative;
        z-index: 10001;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    /* Hide hamburger when menu open */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        opacity: 0;
    }

    /* Close icon */
    .navbar-toggler[aria-expanded="true"]::after {
        content: "✕";
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        position: absolute;
        left: 8px;
        top: -2px;
        line-height: 1;
    }

    /* =========================
       BUTTON AREA
    ========================== */

    .ms-custom {
        width: 100%;
        margin: 15px auto 0 !important;
        margin-left: 0 !important;
        justify-content: center;
    }

    .custom-btn {
        width: 100%;
        max-width: 220px;
       /* display: block;*/
    }

    /* =========================
       TOP CONTACT BAR
    ========================== */

    .header-wrapper .nav {
        width: 100%;
        gap: 10px;
        justify-content: center !important;
    }

    .header-wrapper .nav-item {
        margin-right: 0 !important;
    }

    .nav-item .phone-number,
    .nav-item .email,
    .phone-number,
    .email {
        font-size: 13px !important;
        padding: 0 !important;
    }

    /* =========================
       HERO SECTION
    ========================== */

    .slide,
    .bg-img {
        height: 450px;
    }

    .slider-content {
        top: 33%;
        left: 40px;
        max-width: 420px;
    }

    .slider-content h1,
    .slider-content h2 {
        font-size: 48px;
    }

    .slider-content .desc {
        font-size: 18px;
    }

    .sub-title {
        font-size: 18px;
    }

    .road,
    .car-img,
    .services-center,
    .booking-car {
        display: none !important;
    }

    .road img {
        height: 450px;
    }

    .car-img img {
        width: 380px;
    }

    /* =========================
       SERVICES
    ========================== */

    .services-layout {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .services-left,
    .services-right {
        width: 100%;
        gap: 40px;
        align-items: center;
    }

    .services-center {
        width: 100%;
        order: -1;
    }

    .car-topdown img {
        width: 220px;
    }

    .service-item {
        justify-content: center;
        text-align: left;
        max-width: 500px;
    }

    .service-text h3 {
        font-size: 22px;
        white-space: normal;
    }

    .service-text p {
        font-size: 16px;
    }

    /* =========================
       BOOKING
    ========================== */

    .booking-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 25px;
    }

    .booking-container::after,
    .booking-red-rectangle {
        display: none;
    }

    .booking-form {
        width: 100%;
        position: relative;
        z-index: 5;

        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .booking-hero-content {
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .ticket-edge {
        display: none;
    }

    .booking-bg-rect img {
        vertical-align: middle;
        max-width: 100%;
        min-height: 210px;
        overflow: hidden;
    }

    /* =========================
       STATS
    ========================== */

    .stats-row {
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0 !important;
    }

    .stat-box {
        display: flex;
        flex-direction: row;
    }

    .stat-icon {
        width: 50%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    /* =========================
       TRANSPORT
    ========================== */

    .transport-row {
        gap: 30px;
        flex-direction: column;
    }

    .transport-row.reverse {
        flex-direction: column-reverse;
    }

    .transport-text h2 {
        font-size: 32px;
    }

    .transport-text p {
        font-size: 18px;
    }

    /* =========================
       CAR SECTION
    ========================== */

    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-selection-section {
        margin-top: 30px;
    }

    .car-section-title {
        font-size: 34px;
    }

    /* =========================
       SUMMARY
    ========================== */

    .summary-content {
        flex-direction: column;
    }

    .summary-details,
    .summary-map {
        width: 100%;
    }

    .summary-map {
        height: 400px;
    }

    /* =========================
       CONTACT
    ========================== */

    .contact-image {
        display: none;
    }

    .contact-form-box {
        margin-left: 0;
        flex-direction: column;
    }

    .contact-info-card {
        width: 100%;
    }

    /* =========================
       FOOTER
    ========================== */

    footer {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 50px 30px 70px;
    }

    .footer-logo-icon img {
        width: 220px;
        margin-left: 0;
        margin-top: 0;
    }

    .footer-touch {
        margin-right: 0;
    }

    .email-input-wrap {
        max-width: 100%;
    }

    .footer-col h4 {
        font-size: 22px;
    }

    .footer-col ul li,
    .contact-item span,
    .footer-touch p {
        font-size: 15px;
    }

    .running-taxi .taxi,
    .running-taxi .taxi-2,
    .running-taxi .taxi-3 {
        width: 80px;
        height: 35px;
    }

    /* =========================
       MISC
    ========================== */

    .mt-n2 {
        margin-top: 0 !important;
    }
    
    .navbar-toggler-icon {
    filter: invert(18%) sepia(95%) saturate(7487%) hue-rotate(1deg) brightness(97%) contrast(118%);
}
 .counter-box,
  .stats-box,
  .about-counter,
  .counter-item {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .counter-box h3,
  .stats-box h3,
  .about-counter h3,
  .counter-item h3 {
    font-size: 22px;
    line-height: 1.2;
    display: block;
  }

  .counter-box p,
  .stats-box p,
  .about-counter p,
  .counter-item p {
    font-size: 12px;
  }

  .counter-wrapper,
  .stats-wrapper,
  .counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .navbar-collapse {
    text-align: center;
    padding-bottom: 20px;
  }

  .ms-custom {
    display: block;
    margin: 20px auto 0 auto !important;
  }

}

@media (max-width:768px) {
    body {
        overflow-x: hidden;
    }

    .testimonial-section {
        padding: 40px 15px;
        overflow: hidden;
    }

    .testimonials-slider {
        width: 100%;
        overflow: hidden;
        padding: 20px 0;
    }

    .testimonials-track {
        gap: 0 !important;
        padding: 0 !important;
    }

    /* ONE CARD ONLY */
    .testimonials-frame-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        padding: 0 20px;
        /* opacity:0; */
        transform: scale(.9);
    }

    /* ACTIVE CARD ONLY VISIBLE */
    .testimonials-frame-wrapper.active {
        opacity: 1 !important;
        transform: scale(1);
    }

    /* CARD */
    .testimonials-testimonial-card {
        width: 100%;
        min-height: auto;
        padding: 22px;
        border-radius: 20px;
        filter: none;
    }

    /* HIDE decorative lines on mobile */
    .testimonials-v-line,
    .testimonials-corner,
    .testimonials-frame-wrapper::before,
    .testimonials-frame-wrapper::after {
        display: none;
    }

    .testimonials-quote {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .testimonials-user img {
        width: 42px;
        height: 42px;
    }

    .testimonials-user span {
        font-size: 14px;
        padding: 5px 10px;
    }

    .testimonials-frame-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 15px;
        opacity: 1 !important;
        /* FIX */
        transform: none !important;
    }

    .testimonials-testimonial-card {
        width: 100%;
        padding: 20px;
        min-height: auto;
        filter: none;
        opacity: 1 !important;
    }

    .testimonials-v-line,
    .testimonials-corner,
    .testimonials-frame-wrapper::before,
    .testimonials-frame-wrapper::after {
        display: none;
    }

    .testimonials-testimonial-card {
        overflow: hidden;
    }

    .testimonials-quote {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .testimonials-user span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
        display: inline-block;
    }

    .testimonials-frame-wrapper {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin-right: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box;
    }

    .testimonials-testimonial-card {
        width: 100% !important;
        margin: 0 !important;
    }

    .testimonials-frame-wrapper.active .testimonials-testimonial-card {
        box-shadow: none !important;
    }


    .slide {
        height: 600px;
    }

    .bg-img {
        height: 600px;
    }

    /* center content */
    .slider-content {
        left: 20px;
        right: 20px;
        top: 80px;
        transform: none;
        max-width: 100%;
        text-align: center;
        z-index: 20;
    }

    .sub-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .slider-content h1,
    .slider-content h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .slider-content .desc {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .slider-content .btn {
        font-size: 16px;
        padding: 10px 22px;
    }

    /* move car below text */
    .car-img {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }

    .car-img img {
        width: 280px;
    }

    /* road strip */
    .road {
        right: 50%;
        transform: translateX(50%);
        width: 120px;
    }

    .road img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    /* arrows smaller */
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    .slick-prev::before,
    .slick-next::before {
        font-size: 22px;
    }

    /* dots */
    .slick-dots {
        bottom: 10px;
    }

    .slick-dots button {
        width: 10px;
        height: 10px;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px 80px;
    }

    .footer-logo-col {
        display: flex;
        justify-content: center;
    }

    .footer-logo-icon img {
        width: 180px;
        margin: 0 auto;
        display: block;
    }

    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-col ul {
        padding: 0;
    }

    .footer-col ul li {
        font-size: 15px;
        line-height: 2;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-item span {
        font-size: 14px;
    }

    .footer-touch {
        margin-right: 0;
    }

    .footer-touch p {
        font-size: 15px;
    }

    .email-input-wrap {
        max-width: 100%;
        height: 50px;
        margin: auto;
    }

    .email-input-wrap input {
        font-size: 14px;
    }

    .email-input-wrap button {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 14px;
    }

    .running-taxi {
        height: 50px;
    }

    .running-taxi .taxi,
    .running-taxi .taxi-2,
    .running-taxi .taxi-3 {
        width: 60px;
        height: 28px;
        bottom: 5px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 3rem 20px;
    }

    .steps-wrapper {
        min-height: 280px;
        width: 100%;
        order: 1;
    }

    .steps-image1 {
        top: 30px;
        left: 20px;
    }

    .steps-image1 img {
        position: relative;
        left: 4rem;
    }

    .steps-image2 img {
        left: -1rem;
    }

    .steps-image1 img,
    .steps-image2 img {
        max-width: 220px;
        width: 100%;
    }

    /* CONTENT */
    .steps-content {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        order: 2;
        text-align: center;
        margin-top: 2rem;
    }

    .steps-section-tag {
        margin-bottom: 15px;
        text-align: center;
        justify-content: center;
    }

    .steps-section-tag p {
        font-size: 22px;
    }

    .steps-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
        line-height: 1.3;
        text-align: center;
    }

    /* STEP ITEMS */
    .step-item {
        gap: 15px;
    }

    .step-circle {
        width: 50px;
        height: 50px;
    }

    .step-circle img {
        width: 20px;
    }

    .step-connector {
        height: 40px;
    }

    .step-body h4 {
        font-size: 18px;
        text-align: left;
    }

    .step-body p {
        font-size: 14px;
        max-width: 100%;
        text-align: left;
    }

    .slider-content {
        top: 33%;
    }

    .about-Services {
        padding: 60px 20px;
    }

    .services-layout {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 5rem;
    }

    .services-left,
    .services-right {
        width: 100%;
        gap: 25px;
    }

    .services-center {
        width: 100%;
    }

    .car-topdown img {
        width: 180px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .service-icon img {
        width: 50px;
    }

    .service-text h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .service-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .booking-red-rectangle {
        right: 0;
        width: 150px;
        height: 180px;
        top: -20px;
        opacity: 0.9;
    }

    .road,
    .car-img,
    .services-center,
    .nav {
        display: none !important;
    }

    .success-icon {
        width: 80px;
    }

    .confirmation-box h2 {
        font-size: 22px;
    }

    .confirmation-box p {
        font-size: 18px;
    }

    .home-btn {
        padding: 12px 35px;
        font-size: 16px;
    }

    .confirmation-box {
        padding: 20px 10px;
    }

    .success-icon {
        width: 70px;
        margin-bottom: 20px;
    }

    .confirmation-box h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .confirmation-box p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .home-btn {
        width: 120px;
        padding: 12px 0;
        font-size: 15px;
    }

    .transport-text {
        text-align: center;
    }

    .transport-text h2 {
        font-size: 28px;
    }

    .transport-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .transport-image img {
        border-radius: 18px;
    }

    .booking-form-box {
        max-width: 100%;
        padding: 25px;
        border-radius: 25px;
    }

    .form-title {
        font-size: 24px;
    }

    .input-group input {
        height: 52px;
        font-size: 15px;
    }

    .next-btn {
        font-size: 20px;
        height: 52px;
    }

    .car-grid {
        grid-template-columns: 1fr;
    }

    .car-section-title {
        font-size: 28px;
        text-align: center;
    }

    .car-card {
        padding: 18px;
    }

    .car-card h3 {
        font-size: 24px;
    }

    .price {
        font-size: 20px;
    }

    .select-btn {
        padding: 8px 20px;
        font-size: 16px;
    }

}


@media (max-width:576px) {
    .summary-box {
        padding: 20px;
    }

    .summary-box h2 {
        font-size: 28px;
    }

    .summary-details {
        padding: 20px;
    }

    .summary-buttons {
        flex-direction: column;
    }

    .prev-btn,
    .ride-btn {
        width: 100%;
    }

    .summary-map {
        height: 300px;
    }

    .contact-form-box {
        padding: 25px;
    }

    .form-left h2 {
        font-size: 22px;
    }

    .send-btn {
        width: 100%;
    }

}


@media (max-width:480px) {
    body {
        overflow-x: hidden;
    }

    .slide {
        height: 550px;
    }

    .bg-img {
        height: 550px;
    }

    .slider-content h1,
    .slider-content h2 {
        font-size: 28px;
    }

    .slider-content .desc {
        font-size: 14px;
    }

    .car-img img {
        width: 230px;
    }

    .road img {
        height: 550px;
    }

    footer {
        padding: 35px 15px 70px;
    }

    .footer-logo-icon img {
        width: 150px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col ul li {
        font-size: 14px;
    }

    .contact-item span {
        font-size: 13px;
    }

    .email-input-wrap {
        height: 46px;
        padding-left: 15px;
    }

    .email-input-wrap button {
        width: 36px;
        height: 36px;
    }

    .running-taxi .taxi,
    .running-taxi .taxi-2,
    .running-taxi .taxi-3 {
        width: 50px;
    }

    .slider-content {
        top: 30%;
    }

    .road,
    .car-img,
    .services-center {
        display: none !important;
    }

    .booking-form-box {
        padding: 20px;
        border-radius: 22px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .date-time-row {
        flex-direction: column;
        gap: 15px;
    }

    .input-group input {
        height: 50px;
        font-size: 14px;
    }

    .next-btn {
        width: 100%;
        height: 50px;
        font-size: 18px;
    }
}



/* Hide default date icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 15px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* Hide default time icon */
input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 15px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* Important */
.input-box {
    position: relative;
}

.input-box input[type="date"],
.input-box input[type="time"] {
    position: relative;
    z-index: 2;
    background: transparent;    
}


.btn {
    position: relative;
    padding: 10px 26px;
    border-radius: 0;
    /* smooth effect */
    transition: all 0.3s ease;
    /* shadow like bootstrap button */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    /* yellow bottom line */
    border-bottom: 4px solid var(--yellow);
    ;
}

/* Black animated line */
.btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    /* same exact position */
    width: 100%;
    height: 2px;
    background: var(--yellow);
    ;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 0.35rem;

}

/* Hover */
.btn:hover::after {
    transform: scaleX(1);
    border-radius: 0.35rem;

}

.book-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    border-radius: 0.35rem;
}

.book-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

