
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #111827;
}

.justify-content-between {
    justify-content: space-between;
}

.d-flex {
    display: flex;
}

.mt-10 {
    margin-top: 10px;
}

.align-items-end {
    align-items: end;
}

.faq-box {
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 11px;
    padding: 12px 26px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.ft-18 {
    margin-bottom: 15px;
    font-size: 24px;
}

button {
    font-family: inherit;
}

.location-pill img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #071123;
}

.section-subtitle {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}



/* About Section */
.breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

    .breadcrumb span {
        color: #2093EF;
    }

.breadcrumb1 h1 {
    font-size: 14px;
    font-weight: normal;
    display: inline;
}

.about-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-content {
    flex: 2;
}

    .about-content h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #111827;
    }

    .about-content p {
        font-size: 16px;
        line-height: 24px;
        color: #555;
        margin-bottom: 15px;
    }

.highlight {
    font-weight: 600;
    color: #000;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf2ff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #2563eb;
    margin-top: 10px;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    padding: 10px 0px 10px 0px;
    text-align: center;
}

    .stat-card .stat-icon {
        font-size: 22px;
        margin-bottom: 0px;
    }

    .stat-card .h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .stat-card p {
        font-size: 12px;
        color: #6b7280;
        margin-top: 5px;
    }

/* Popular Flights */
.flight-grid,
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.flight-card {
    padding: 20px;
}

.route {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.badge-blue {
    background: #e0edff;
    color: #2563eb;
}

.badge-green {
    background: #d1fae5;
    color: #059669;
}

.badge-orange {
    background: #fff4e5;
    color: #b45309;
}

.flight-card .h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.price span {
    font-size: 12px;
    color: #9ca3af;
}

.price .h4 {
    font-size: 20px;
    font-weight: 600;
}

.primary-btn,
.outline-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.primary-btn {
    background: #EF6614;
    color: #fff;
}

    .primary-btn:hover {
        background: #ea580c;
    }

.view-all {
    text-align: center;
    margin-top: 30px;
}

.outline-btn {
    border: 1px solid #2093EF;
    color: #2093EF;
    background: transparent;
}

    .outline-btn:hover {
        background: #2093EF;
        color: #fff;
    }

.extra-route {
    display: none;
}

.routes-open .extra-route {
    display: block;
}

/* Terminal */
.terminal-grid,
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.terminal-card {
    padding: 25px;
    position: relative;
}

    .terminal-card.blue {
        border-bottom: 4px solid #2563eb;
    }

    .terminal-card.orange {
        border-bottom: 4px solid #f59e0b;
    }

    .terminal-card h3 {
        font-size: 20px;
        font-weight: 700;
    }

.desc {
    margin: 12px 0 18px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.airline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.airline-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef2f7;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.dot-indigo {
    background: #1e40af;
}

.dot-red {
    background: #dc2626;
}

.dot-blue {
    background: #2563eb;
}

.dot-navy {
    background: #1e3a8a;
}

/* Facilities */
.facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.facility {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    transition: 0.3s ease;
}

    .facility:hover {
        background: #eff6ff;
        transform: translateY(-2px);
    }

.facility-icon {
    font-size: 18px;
    color: #2563eb;
}

/* Transport */
.transport-grid {
    gap: 30px 40px;
    padding-top: 30px;
}

.transport-card {
    position: relative;
    padding: 25px;
}

.icon-box {
    position: absolute;
    top: -18px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
    color: #fff;
    font-size: 20px;
    padding: 7px;
}

.transport-card h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
}

.transport-card p {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.5;
}

/* Airport Location */
.airport-location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
}

.map-card {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 0 rgba(30, 64, 175, 0.18), 0 3px 10px rgba(15, 23, 42, 0.08);
}

.map-area {
    height: 236px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(9, 87, 161, 0.82), rgba(6, 83, 150, 0.82)), url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

    .map-area::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 37% 55%, rgba(19, 160, 213, 0.5) 0 5px, transparent 6px), radial-gradient(circle at 46% 66%, rgba(19, 160, 213, 0.45) 0 4px, transparent 5px), radial-gradient(circle at 70% 52%, rgba(19, 160, 213, 0.45) 0 4px, transparent 5px), linear-gradient(160deg, transparent 0 26%, rgba(42, 174, 230, 0.18) 26.2% 26.5%, transparent 27%), linear-gradient(25deg, transparent 0 44%, rgba(42, 174, 230, 0.18) 44.2% 44.6%, transparent 45%);
    }

