﻿/* SECTION */
.lch-content {
    padding: 50px 120px;
    background: #0c0c0c;
}


/* CONTENT BOX */
.lch-content-box {
    margin: auto;
}

/* HEADINGS */
.lch-content h2 {
    font-size: 30px;
    color: #fff;
    text-decoration: underline 2px #b1e023;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
}

@media (max-width: 768px) {
    /* SECTION */
    .lch-content {
        padding: 0px 20px;
        padding-bottom: 30px;
    }
}





.lch-airports {
    padding: 120px 100px;
    background: #0c0c0c;
}

.lch-container {
    width: 100%;
    margin: auto;
}

.lch-airports-wrap {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* ===================== LEFT IMAGE ===================== */
.lch-airport-image {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

    .lch-airport-image img {
        width: 100%;
        transition: opacity 0.4s ease;
    }

/* ===================== RIGHT CONTENT ===================== */
.lch-airport-list {
    flex: 1;
}

/* ===================== ITEMS ===================== */
.airport-item {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #222;
    padding: 40px 0;
}

    .airport-item h3 {
        text-decoration: underline 2px #b1e023;
        font-size: 35px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .airport-item p {
        color: #aaa;
        margin-bottom: 15px;
        max-width: 400px;
        line-height: 1.6;
    }

.airport-btn {
    color: #b1e023;
    text-decoration: none;
    font-weight: 500;
}

/* ACTIVE */
.airport-item.active h3 {
    color: #b1e023;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
    .lch-airports {
        padding: 50px 20px;
        background: #0c0c0c;
    }

    .lch-airport-image img {
        display: none;
    }

    .lch-airports-wrap {
        flex-direction: column;
        gap: 0;
    }

    .lch-airport-image {
        position: relative;
        top: auto;
    }
}


.lch-services {
    height: 100vh;
    background: #b1e023;
    margin: 20px;
    border-radius: 25px;
    padding: 40px 100px;
    box-sizing: border-box;
}

/* GRID */
.lch-services-grid {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

/* BOX COMMON */
.service-box {
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-1 {
    border-bottom: 1px solid #0c0c0c;
}

.service-2 {
    border-bottom: 1px solid #0c0c0c;
    border-left: 1px solid #0c0c0c;
}

.service-4 {
    border-left: 1px solid #0c0c0c;
}

/* TOP LEFT INFO */
.service-info h2 {
    font-size: 58px;
    font-weight: 700;
    color: #0c0c0c;
    margin-bottom: 15px;
}

.service-info p {
    color: #b1e023;
    line-height: 1.6;
}

    .service-info p span {
        background-color: #0c0c0c;
        padding: 3px;
    }

/* TOP RIGHT + BOTTOM LEFT */
.service-highlight h3 {
    text-decoration: underline 2px #0c0c0c;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
    color: #0c0c0c;
}

.service-highlight p {
    color: #0c0c0c;
    line-height: 1.5;
}

/* HOVER EFFECT */
.service-box:hover {
    border-color: #0c0c0c;
    transform: translateY(-3px);
    transition: 0.3s ease;
}

.service-btn {
    margin-top: 15px;
    color: #0c0c0c;
    text-decoration: underline #0c0c0c;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lch-services {
        padding: 0px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .service-4 {
        border-left: none;
        border-top: 1px solid #0c0c0c;
    }

    .service-2 {
        border-left: none;
    }

    .lch-services {
        height: auto;
        margin: 10px;
    }

    .lch-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}


.lch-stations {
    background: #0c0c0c;
    border-radius: 25px;
    padding: 0px 120px;
}

/* MAIN GRID */
.lch-stations-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT SIDE (SMALL) */
.station-left {
    flex: 1;
}

.station-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-decoration: underline 3px #b1e023;
}

.station-sub {
    color: #0c0c0c;
    font-size: 16px;
    line-height: 1.6;
}

    .station-sub span {
        background-color: #b1e023;
        padding: 3px;
    }

/* RIGHT SIDE (BIGGER) */
.station-right {
    flex: 1.5;
    /* 👈 BIGGER THAN LEFT */
    background-color: #0c0c0c;
    padding: 60px 25px;
    border-radius: 45px;
}

/* CAROUSEL */
.station-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
}

.station-viewport {
    width: 100%;
    display: flex;
    gap: 20px;
}

/* CARD */
.station-card {
    flex: 1;
    padding: 10px;
    min-height: 380px;
    background-color: #b1e023;
    border: 1px solid #b1e023;
    border-radius: 25px;
    transition: opacity 0.3s ease;
}

    .station-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .station-card h3 {
        color: #0c0c0c;
        margin-bottom: 10px;
        text-decoration: underline 2px #0c0c0c;
        padding: 0 10px;
    }

    .station-card p {
        color: #0c0c0c;
        font-size: 15px;
        line-height: 1.5;
        padding: 10px;
    }

    .station-card a {
        display: inline-block;
        padding: 0 10px 10px;
        color: #0c0c0c;
        text-decoration: underline;
    }

/* FADE */
.fade-out {
    opacity: 0;
}

/* BUTTONS */
.station-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0c0c0c;
    color: #b1e023;
    font-size: 28px;
    border: none;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .lch-stations {
        padding: 10px;
    }

    .station-right {
        padding: 22px 5px;
        border-radius: 25px;
    }

    .lch-stations-inner {
        flex-direction: column;
        gap: 15px;
    }

    .station-left,
    .station-right {
        width: 100%;
    }

    .station-left {
        padding: 0 10px;
    }

    .station-viewport {
        flex-direction: column;
    }

    /* SHOW ONLY ONE CARD */
    #cardB {
        display: none;
    }
}

.lch-contact {
    padding: 50px 120px;
}

/* MAIN LAYOUT */
.lch-contact-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.contact-left {
    flex: 1;
}

.contact-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    text-decoration: underline 2px #b1e023;
}

