* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f4f6f9;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Header */

.header{
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #1a1a1a;
}

.nav a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav a:hover {
    color: #1a1a1a;
}

.btn-book {
    display: block;
    background: #1a1a1a;
    text-decoration: none;
    color: #fff;
    padding: 8px 30px;
    margin-left: 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content h1 strong {
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Booking Form */
.booking-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}
.quotesForm{
    margin-bottom: 20px;
}

.inputListLoaderInner{
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: text-bottom;
    border: 2px solid #000;
    border-right-color: #fff0;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}
@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
.formWrapper .fields span{
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1;
}
.formWrapper .fieldsParent span.error-msg{
    color: red;
    margin-top: 5px;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
}
.formWrapper .fields input,
.formWrapper .fields select{
    border: 1px solid #d1d9e6;
    height: 50px;
    display: block;
    padding: 0 10px;
    border-radius: 10px;
    background: #fff;
    margin: 0;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    transition: all .3s ease;
}
.formWrapper .fields input:focus{
    border-radius: 10px 10px 0 0;
    outline: none;
}
.formWrapper .fields input.field-error{
    border-color: red;
}
.formWrapper #via-list .fieldsParent{
    margin-bottom: 20px;
    position: relative;
}
.formWrapper #via-list .fieldsParent .removeViaBtn{
    width: 18px;
    height: 18px;
    padding: 0;
    background: #292f3b;
    border: 1px solid #fff;
    outline: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -6px;
    top: 10px;
    transform: rotate(45deg);
    z-index: 99;
}
.formWrapper #via-list .fieldsParent .removeViaBtn img{
    width: 10px;
    height: 10px;
    filter: brightness(0) invert(1);
}
.formWrapper .addViaBtn .fields{
    display: flex;
    justify-content: center;
    align-items: center;
}
.formWrapper .addReturn{
    background-color: #1a1a1a;
    border: none;
    border-radius: 50%;
    outline: none;
    display: block;
    width: 18px;
    height: 18px;
    margin: 17px 5px 0 auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: inherit;
}
.formWrapper .addReturn:first-child{
    margin-right: 0;
}
.formWrapper .addReturn:last-child{
    background-color: transparent;
    border-radius: 0;
}
.formWrapper .addReturn img{
    width: 10px;
    height: 10px;
    filter: brightness(0) invert(1);
}
.formWrapper .addReturn:last-child img{
    width: 18px;
    height: 18px;
    filter: brightness(0);
}
.formWrapper .addReturn span{
    margin-bottom: 0;
    display: none;
}
.formWrapper #getQuote,
.formWrapper #updateBtn{
    background-color: #1a1a1a;
    height: 50px;
    padding: 0;
    margin: 20px 0 0;
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-animation: 1s linear infinite call-btn-background;
    animation: 1s linear infinite call-btn-background;
}
.formWrapper #getQuote .inputListLoaderInner{
    border: 2px solid #fff;
    border-right-color: transparent;
}
.formWrapper #getQuote #quoteBtnLoader{
    display: none;
}

.form-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height:1.5;
    text-transform: uppercase;
}
#progressBarForm{
    display: none;
}

.cusFormFieldsWrapper{
    display: flex;
    margin: 0 -5px;
    margin-top: 15px;
}