.map-route {
    position: absolute;
    left: 207px;
    top: 102px;
    width: 130px;
    height: 55px;
}

    .map-route svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

.map-controls {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 29px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

.map-btn {
    width: 29px;
    height: 28px;
    border: 0;
    background: #fff;
    color: #4b5563;
    font-size: 19px;
    font-weight: 700;
    display: grid;
    place-items: center;
    border-bottom: 1px solid #e5e7eb;
}

    .map-btn:last-child {
        border-bottom: 0;
    }

.map-info {
    min-height: 49px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: #111;
    flex-wrap: wrap;
}

.info-badge,
.airport-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4ff;
    color: #1D4ED8;
    color: #1D4ED8;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
}

.airport-card {
    min-height: 130px;
    border-radius: 10px;
    padding: 16px 21px;
    position: relative;
    background: linear-gradient(125deg, #ffffff 0%, #ffffff 48%, #eaf3ff 100%);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

    .airport-card .arrow {
        position: absolute;
        top: 27px;
        right: 22px;
        color: #1554e8;
        font-size: 20px;
        line-height: 1;
    }

.airport-name {
    font-size: 18px;
    font-weight: 600;
    color: #050505;
    margin: 12px 0 10px;
}

.airport-distance {
    font-size: 14px;
    color: #71717a;
}

.hghtfl {
    height: calc(100% - 52px);
    min-height: 270px;
}

.dest_w {
    width: 100%;
    background: #F5FAFF;
    border: 1px solid #C7DCE9;
    padding: 17px 22px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aqrw {
    margin-top: auto;
}

    .aqrw img {
        width: 150px;
        max-height: 132px;
    }

.dest_w .tp_ h4 {
    font-size: 20px;
    font-weight: 600;
}

.dest_w .tp_ span {
    font-size: 14px;
    background: #009B6D;
    padding: 3px 8px;
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    height: max-content;
}

/* AQI Color Classes */
.aqi-good {
    background: #009865 !important;
    color: #fff !important;
}

.aqi-satisfactory {
    background: #FFFF00 !important;
    color: #000 !important;
}

.aqi-moderate {
    background: #FF7E00 !important;
    color: #fff !important;
}

.aqi-poor {
    background: #FF0000 !important;
    color: #fff !important;
}

.aqi-very-poor {
    background: #8F3F97 !important;
    color: #fff !important;
}

.aqi-severe {
    background: #7E0023 !important;
    color: #fff !important;
}

.dest_w .btm_ h4 {
    font-size: 16px;
    font-weight: 600;
}

.dest_w .btm_ p {
    font-size: 14px;
}

.dest_w .btm_ span {
    font-size: 40px;
    font-weight: 800;
    line-height: 37px;
}

.txt {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: capitalize;
}

.dest_w .btm_ p {
    font-size: 16px;
}

/* Travel Tips */
.tip-card {
    padding: 22px;
}

.tip-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff4dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 14px;
}

.tip-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Airlines */
.airlines-card {
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 11px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
    padding: 30px 38px 25px;
}

.airlines-list {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    align-items: start;
    gap: 32px;
}

    .airlines-list::-webkit-scrollbar {
        height: 5px;
    }

    .airlines-list::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .airlines-list::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 8px;
    }

        .airlines-list::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.airline-item {
    text-align: center;
    min-width: 90px;
}

.airline-logo {
    margin: 0 auto;
    border-radius: 11px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
}

.airline-logo {
    width: 94px;
    height: 94px;
    aspect-ratio: 1;
}

    .airline-logo img {
        max-width: 100%;
        object-fit: contain;
    }

    .airline-logo svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.airline-name {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #050505;
}
/* Hotels */
.hotel-grid {
    display: flex;
    gap: 24px;
    max-width: 100%;
    overflow: auto;
    padding-bottom: 5px;
}

.hotel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    min-width: 280px;
    cursor: pointer;
    background: #111827;
}