.contact-sub {
    color: #0c0c0c;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

    .contact-sub span {
        background-color: #b1e023;
        padding: 3px;
    }

/* INFO ITEMS */
.contact-item {
    margin-bottom: 20px;
}

    .contact-item strong {
        display: block;
        font-size: 16px;
        color: #fff;
        margin-bottom: 5px;
    }

    .contact-item p {
        color: #fff;
        margin: 0;
    }

/* RIGHT IMAGE */
.contact-right {
    flex: 1;
}

    .contact-right img {
        height: 500px;
        object-fit: cover;
        border-radius: 25px;
    }

/* RESPONSIVE */
@media (max-width: 768px) {

    .lch-contact-inner {
        flex-direction: column;
    }

    .contact-right img {
        height: 300px;
    }

    .contact-title {
        font-size: 32px;
    }

    .lch-contact {
        padding: 50px 20px;
    }
}

.lch-fleet {
    background: #0c0c0c;
    padding: 50px 120px;
}

/* HEADER */
.fleet-header {
    text-align: center;
    margin-bottom: 60px;
}

    .fleet-header h2 {
        font-size: 52px;
        color: #fff;
        font-weight: 700;
        text-decoration: underline 3px #b1e023;
        margin-bottom: 10px;
    }

    .fleet-header p {
        color: #0c0c0c;
        max-width: 750px;
        margin: auto;
        line-height: 1.6;
    }

        .fleet-header p span {
            padding: 3px;
            background-color: #b1e023;
        }

/* WRAPPER */
.fleet-wrapper {
    display: flex;
    flex-direction: column;
}

/* BLOCK */
.fleet-block {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #222;
    padding: 50px 0;
}


/* IMAGE */
.fleet-img {
    flex: 1;
}

    .fleet-img img {
        height: 100px;
        border-radius: 25px;
        object-fit: cover;
    }

/* CONTENT */
.fleet-content {
    flex: 2;
    color: #fff;
}

    .fleet-content h3 {
        text-decoration: underline 2px #b1e023;
        font-size: 34px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px;
    }

    .fleet-content h4 {
        font-size: 18px;
        color: #b1e023;
        margin-bottom: 15px;
    }

    .fleet-content p {
        color: #aaa;
        line-height: 1.6;
        max-width: 500px;
    }

/* RESPONSIVE */
@media (max-width: 768px) {

    .lch-fleet {
        padding: 20px;
    }

    .fleet-block,
    .fleet-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .fleet-content p {
        max-width: 100%;
    }

    .fleet-header h2 {
        font-size: 34px;
    }

    .fleet-header {
        margin-bottom: 20px;
    }

    .fleet-block {
        padding: 20px;
    }
}


.lch-footer {
    background: #b1e023;
    color: #0c0c0c;
    margin: 20px;
    border-radius: 25px;
    padding: 80px 40px 20px;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: auto;
}

/* HEADINGS */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0c0c0c;
    font-weight: 600;
    text-decoration: underline 2px #0c0c0c;
}