.fieldsParent.half{
    width: 50%;
    padding: 0 5px;
}
.fieldsParent.passengers{
    margin-top: 15px;
}
.fieldIconsWrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.passengersWrap button {
    background-color: #1a1a1a;
    border: 0;
    outline: 0;
    border-radius: 5px;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.passengersWrap button img {
    width: 12px;
    height: 12px;
}
.passengersWrap input {
    flex: 1 0 0%;
    margin: 0 4px 0 4px !important;
    text-align: center !important;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Services Section */
.services {
    padding: 50px 8%;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: #999;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #e8e8e8;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Fleet Section */
.fleet {
    padding: 50px 8%;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.fleet-card {
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.fleet-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.fleet-image img{
    width: 100%;
}

.fleet-info {
    padding: 35px;
}

.fleet-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.fleet-details {
    color: #999;
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.fleet-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-badge {
    font-size: 13px;
    color: #666;
}

.fleet-price {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -1px;
}

.fleet-price span {
    font-size: 14px;
    color: #999;
}

.fleet .swiper{
    padding-bottom: 45px;
}
.swiper-pagination-bullet-active{
    background-color: #1a1a1a;
}

.navSlideBtnsWrap{
    display: flex;
    justify-content: end;
    gap: 15px;
    margin-bottom: 20px;
}

.swiper-button-cus{
    position: static !important;
    margin: 0 !important;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
    color: #fff;
}

/* Experience Section */
.experience {
    padding: 50px 8%;
    background: #1a1a1a;
    color: #ffffff;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.experience-text h2 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.experience-text p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.exp-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.exp-feature h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.exp-feature p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 50px 8%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: #fafafa;
    padding: 45px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: #f5f5f5;
}

.stars {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #e8e8e8;
    border-radius: 50%;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #999;
}

/* Footer */
.footer {
    background: #fafafa;
    padding: 80px 8% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.footer-section a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #e8e8e8;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
    opacity: 0.6;
}

/*  */

.progressBar{
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 45px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.progressBar .straightLine{
    background: rgba(0 0 0 / 20%);
    flex: 1 0 0;
    height: 2px;
}
.progressBar .straightLine.active{
    background: #1a1a1a;
}
.progressBar .roundDivWrap{
    position: relative;
}
.progressBar .roundDivWrap .heading{
    position: absolute;
    top: -26px;
    left: -15px;
    color: #111827;
    font-weight: 500;
}
.progressBar .roundDivWrap2 .heading{
    left: -26px;
}
.progressBar .roundDivWrap3 .heading{
    left: -22px;
}
.progressBar .roundDiv{
    border: 3px solid rgba(0 0 0 / 20%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.progressBar .roundDiv.active{
    border-color: #1a1a1a;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, .3), 0 4px 6px -4px rgba(37, 99, 235, .3);
}
.progressBar .roundDiv span{
    width: 12px;
    height: 12px;
    display: block;
    background: rgba(0 0 0 / 20%);
    border-radius: 50%;
}
.progressBar .roundDiv.active span{
    background: #1a1a1a;
}
.customAlert{
    background: #ff180012;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ff180030;
    color: #ff1800;
    font-weight: 600;
}
.chooseVHeading{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}
.journeyDetails .chooseVHeading{
    font-size: 20px;
}
.fleetCardsWrap{
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 -10px; */
}
.fleetCardsWrap .fleetCardsInner{
    width: 50%;
    padding: 0 10px;
}
.fleetCardsWrap .fleetCards{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: 2px solid transparent;
    padding: 20px 15px;
    margin-bottom: 35px;
    z-index: 1;
    transition: all 0.3s ease;
}
.fleetCardsWrap .fleetCards:hover{
    transform: scale(1.02);
    background-color: transparent;
    border-color: #1a1a1a;
}
.fleetCardsWrap .fleetCards .fleetImg img{
    width: 100px;
    margin-right: 5px;
    transition: all 0.3s ease;
}
.fleetCardsWrap .fleetCards:hover .fleetImg img{
    transform: scale(1.1);
}
.fleetCardsWrap .fleetCards .fleetDetails{
    flex: 1 0 0;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading h2{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge{
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    color: #fff;
    display: block;
    line-height: 16px;
    padding: 4px 12px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge.green{
    background-color: rgb(16 185 129 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge.orange{
    background-color: rgb(249 115 22 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge.purple{
    background-color: rgb(147 51 234 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap{
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap .boxes{
    background: rgb(243 244 246 / 1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(75 85 99 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap .boxes svg{
    width: 16px;
    height: 16px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetDescription p{
    font-size: 12px;
    font-weight: 500;
    color: rgb(107 114 128 / 1);
    margin-bottom: 0;
    margin-right: 10px;
}
/* .fleetCardsWrap .fleetCards .fleetPrice{
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 15px;
} */
.fleetCardsWrap .fleetCards .fleetPrice button{
    position: relative;
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    color: #fff;
}
.fleetCardsWrap .fleetCards .fleetPrice button .corner-ribbon{
    position: absolute;
    top: -11px;
    left: 28px;
    background: #ff1800;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 5px;
    text-transform: uppercase;
    line-height: 1.3;
    border-radius: 0px 3px 3px 3px;
}
.fleetCardsWrap .fleetCards .fleetPrice button .corner-ribbon:after{
    position: absolute;
    top: 1px;
    left: -9px;
    content: "";
    width: 11px;
    height: 20px;
    background: #af2517;
    z-index: -1;
    transform: rotate(45deg);
}
.fleetCardsWrap .fleetCards .fleetPrice button span:first-child{
    font-size: 14px;
    font-weight: 500;
}
.fleetCardsWrap .fleetCards .fleetPrice button span:last-child{
    font-weight: 700;
    font-size: 20px;
}
.mainContent .journeyDetails{
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 24px;
    transition: all 0.3s ease;
}
.mainContent .journeyDetails:first-child{
    margin-bottom: 30px;
}
.pickDropWrap{
    display: flex;
    gap: 10px;
}
.pickDropWrap .contentBox{
    margin-bottom: 25px;
}
.viaContentBox{
    position: relative;
}
.viaContentBox:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
    width: 14px;
    height: 14px;
    background: url(images/plus.svg) center center/cover no-repeat;
}
.pickDropWrap .contentBox:last-child{
    margin-bottom: 0;
}
.pickDropWrap .contentBox span{
    font-size: 14px;
    font-weight: 400;
}
.pickDropWrap .contentBox h2{
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0;
}
.journeyDetails .verticalDesign{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 17px 0px 12px;
}
.journeyDetails .verticalDesign:after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #1a1a1a;
}
.journeyDetails .verticalDesign span{
    width: 13px;
    height: 13px;
    background: #1a1a1a;
    border-radius: 50%;
}
.moreJourneyInfo{
    background-color: rgb(243 244 246 / 1);
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}
.moreJourneyInfo .boxes{
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.moreJourneyInfo .boxes:nth-child(3),
.moreJourneyInfo .boxes:nth-child(4){
    margin-bottom: 0;
}
.moreJourneyInfo .boxes .icon{
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
}
.moreJourneyInfo .boxes .icon svg{
    width: 20px;
    height: 20px;
    color: #1a1a1a;
}
.moreJourneyInfo .boxes .txt span{
    font-size: 14px;
    font-weight: 500;
}
.cardStyleWrap{
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.formWrapper #returnJouneyDetails{
    position: relative;
    display: flex;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.formWrapper #returnJouneyDetails.active{
    max-height: 300px;
    overflow: visible;
    opacity: 1;
}
.formWrapper #returnJouneyDetails .closeReturnJourney{
    transform: rotate(45deg);
    position: absolute;
    background: transparent;
    display: block;
    border: none;
    top: -8px;
    right: -2px;
    padding: 0;
    height: 22px;
    width: 22px;
}
.formWrapper #returnJouneyDetails .closeReturnJourney img{
    width: 22px;
    height: 22px;
    display: block;
}
.formWrapper #visListWrapper{
    width: 100%;
}
/* form css end */

.cardStyleWrapForm{
    /* max-height: 0; */
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    transition: opacity 0.5s ease;
}
.cardStyleWrapForm.closed{
    height: 84px;
    opacity: 1;
    visibility: visible;
    position: relative;
    padding: 24px;
    margin-bottom: 20px;
}
.cardStyleWrapForm.closed .formWrapper{
    position: absolute;
    left: 0;
    bottom: -51px;
}
.cardStyleWrapForm.closed .formWrapper .fieldsWrap .fieldsParent.passengerWrap{
    order: 1;
    padding: 0px 24px;
}
.cardStyleWrapForm.returnJouneyAdded{
    position: relative;
    height: 168px;
    max-height: 100%;
    opacity: 1;
}
.cusFormCloseBtn{
    padding: 0;
    width: 35px;
    height: 35px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 50%;
    outline: none;
    transform: rotate(45deg);
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #1a1a1a;
    display: none;
}
.cusFormCloseBtn img{
    width: 22px;
    filter: brightness(0) invert(1);
}
.booking-card.closed{
    display: none;
}
.booking-card.active .cusFormCloseBtn{
    display: block;
}
.cardStyleWrapForm.returnJouneyAdded .formWrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    z-index: 99;
}
.cardStyleWrapForm.returnJouneyAdded .formWrapper #returnJouneyDetails{
    order: 1;
    margin-top: 10px;
}
.cardStyleWrapForm.active{
    height: auto;
    opacity: 1;
    overflow: visible;
    padding: 24px;
    margin-bottom: 20px;
    transition: opacity 0.8s ease;
}
.formToggleBtnWrap{
    display: flex;
    gap: 20px;
}
.formToggleBtnWrap button{
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    border-radius: 8px;
    height: 45px;
    padding: 0 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
.formToggleBtnWrap button svg{
    width: 20px;
    height: 20px;
}
.formToggleBtnWrap button span{
    display: block;
    flex: 1 0 0;
}
.journeyDetailsReturn{
    display: none;
}
.journeyDetailsReturn.active{
    display: block;
}
.passengerInfo .fieldsWrap .fieldsParent{
    position: relative;
    margin-bottom: 15px;
}
.passengerInfo .fieldsWrap .fieldsLabel{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}
.passengerInfo .fieldsWrap .totalFare .fieldsLabel{
    font-weight: 800;
    font-size: 28px;
}
.passengerInfo .fieldsWrap input,
.passengerInfo .fieldsWrap select{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    border: none;
    background-color: #f3f4f6;
    border-radius: 8px;
    height: 50px;
    padding: 0 15px;
    width: 100%;
}
.passengerInfo .fieldsWrap input#phone{
    padding-left: 45px;
}
.iti{
    width: 100%;
}
.iti__search-input{
    border: none !important;
    background: #fff !important;
    height: 30px !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(0 0 0 / 20%) !important;
}
.visual-placeholder {
    position: absolute;
    top: 42px;
    left: 82px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
    padding: 0;
    white-space: nowrap;
}
.visual-placeholder.hidden {
    display: none;
}
.passengerInfo .bookNowBtnWrap button{
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    outline: none;
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
}
#via-list{
    width: 100%;
}
#via-list .fieldsParent{
    position: relative;
    margin-top: 8px;
}
.removeViaBtn{
    transform: rotate(45deg);
    position: absolute;
    background: transparent;
    display: block;
    border: none;
    top: -9px;
    right: -4px;
    padding: 0;
    height: 22px;
    width: 22px;
}
.removeViaBtn img{
    width: 22px;
    height: 22px;
    display: block;
}
.bankDetailsWrap{
    display: none;
    background: #f3f4f6;
    border-radius: 24px;
    padding: 25px 15px;
    margin-bottom: 30px;
}
.bankDetailsWrap.active{
    display: block;
}
.bankDetailsWrap h2{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}
.bankDetailsWrap .boxes{
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 20px;
}
.bankDetailsWrap .boxes:last-child{
    margin-bottom: 0;
}
.bankDetailsWrap .boxes .txt span{
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0 0 0 / 70%);
}
.bankDetailsWrap .boxes .txt .copyTxtWrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bankDetailsWrap .boxes .txt .copyTxtWrap span{
    font-weight: 600;
    font-size: 16px;
    color: #000;
}
.bankDetailsWrap .boxes .txt .copyTxtWrap button{
    background-color: #1a1a1a;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #fff;
    display: block;
    padding: 6px 12px;
    display: flex;
    align-items: center;
}
.bankDetailsWrap .boxes .txt .copyTxtWrap button span{
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 12px;
}
.passengerInfo .dateTimeWrap{
    display: flex;
    gap: 10px;
}
.passengerInfo .dateTimeWrap .fieldsParent{
    width: 100%;
}
.cardsImgsWrap{
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.cardsImgsWrap{
    width: 40px;
}
.paymentGateway .cardsImgsWrap{
    width: auto;
}
.paymentGateway .cardsImgsWrap img{
    width: 30px;
}
.paymentGateway h2{
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.paymentGateway h2 svg{
    width: 35px;
    height: 35px;
}
.secureBadge{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 13px;
    color: #166534;
    border: 1px solid #bbf7d0;
    margin-top: 20px;
}
.bankDetailsWrap .boxes.fileInp .txt span{
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
}
.fileInp input{
    box-shadow: none !important;
    outline: none !important;
    margin: 10px 0 8px;
}
.bookingConfimationWrap .cardStyleWrap{
    padding-top: 0;
}
.booking-id{
    background: #1a1a1a;
    margin: 0 -24px 10px;
    padding: 18px 20px;
    border-radius: 24px 24px 0 0;
    text-align: center;
}
.booking-id span{
    color: #fff;
    font-size: 14px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.booking-id h2{
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

/* .animatedSvg {
  opacity: 0;
  animation: show 0s linear forwards;
  animation-delay: 1s;
}

@keyframes show {
  to { opacity: 1; }
}

.animatedSvg .bg {
  fill: #e6f9ee;
  stroke: #16a34a;
  stroke-width: 4;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  animation: pop 600ms cubic-bezier(.2,.9,.3,1) forwards;
  animation-delay: 1s;
}

.animatedSvg .check {
  fill: none;
  stroke: #0f9d4a;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 500ms ease forwards;
  animation-delay: 1.2s;
}

@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.animatedSvg .shadow {
  fill: none;
  stroke: rgba(0,0,0,0.06);
  stroke-width: 8;
  transform: translate(0,4);
  opacity: 0.9;
  filter: blur(0.3px);
} */
.success-icon {
    text-align: center;
    margin-bottom: 30px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    margin-bottom: 20px;
}

.success-icon-circle svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-title {
    color: #212529;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-subtitle {
    color: #212529;
    font-size: 18px;
}
.bookingConfimationWrap .journeyDetails{
    box-shadow: none;
    padding: 20px;
    background: #f3f4f6;
    margin-top: 20px;
}
.bookingConfimationWrap .journeyDetails.customerDetails{
    margin-top: 0px;
    background: #f3f4f6;
}
.bookingConfimationWrap .journeyDetails.customerDetails .headingWrap h2{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.bookingConfimationWrap .journeyDetails.customerDetails .headingWrap h2 svg{
    width: 25px;
    height: 25px;
    color: #1a1a1a;
}
.bookingConfimationWrap .journeyDetails.customerDetails .headingWrap h2 span{
    display: block;
    font-size: 20px;
    font-weight: 700;
}
.bookingConfimationWrap .journeyDetails.customerDetails .dtlsWrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.bookingConfimationWrap .journeyDetails.customerDetails .dtlsWrap .boxesParent{
    padding: 0 10px;
    width: 50%;
}
.bookingConfimationWrap .journeyDetails.customerDetails .dtlsWrap .boxesParent .cusLbl{
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.bookingConfimationWrap .journeyDetails.customerDetails .dtlsWrap .boxesParent .custDtls{
    font-size: 16px;
    font-weight: 600;
}
.bookingConfimationWrap .journeyDetails.paymntDtls{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes:first-child{
    display: flex;
    align-items: center;
    gap: 15px;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes .iconWrap{
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes .iconWrap svg{
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes span{
    text-transform: uppercase;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes h2{
    font-size: 18px;
    font-weight: 700;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes:last-child{
    text-align: right;
}
.bookingConfimationWrap .journeyDetails.paymntDtls .boxes:last-child h2{
    font-size: 32px;
    margin-bottom: 0;
}
.bookingConfimationWrap .btnsWrap{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.bookingConfimationWrap .btnsWrap button{
    background-color: #1a1a1a;
    border-radius: 8px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #1a1a1a;
    outline: none;
}
.bookingConfimationWrap .btnsWrap button:last-child{
    background-color: transparent;
    color: #1a1a1a;
}
.bookingConfimationWrap .btnsWrap button svg{
    width: 20px;
    height: 20px;
}
.bookingConfimationWrap .moreJouneyDetailsWrap{
    margin: 20px -10px 0;
    display: flex;flex-wrap: wrap;
}
.bookingConfimationWrap .moreJouneyDetailsWrap .boxesWrap{
    width: 50%;
    padding: 0 10px;
}
.bookingConfimationWrap .moreJouneyDetailsWrap .boxes{
    display: flex;
    gap: 15px;
    background-color: rgb(243 244 246 / 1);
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.bookingConfimationWrap .moreJouneyDetailsWrap .boxes .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.bookingConfimationWrap .moreJouneyDetailsWrap .boxes .icon svg{
    width: 18px;
    height: 18px;
}
.bookingConfimationWrap .moreJouneyDetailsWrap .boxes .txt span.top{
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.bookingConfimationWrap .moreJouneyDetailsWrap .boxes .txt span.bottom{
    font-weight: 700;
    color: #000;
}
#submitBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.successBoxWrap{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0 0 0 / 25%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    /* transition: all 300ms ease; */
}
.successBoxWrap.active{
    opacity: 1;
    visibility: visible;
}
.successBoxWrap .successBox{
    text-align: center;
    background: #fff;
    border-radius: 15px;
    margin: 0 15px;
    padding: 20px 15px;
}
.successBoxWrap.active .successBox{
    animation: bounceIn 0.5s ease-out;
}
.successBoxWrap .success-icon-circle{
    width: 70px;
    height: 70px;
}
.successBoxWrap .success-icon-circle svg{
    width: 30px;
    height: 30px;
}
.successBoxWrap h2{
    font-weight: 700;
    font-size: 22px;
}
.successBoxWrap button{
    background-color: #1a1a1a !important;
    color: #fff !important;
    font-weight: 600;
    width: 100px;
}

.upload-section {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
}
.upload-section .section-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.upload-section .section-title svg{
    width: 20px;
    height: 20px;
    color: #1a1a1a;
}

.upload-box {
    background: white;
    border: 3px dashed #93c5fd;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upload-box:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.upload-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
}

.upload-text {
    font-size: 18px;
    color: #1f2937;
    font-weight: 600;
}

.upload-subtext {
    font-size: 14px;
    color: #6b7280;
}

.upload-preview {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.upload-preview img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.preview-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-remove {
    background: rgba(239, 68, 68, 0.95);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-remove svg {
    width: 16px;
    height: 16px;
}

.btn-remove:hover {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.05);
}


.fleetCardsWrap .fleetCards{
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: 2px solid transparent;
    padding: 24px;
    margin-bottom: 35px;
    width: 100%;
    transition: all 0.3s ease;
}
.fleetCardsWrap .fleetCards:hover{
    transform: scale(1.02);
    background-color: transparent;
    border-color: #1a1a1a;
}
.fleetCardsWrap .fleetCards .fleetImg{
    max-width: 120px;
}
.fleetCardsWrap .fleetCards .fleetImg img{
    width: 120px;
    transition: all 0.3s ease;
}
.fleetCardsWrap .fleetCards:hover .fleetImg img{
    transform: scale(1.1);
}
.fleetCardsWrap .fleetCards .fleetDetails{
    flex: 1 0 0;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading h2{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge{
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    color: #fff;
    display: block;
    line-height: 16px;
    padding: 4px 12px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge.green{
    background-color: rgb(16 185 129 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge.orange{
    background-color: rgb(249 115 22 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge.purple{
    background-color: rgb(147 51 234 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap{
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap .boxes{
    background: rgb(243 244 246 / 1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(75 85 99 / 1);
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap .boxes svg{
    width: 16px;
    height: 16px;
}
.fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .fleetDescription p{
    font-size: 14px;
    font-weight: 500;
    color: rgb(107 114 128 / 1);
    margin-bottom: 0;
    margin-right: 10px;
}
.fleetCardsWrap .fleetCards .fleetPrice button{
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    width: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    color: #fff;
}
.fleetCardsWrap .fleetCards .fleetPrice button:first-child{
    margin-bottom: 20px;
}
.fleetCardsWrap .fleetCards .fleetPrice button span:first-child{
    font-size: 14px;
    font-weight: 500;
}
.fleetCardsWrap .fleetCards .fleetPrice button span:last-child{
    font-weight: 700;
    font-size: 20px;
}

@media screen and (max-width: 992px) {
    .fleetCardsWrap .fleetCardsInner{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .fleetCardsWrap .fleetCards{
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .success-icon-circle{
        width: 70px;
        height: 70px;
    }
    .success-icon-circle svg{
        width: 30px;
        height: 30px;
    }
    .success-title{
        font-size: 22px;
        margin-bottom: 5px;
    }
    .success-subtitle{
        font-size: 14px;
        margin-bottom: 0;
    }
    .bookingConfimationWrap .moreJouneyDetailsWrap .boxesWrap,
    .bookingConfimationWrap .journeyDetails.customerDetails .dtlsWrap .boxesParent{
        width: 100%;
    }
    .bookingConfimationWrap .journeyDetails.paymntDtls{
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }
    .bookingConfimationWrap .btnsWrap{
        flex-wrap: wrap;
    }
    .cardStyleWrap{
        padding: 10px 10px 30px;
    }
    .cardStyleWrap.paymentGateway{
        padding: 30px 10px;
    }
    .booking-id{
        margin: 0 -10px 10px;
    }
}
@media screen and (max-width: 576px) {
    .customAlert{
        font-size: 12px;
        padding: 10px;
        text-align: center;
    }
    .phoneNumberWrap a span{
        display: none;
    }
    .fleetCardsWrap .fleetCards .fleetPrice{
        margin-top: 0;
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }
    .fleetCardsWrap .fleetCards .fleetImg img{
        width: 115px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetHeading{
        margin-bottom: 5px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetHeading h2{
        font-size: 17px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge{
        font-size: 10px;
        padding: 2px 10px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap{
        margin-bottom: 5px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .boxesWrap .boxes{
        padding: 4px 8px;
        font-size: 12px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetDescription p{
        font-size: 12px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetCapacity .fleetDescription p{
        font-size: 12px;
        margin-right: 0;
    }
    .fleetCardsWrap .fleetCards .fleetPrice button{
        width: 100%;
    }
    .fleetCardsWrap .fleetCards .fleetPrice button:first-child{
        margin-bottom: 5px;
    }
    .fleetCardsWrap .fleetCards .fleetPrice button span:first-child{
        font-size: 12px;
    }
    .fleetCardsWrap .fleetCards .fleetPrice{
        gap: 5px;
    }
    .fleetCardsWrap .fleetCards .fleetPrice{
        flex: none !important;
    }
    .fleetCardsWrap .fleetCards .fleetPrice .skel{
        width: 100% !important;
    }
    .mainContent .journeyDetails{
        padding: 24px 10px;
    }
    .moreJourneyInfo{
        padding: 20px 10px;
    }
    .moreJourneyInfo .boxes .icon{
        width: 28px;
        height: 28px;
    }
    .moreJourneyInfo .boxes .icon svg{
        width: 13px;
        height: 13px;
    }
    .formWrapper .fieldsWrap .fieldsParent.half{
        width: 100%;
    }
    .cusFormCloseBtn{
        top: -14px;
        right: -5px;
    }
    .formWrapper .fields,
    .formWrapper .addReturn,
    .formWrapper .getQuotes{
        border-radius: 16px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .fleetCardsWrap .fleetCards .fleetDetails .fleetHeading{
        gap: 5px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetHeading h2{
        font-size: 17px;
    }
    .fleetCardsWrap .fleetCards .fleetDetails .fleetHeading .cusBadge{
        font-size: 10px;
        padding: 2px 8px;
    }
    .fleetCardsWrap .fleetCards .fleetImg img{
        width: 80px;
        margin-right: 5px;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid,
    .fleet-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 576px) {
    .hero{
        padding: 20px 0;
    }
    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 5px;
    }
    .hero-content p{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .hero-stats{
        margin-top: 0;
    }
    .stat-number{
        font-size: 30px;
        margin-bottom: 0;
    }
    .stat-label{
        font-size: 12px;
    }
    .booking-card{
        border-radius: 10px;
        padding: 15px 10px;
        margin-top: 15px;
    }
}