/* Services Section */
.services {
    padding: 80px 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 16px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cus-services-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 -15px 0 0;
}
.cus-service-card{
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: none;
    margin-bottom: 20px;
}
.cus-service-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #462170;
    border-radius: 10px;
    width: 60px;
    height: 60px;
}
.cus-service-icon img{
    filter: brightness(0) invert(1);
    width: 30px;
    height: 30px;
}

.servicesContent{
    flex: 1 0 0;
}
.servicesContent h2{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.servicesContent p{
    font-size: 12px;
    color: #333;
    margin-bottom: 0;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
}

.service-card:last-child{
    grid-column: 1 / -1;
}

.service-card:hover {
    transform: translateY(-10px);
    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-icon img{
    width: 30px;
    height: 30px;
}

.service-card h2 {
    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: 80px 8%;
    background-color: #fafafa;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.fleet-card {
    background: #fff;
    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: 220px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.fleet-image img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 15px 0;
}

.fleet-info {
    padding: 20px 35px 0;
}

.fleet-info h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.fleet-details {
    color: #999;
    font-size: 12px;
    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;
}



/* Testimonials */
.testimonials {
    padding: 80px 8%;
    background: #fff;
}

.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: #462170;
    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: #fff;
    border-radius: 50%;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #999;
}

/* main fleet */
.mainFleetSecWrap{
    padding: 80px 0;
    background-color: #fff;
}
.mainFleetSecWrap .boxesWrap{
    display: flex;
    flex-wrap: wrap;
}
.mainFleetSecWrap .boxes{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    width: 50%;
    height: 100%;
    border-left: none;
    margin-bottom: 0;
}
.mainFleetSecWrap .boxes .fltImg img{
    width: 100px;
}
.mainFleetSecWrap .boxes .txt h2{
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.mainFleetSecWrap .boxes .txt p{
    font-size: 12px;
    color: #333;
    margin-bottom: 0;
    text-align: justify;
}
/* main fleet */

.frequentDestWrap{
    padding: 80px 0;
    background-color: #fff;
}
.frequentDestWrap .locationsPara{
    color: #333;
    text-align: justify;
    font-size: 14px;
}
.frequentDestWrap .locationsPara a{
    font-weight: 600;
    color: #333;
}

.faqsWrap{
    padding: 80px 0;
    background-color: #fafafa;
}

.faqsInner{
    display: flex;
    align-items: center;
    gap: 15px;
}
.faqsInner .leftCol{
    width: calc(50% - 15px);
}
.faqsInner .rightCol{
    width: calc(50% - 15px);
}
.faqsInner .leftCol img{
    border-radius: 24px;
    max-width: 100%;
    object-fit: cover;
    height: 500px;
}
.faqsWrap .accordion-item{
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0 0 0 / 4%);
}
.faqsWrap .accordion-button{
    font-weight: 700;
    height: 50px;
    padding: 0;
    padding-left: 35px;
    padding-right: 15px;
    display: block;
    background: none;
    border-radius: 10px 10px 0 0 !important;
    box-shadow: none;
    color: #fff;
    font-size: 14px;
    background: #462170 url(images/minus-sign.png) 15px center / 12px no-repeat;
}
.faqsWrap .accordion-button.collapsed{
    background: url(images/plus.png) 15px center / 12px no-repeat;
    color: #333;
}
.faqsWrap .accordion-button:after{
    content: none;
}
/* .faqsWrap .accordion-button:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../contents/images/minus.png) center center / 18px no-repeat;
    width: 18px;
    height: 100%;
} */

.faqsWrap .accordion-item .accordion-body p{
    color: #333;
    font-size: 12px;
}

/* Footer */
.footer {
    background: #462170;
    padding: 80px 8% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-brand p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
}

.footer-section a {
    display: block;
    color: #cfcfcf;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #cfcfcf;
    font-size: 14px;
}
.copyright a{
    color: #cfcfcf;
    text-decoration: none;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 15px;
}
.payment-icons img{
    width: 30px;
}

.infoBannerWrap{
    background: #462170;
    text-align: center;
    padding: 80px 0;
}
.infoBannerWrap h2 {
    color: #fff;
    font-weight: 500;
    font-size: 60px;
    margin-bottom: 30px;
}
.infoBannerWrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}
.infoBannerWrap ul li {
    list-style: none;
    color: #fff;
    text-transform: capitalize;
}
.infoBannerWrap ul li:first-child {
    background: url(images/right-light.png) right center / 12px no-repeat;
    padding-right: 30px;
}
.infoBannerWrap ul li a {
    color: #fff;
    text-decoration: underline;
}
.contactContentWrap {
    background-color: #fafafa;
    padding: 80px 0;
}
.contactContentInner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.contactContentWrap .leftCol, .contactContentWrap .rightCol {
    max-width: 50%;
    width: 100%;
    padding: 0 15px;
}
.contactContentWrap .contactFormWrapper .contactFieldsParent {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.contactContentWrap .contactFormWrapper .contactFieldWrap {
    width: 100%;
    max-width: 50%;
    margin-bottom: 20px;
    padding: 0 15px;
}
.contactContentWrap .contactFormWrapper .contactFieldWrap:last-child, .contactContentWrap .contactFormWrapper .contactFieldWrap:nth-child(3) {
    max-width: 100%;
}
.contactContentWrap .contactFormWrapper .contactFieldWrap input, .contactContentWrap .contactFormWrapper .contactFieldWrap textarea {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid rgba(0 0 0 / 10%);
    outline: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0 0 0 / 4%);
    transition: all 0.3s ease;
}
.contactContentWrap .contactFormWrapper .contactFieldWrap textarea {
    height: auto;
}
.contactContentWrap .contactFormWrapper .contactFieldWrap input:focus,
.contactContentWrap .contactFormWrapper .contactFieldWrap textarea:focus{
    border-color: #462170;
}
.contactContentWrap .contactFormWrapper button {
    background-color: #462170;
    border: none;
    border-radius: 10px;
    outline: none;
    padding: 10px 20px;
    height: 50px;
    color: #fff;
}
.contactContentWrap .rightCol p.contactDesc{
    color: #333;
    margin-bottom: 50px;
}
.contactInfoBoxes .boxes {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
}
.contactInfoBoxes .boxes .iconWrap {
    background: #462170;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactInfoBoxes .boxes .iconWrap img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}
.contactInfoBoxes .boxes .txt{
    flex: 1 0 0;
}
.contactInfoBoxes .boxes .txt h2 {
    font-size: 22px;
    font-weight: 700;
}
.contactInfoBoxes .boxes .txt span, .contactInfoBoxes .boxes .txt a {
    text-decoration: none;
    font-weight: 300;
    color: #333;
    display: block;
    width: fit-content;
}
@media screen and (max-width: 992px) {
    .mainFleetSecWrap .boxes .txt p br,
    .servicesContent p br{
        display: none;
    }
    .faqsInner .leftCol{
        display: none;
    }
    .faqsInner .rightCol{
        width: 100%;
    }
    .contactContentWrap .leftCol, .contactContentWrap .rightCol{
        min-width: 100%;
    }
    .contactContentInner{
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 768px) {
    .stat-number{
        font-size: 16px;
        margin-bottom: 0px;
        color: #fff;
    }
    .stat-label{
        font-size: 8px;
        color: #ffffffb5;
    }
    .section-header{
        margin-bottom: 20px;
    }
    .section-title{
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .section-subtitle{
        font-size: 12px;
    }
    .mainFleetSecWrap .boxes{
        width: 100%;
        padding-right: 0;
    }
    .mainFleetSecWrap .boxes .fltImg img{
        width: 75px;
    }
    .mainFleetSecWrap .boxes .txt h2{
        font-size: 14px;
        margin-bottom: 3px;
    }
    .mainFleetSecWrap .boxes .txt p{
        font-size: 10px;
    }
    .cus-services-grid{
        margin: 0;
    }
    .cus-service-card{
        width: 100%;
    }
    .servicesContent h2{
        font-size: 14px;
        margin-bottom: 3px;
    }
    .servicesContent p{
        font-size: 10px;
        width: 80%;
    }
    .frequentDestWrap .locationsPara{
        font-size: 10px;
        line-height: 2.5;
    }
    .contactContentWrap .contactFormWrapper .contactFieldWrap {
        max-width: 100%;
    }
    .contactInfoBoxes .boxes{
        gap: 15px;
    }
    .cus-services-grid{
        gap: 0;
    }
    .cus-service-card{
        margin-bottom: 10px;
    }
    .footer{
        padding: 35px 5% 80px;
    }
    .footer-brand{
        text-align: center;
    }
    .footer-content{
        grid-template-columns: 1fr;
        gap: 0px;
        margin-bottom: 10px;
    }
    .footer-section{
        text-align: center;
    }
    .footer-section a{
        display: inline-block;
        margin-right: 10px;
    }
    .footer-section h2{
        margin-bottom: 10px;
    }
    .footer-bottom{
        flex-direction: column;
        padding-top: 20px;
    }
    .copyright{
        text-align: center;
    }
}