/* TEXT */
.footer-col p {
    color: #0c0c0c;
    line-height: 1.6;
    font-size: 16px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #0c0c0c;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                text-decoration: underline #0c0c0c;
            }

/* SOCIAL */
.footer-social {
    margin-top: 15px;
}

    .footer-social a {
        display: inline-block;
        margin-right: 10px;
        color: #0c0c0c;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-social a:hover {
            color: #b1e023;
        }

/* CONTACT BUTTON */
.footer-btn {
    margin-top: 15px;
}

    .footer-btn a {
        display: inline-block;
        background: #b1e023;
        color: #0c0c0c;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
    }

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #0c0c0c;
    color: #0c0c0c;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .lch-footer {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-social a {
        display: inline-block;
        margin: 5px;
    }
}




/* //////////////////// FORM CSS ////////////////////// */

:root {
    --webThemeColor: #b1e023;
    --formBtnColor: #0c0c0c;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif !important;
}

.formPlaceHolder {
    width: 100%;
    max-width: 450px;
    height: 531px;
    border-radius: 25px;
    background: #0c0c0c;
    padding: 15px
}

.skeleton {
    position: relative;
    background: #191919;
    border-radius: 6px;
    overflow: hidden;
    z-index: 1
}

    .skeleton:after {
        content: "";
        position: absolute;
        background: #f2f2f2;
        width: 1%;
        height: 100%;
        z-index: 2;
        box-shadow: 0 0 40px 40px #f2f2f2;
        animation: shimmer 1s ease infinite;
        -webkit-animation: shimmer 1s ease infinite;
        -moz-animation: shimmer 1s ease infinite;
        -o-animation: shimmer 1s ease infinite
    }