.hotel-grid::-webkit-scrollbar {
    height: 5px;
}

.hotel-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.hotel-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
}

    .hotel-grid::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.hotel-card:hover img {
    transform: scale(1.05);
}

.hotel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2), transparent);
}

.hotel-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: #fff;
}

.hotel-name {
    font-size: 18px;
    font-weight: 600;
}

.starting {
    font-size: 12px;
    opacity: 0.8;
    margin: 4px 0 8px;
}

.hotel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.hotel-price {
    font-size: 18px;
    font-weight: 800;
}

.book-link {
    font-size: 13px;
    color: #f97316;
    font-weight: 600;
}
/* FAQ */
.faq-box {
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 11px;
    padding: 12px 26px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.faq-item {
    border-bottom: 1px solid #eeeeee;
}

    .faq-item:last-child {
        border-bottom: 0;
    }

.faq-question {
    width: 100%;
    min-height: 68px;
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
    font-weight: 800;
    color: #202124;
}

    .faq-question span {
        padding-right: 20px;
    }

.faq-arrow {
    font-size: 22px;
    color: #050505;
    transition: 0.25s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 40px 20px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5f6368;
}

.faq-item.active .faq-answer {
    display: block;
}

.accordion__item__header {
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 18px;
}

    .accordion__item__header::before {
        height: 7px !important;
        width: 7px !important;
        content: "";
        position: absolute;
        right: -2px !important;
        top: 21px !important;
        transition: .5s all;
        transform: rotate(45deg);
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
    }

.hedigpk {
    font-size: 16px;
    padding-right: 5px;
    font-weight: 500;
}

.accordion__item__header.active::before {
    transform: rotate(-135deg);
    top: 23px;
}

.py-0 {
    padding: 0
}
/*--Airport-slider--*/
.Airport-slider__viewport {
    overflow: hidden;
    padding: 6px 0 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}

.Airport-slider__track {
    display: flex;
    width: max-content;
    animation: Airport-marquee 90s linear infinite;
}

.Airport-slider__stage:hover .Airport-slider__track,
.Airport-slider__stage:focus-within .Airport-slider__track {
    animation-play-state: paused;
}

@keyframes Airport-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.Airport-slider__set {
    display: flex;
    flex: 0 0 auto;
}

.Airport-slider__item {
    flex: 0 0 170px;
    padding: 0 9px;
}

.Airport-slider__card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 108px;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 16px;
    padding: 12px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .Airport-slider__card:hover,
    .Airport-slider__card:focus-visible {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px -14px rgba(22,36,61,0.22);
        border-color: #2092ef60;
    }

    .Airport-slider__card:focus-visible {
        outline: 2px solid #2093ef;
        outline-offset: 3px;
    }

    .Airport-slider__card img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        transition: all .25s ease;
        border-radius: 5px;
    }

@media (max-width: 1000px) {
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .airport-location-layout {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .flight-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
    }

    .terminal-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-content h2 {
        font-size: 19px;
    }

    .page-section {
        padding: 10px 10px;
    }

    .flight-grid,
    .tips-grid,
    .hotel-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .airlines-list {
        gap: 15px;
    }

    .facility {
        width: 100%;
        padding: 10px 15px;
    }

    .facilities {
        gap: 10px;
    }

    .card-bottom,
    .hotel-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-title {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .transport-grid {
        padding-top: 40px;
    }

    .nearby-grid, .tips-grid {
        gap: 15px;
    }

    .section-subtitle {
        margin-bottom: 15px;
    }

    .tip-card {
        padding: 15px;
    }

    .airlines-card {
        padding: 15px 17px;
    }

    .airline-name {
        font-size: 12px;
    }

    h1.ft-18 {
        font-size: 19px;
        margin-bottom: 10px
    }

    .faq-box {
        padding: 10px 15px;
    }

    .aqrw img {
        width: 60px
    }

    .dest_w .tp_ span {
        font-size: 12px;
        margin: auto 0;
    }

    .txt, .dest_w .btm_ p {
        font-size: 14px;
        margin-top: 0;
    }



    .dest_w .btm_ span {
        font-size: 35px;
    }

    .airport-location-layout {
        gap: 23px;
    }

    .hghtfl {
        min-height: 205px;
    }
}