@keyframes shimmer {
    0% {
        left: 0;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

@-webkit-keyframes shimmer {
    0% {
        left: 0;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

@-moz-keyframes shimmer {
    0% {
        left: 0;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

@-o-keyframes shimmer {
    0% {
        left: 0;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

.skeleton-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.skeletonBoxWrap {
    padding: 0 5px;
    margin-bottom: 10px
}

    .skeletonBoxWrap.w-half {
        width: 50%
    }

    .skeletonBoxWrap.w-full {
        width: 100%
    }

    .skeletonBoxWrap .skeleton.h35 {
        height: 35px
    }

    .skeletonBoxWrap .skeleton.h45 {
        height: 45px
    }

    .skeletonBoxWrap .skeleton.h40 {
        height: 40px
    }

    .skeletonBoxWrap .skeleton.h50 {
        height: 50px;
        margin-top: 10px
    }

.skeleton.smallSk {
    height: 14px !important;
    width: 85px;
    margin-bottom: 5px
}

.skeletonBoxWrap:nth-child(6) .skeleton.smallSk {
    margin-top: 13px;
    margin-bottom: 0
}

.appsicowrap .skeleton {
    width: 136px
}

.appsicowrap:first-child .skeleton {
    margin-left: auto
}

.cusFormWrap {
    border-radius: 25px;
}

@media (max-width:992px) {
    .formPlaceHolder {
        max-width: 380px;
        padding: 15px 5px
    }
}

@media (max-width:768px) {
    .formPlaceHolder {
        max-width: 100%;
        height: 546.89px
    }
}

@media (max-width:576px) {
    .formPlaceHolder {
        border-radius: 25px;
        height: 536.89px
    }
}

@media (max-width: 576px) {
    .cusFormWrap {
        padding: 10px 0;
        border-radius: 25px;
    }
}

.modal-backdrop {
    z-index: 0 !important;
}

#moreModalitem .card-header button {
    color: #fff;
}

.cusFormWrap {
    border: 1px solid #b1e023;
    border-radius: 0px !important;
    background-color: #0c0c0c !important;
}

#get-quotes {
    background-color: #b1e023 !important;
    color: #0c0c0c !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 0px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.cusFormWrap .cusRow .cusCol input,
.cusFormWrap .cusRow .cusCol select {
    text-align: left;
    width: 100%;
    border: 1px solid #424242 !important;
    outline: 0;
    background-color: #0c0c0c !important;
    color: #fff !important;
    border-radius: 0px !important;
    height: 45px !important;
    padding: 0 5px !important;
    font-size: 14px;
    line-height: inherit;
    overflow: hidden !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;
}

body .cusFormWrap .cusRow .cusCol input,
body .cusFormWrap .cusRow .cusCol input[type=time],
body .cusFormWrap .cusRow .cusCol input[type=date],
body {
    background-color: #0c0c0c !important;
    color: #fff !important;
}

.radioCol:last-child label,
.radioCol:first-child label {
    border-radius: 0 !important;
}

.fieldIconsWrap .fieldIcons,
.passengersWrap button {
    background: #424242 !important;
    border: 1px solid #424242 !important;
    border-radius: 0px !important;
}

.viaBtnWrap {
    color: #fff !important;
}


.modal-header .modal-title, #moreModalitem .card-header button {
    color: #0c0c0c !important;
}

#holdabledata button, #via-list button {
    background: #b1e023 !important;
}





.area-covered-section {
    padding: 50px 120px;
    padding-top: 100px;
}

    .area-covered-section .container h1 {
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        text-decoration: underline 3px #b1e023;
    }




/* SECTION */
.area-covered-content-section {
    background: #0c0c0c;
    padding: 60px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* SEARCH BAR */
.area-search-box {
    max-width: 500px;
    margin: 0 auto 40px;
    position: sticky;
    top: 50px;
    z-index: 10;
}

    .area-search-box input {
        width: 100%;
        height: 50px;
        border: none;
        outline: none;
        padding: 0 20px;
        border-radius: 50px;
        background: #1a1a1a;
        color: #fff;
        font-size: 15px;
        border: 1px solid #333;
        transition: 0.3s;
    }

        .area-search-box input:focus {
            border-color: #b1e023;
            box-shadow: 0 0 10px rgba(177, 224, 35, 0.3);
        }

/* ALPHABET BLOCK */
.alphabets-div {
    background: #b1e023;
    color: #0c0c0c;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabets-heading {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

/* LIST CONTAINER */
.area-covered-list-div {
    background: #0c0c0c;
}

/* LIST */
.area-covered-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

    /* ITEMS */
    .area-covered-list li {
        list-style: none;
    }

    /* LINKS */
    .area-covered-list a {
        display: inline-block;
        padding: 8px 16px;
        background: #1f1f1f;
        border-radius: 30px;
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
        border: 1px solid transparent;
    }

        /* HOVER EFFECT */
        .area-covered-list a:hover {
            background: #b1e023;
            color: #0c0c0c;
            transform: translateY(-2px);
        }

/* HIDE ITEMS (SEARCH) */
.hidden-area {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .area-search-box {
        padding: 20px;
        margin-bottom: 0px;
    }


    .area-covered-section {
        padding: 0px;
        padding-top: 50px;
    }

    .alphabets-heading {
        font-size: 28px;
    }

    .area-covered-list {
        justify-content: flex-start;
    }
}



/* ===================== FAQ SECTION ===================== */
.lch-faq {
    padding: 80px 120px;
    background: #0c0c0c;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

    .faq-header h2 {
        font-size: 48px;
        color: #fff;
        font-weight: 700;
        text-decoration: underline 3px #b1e023;
        margin-bottom: 12px;
    }

    .faq-header p {
        color: #aaa;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 8px;
}

button:focus {
    outline: 0px;
    outline: 0px auto -webkit-focus-ring-color;
}

button.active {
    border: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .faq-question:hover {
        color: #b1e023;
    }

.faq-icon {
    font-size: 28px;
    color: #b1e023;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-bottom: 0;
}

    .faq-answer p,
    .faq-answer ul {
        color: #ddd;
        line-height: 1.7;
    }

    .faq-answer ul {
        padding-left: 20px;
    }

    .faq-answer strong {
        color: #b1e023;
    }

/* Responsive */
@media (max-width: 992px) {
    .lch-faq {
        padding: 60px 40px;
    }
}

@media (max-width: 576px) {
    .lch-faq {
        padding: 50px 20px;
    }

    .faq-header h2 {
        font-size: 36px;
    }

    .faq-question {
        font-size: 18px;
    }
}
