﻿
html {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* ===========================
          Navbar
=========================== */

.navbar {
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(86px);
    height: 65px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    font-weight: 600;
}
/* ===========================
          Logo
=========================== */

.navbar-brand {
    width: 220px;
    overflow: hidden;
}

.logo {
    width: 100%;
    object-fit: contain;
    transition: all .3s ease;
}

/* ===========================
         Inquiry Box
=========================== */

.inquiry-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all .3s ease;
}

@media(min-width: 1400px) {
    .container {
        max-width: 1480px !important;
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 1240px !important;
    }
}

@media(max-width: 576px) {
    .trip-wrapper {
        flex: 1 !important;
    }

    .destination-results {
        left: -50px !important;
        top: calc(100%) !important;
        width: 220px !important;
    }
}

.destination-results {
    color: black;
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    max-height: 320px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}

.destination-item {
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

    .destination-item:last-child {
        border-bottom: none;
    }

    .destination-item:hover {
        background: #f5f5f5;
    }

.destination-title {
    font-weight: 600;
}

.destination-subtitle {
    font-size: 13px;
    color: #777;
}

.destination-results {
    max-height: 320px;
    overflow-y: auto;
    /* Firefox */
    scrollbar-width: none;
    /* IE & Edge */
    -ms-overflow-style: none;
}

    .destination-results::-webkit-scrollbar {
        display: none;
    }

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    border-radius: var(--swal2-confirm-button-border-radius);
    background: initial;
    background-color: #0b1f3a !important;
    box-shadow: var(--swal2-confirm-button-box-shadow);
    color: var(--swal2-confirm-button-color);
    font-size: 1em;
}

    div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
        background-color: color-mix(in srgb, #0b1f3a, var(--swal2-action-button-hover)) !important;
    }

.phone-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    flex-shrink: 0;
}

.inquiry-text {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    font-weight: 500;
    line-height: 1.2;
}

.phone-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.inquiry-box:hover .phone-icon {
    background: #0b1f3a;
    border-color: #0b1f3a;
}

.inquiry-box:hover .phone-number {
    color: #0b1f3a;
}

/* ===========================
           Buttons
=========================== */

.btn-primary {
    background: #0b1f3a;
    border: none;
}

    .btn-primary:hover {
        background: #4b2ee6;
    }

.hero {
    position: relative;
    height: 100vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .8s;
    background-size: cover;
    background-position: center;
    transform: scale(1.08)
}

    .slide.active {
        opacity: 1;
        transform: scale(1)
    }

    .slide:after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .25)
    }

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 30px
}

.booking-options label {
    color: #000;
}

.hero-text {
    color: #fff
}

    .hero-text h1 {
        font-size: 2.5rem;
        font-weight: 800
    }


.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.btn-primary {
    background: #0b1f3a;
    border: none
}

.search-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    background: #fff;
    border-radius: 24px;
    width: 100%;
}

.booking-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

    .booking-options .form-check {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 0;
    }

.option-select {
    width: auto;
    border: none;
    box-shadow: none;
    font-weight: 500;
    cursor: pointer;
}

.form-control {
    height: 58px;
    border-radius: 12px;
    font-size: 15px;
}

.form-select {
    height: 50px;
    border-radius: 10px;
}

.btn-search {
    height: 58px;
    border-radius: 12px;
    background: #0b1f3a;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    transition: .3s;
}

    .btn-search:hover {
        background: #0b1f3a;
        color: #fff;
    }

.form-control:focus,
.form-select:focus {
    border-color: #0b1f3a;
    box-shadow: 0 0 0 .15rem rgba(91,61,245,.2);
}


/*==================================
          BOOKING RIGHT
==================================*/

.booking-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}


/*==================================
         TRAVELLER SELECT
==================================*/

.traveller-wrapper {
    position: relative;
}

.traveller-select {
    min-width: 180px;
    height: 52px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .3s;
}

    .traveller-select:hover {
        border-color: #0b1f3a;
    }

.traveller-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .traveller-info i {
        color: #0b1f3a;
        font-size: 18px;
    }

#travellerText {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}


/*==================================
             DROPDOWN
==================================*/

.traveller-dropdown {
    position: absolute;
    top: 65px;
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(91,61,245,.18);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .28s ease;
    z-index: 999;
}

    .traveller-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/*==================================
             ROWS
==================================*/

.traveller-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .traveller-row:last-of-type {
        border-bottom: none;
    }

    .traveller-row h6 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #222;
    }

    .traveller-row small {
        color: #8c8c8c;
        font-size: 13px;
    }


/*==================================
            COUNTER
==================================*/

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .counter span {
        width: 32px;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #222;
    }

    .counter button {
        width: 36px;
        height: 36px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        cursor: pointer;
        transition: .25s;
    }

        .counter button:hover {
            background: #0b1f3a;
            border-color: #0b1f3a;
            color: #fff;
        }

.traveller-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.btn-reset,
.btn-apply {
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

.btn-reset {
    background: #f3f3f3;
    color: #444;
}

    .btn-reset:hover {
        background: #e7e7e7;
    }

.btn-apply {
    background: linear-gradient(135deg,#7B61FF,#0b1f3a);
    color: #fff;
}

    .btn-apply:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(91,61,245,.25);
    }


/*==================================
          CABIN WRAPPER
==================================*/

.cabin-wrapper {
    position: relative;
    min-width: 180px;
}


/*==================================
            SELECT BOX
==================================*/

.cabin-select {
    height: 52px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

    .cabin-select:hover {
        border-color: #0b1f3a;
        box-shadow: 0 8px 20px rgba(91,61,245,.08);
    }


/*==================================
              LEFT
==================================*/

.cabin-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cabin-left i {
        color: #0b1f3a;
        font-size: 18px;
    }

#selectedCabin {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}


/*==================================
              ARROW
==================================*/

.cabin-select .bi-chevron-down {
    font-size: 14px;
    color: #777;
    transition: .3s;
}

.cabin-select.active .bi-chevron-down {
    transform: rotate(180deg);
}


/*==================================
            DROPDOWN
==================================*/

.cabin-dropdown {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 999;
}

    .cabin-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


/*==================================
            OPTIONS
==================================*/

.cabin-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

    .cabin-option:hover {
        background: #F5F3FF;
        color: #0b1f3a;
    }


    /*==================================
            ACTIVE OPTION
==================================*/

    .cabin-option.active {
        background: linear-gradient(135deg,#7B61FF,#0b1f3a);
        color: #fff;
    }

        .cabin-option.active::after {
            content: "✓";
            font-weight: 700;
        }


/*==================================
        RESPONSIVE
==================================*/

@media(max-width:992px) {
    .navbar {
        height: auto;
    }
}

.traveller-row h6 {
    text-align: left !important;
}

@media(max-width:768px) {

    .cabin-wrapper {
        width: 100%;
    }

    .cabin-dropdown {
        width: 100%;
    }

    .traveller-row h6 {
        text-align: left !important;
    }
}

@media(max-width:520px) {
    .traveller-dropdown {
        width: auto;
    }

    .hero {
        height: auto;
    }
}

/* flatpicker css */
.flatpickr-calendar {
    border: none !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12) !important;
    font-family: 'Roboto', sans-serif !important;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px !important;
}

.flatpickr-months .flatpickr-month {
    color: #222 !important;
    font-weight: bold !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: bold !important;
    color: #0b1f3a !important;
}

.flatpickr-weekday {
    font-weight: bold !important;
    color: #0b1f3a !important;
}

.flatpickr-day {
    font-weight: bold !important;
    border-radius: 8px !important;
}

    .flatpickr-day.today {
        border: 1px solid #0b1f3a !important;
        font-weight: bold !important;
    }

    .flatpickr-day.selected,
    .flatpickr-day.startRange,
    .flatpickr-day.endRange {
        background: #0b1f3a !important;
        border-color: #0b1f3a !important;
        color: #fff !important;
        font-weight: bold !important;
    }

    .flatpickr-day:hover {
        background: #F5F3FF !important;
        color: #0b1f3a !important;
    }

.flatpickr-weekdays {
    padding: 8px !important;
}

.dayContainer {
    padding: 0px 8px 8px !important;
}

/* Make every day perfectly circular */
.flatpickr-day {
    border-radius: 50% !important;
}

    /* Today */
    .flatpickr-day.today {
        border: 2px solid #0b1f3a !important;
        border-radius: 50% !important;
    }

    /* Selected date */
    .flatpickr-day.selected,
    .flatpickr-day.startRange,
    .flatpickr-day.endRange {
        border-radius: 50% !important;
        background: #0b1f3a !important;
        border-color: #0b1f3a !important;
        color: #fff !important;
    }

/***************************/

/*==================================================
                WHY CHOOSE SKYFAREHUB
==================================================*/

.why-us {
    padding: 100px 0;
    overflow: hidden;
}

/* Section Title */

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(91,61,245,.08);
    color: #0b1f3a;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: #0b1f3a;
    margin-bottom: 22px;
}

.section-text {
    color: #6d6d6d;
    font-size: 18px;
    line-height: 1.8;
    max-width: 540px;
}

/*==================================================
                 STAT CARDS
==================================================*/

.stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: .35s;
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(11, 31, 58, 0.20);
    }

    .stat-card h3 {
        color: #0b1f3a;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .stat-card p {
        color: #555;
        font-size: 18px;
        margin: 0;
    }

/*=========================================
            FLOATING BADGE
=========================================*/

.floating-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    color: #0b1f3a;
    font-weight: 600;
    font-size: 15px;
    z-index: 5;
    animation: floatingBadge 3s ease-in-out infinite;
}

    .floating-badge i {
        color: #0b1f3a;
        font-size: 22px;
    }

@keyframes floatingBadge {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.aircraft-image:hover .floating-badge {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(91,61,245,.25);
}
/*==================================================
                FEATURE CARDS
==================================================*/

.feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 28px;
    height: 100%;
    transition: .35s;
    border: 1px solid #ececec;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #0b1f3a;
        box-shadow: 0 20px 40px rgba(91,61,245,.18);
    }

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(91,61,245,.12);
    color: #0b1f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: .35s;
}

.feature-card:hover .feature-icon {
    background: #0b1f3a;
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.feature-card h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 16px;
    margin: 0;
}



/*=========================================
              TRAVEL PLAN SECTION
=========================================*/
/*==================================================
            TRAVEL SECTION
==================================================*/

.travel-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

    .travel-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(rgba(123,97,255,.08), transparent 70%);
        top: -120px;
        left: -120px;
        pointer-events: none;
    }

    .travel-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: radial-gradient(rgba(91,61,245,.06), transparent 70%);
        right: -120px;
        bottom: -120px;
        pointer-events: none;
    }


/*==================================================
                    HEADING
==================================================*/

.travel-heading {
    text-align: center;
    margin: 0 auto 70px;
}

.travel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(91,61,245,.08);
    color: #0b1f3a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.travel-heading h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 18px;
}

.travel-heading p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}


/*==================================================
                    FLIGHT PATH
==================================================*/

.flight-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 180px;
    margin: 0 auto 40px;
}

.flight-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

    .flight-svg path {
        stroke: #0b1f3a;
        stroke-width: 3;
        stroke-linecap: round;
        fill: none;
        stroke-dasharray: 12 12;
    }


/*==================================================
                    AIRPLANE
==================================================*/

.plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    font-size: 28px;
    box-shadow: 0 35px 70px rgba(11, 31, 58, 0.25);
    z-index: 10;
    transition: transform .3s;
}

    .plane:hover {
        transform: scale(1.08);
    }

.trip-wrapper {
    position: relative;
    flex: 0.35;
    width: 100%;
}

.trip-select {
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid #E4E6F1;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: .3s;
}

    .trip-select:hover {
        border-color: #0b1f3a;
    }

.trip-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .trip-left i {
        color: #0b1f3a;
        font-size: 18px;
    }

.trip-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    border: 1px solid #ececec;
    display: none;
    overflow: hidden;
    z-index: 1000;
    text-align: left;
}

    .trip-dropdown.show {
        display: block;
    }

.trip-option {
    padding: 14px 18px;
    cursor: pointer;
    transition: .25s;
    color: #000;
    font-weight: 500;
}

    .trip-option:hover,
    .trip-option.active {
        background: #F5F3FF;
        color: #0b1f3a;
    }

#selectedTrip {
    color: #000;
    font-weight: 500;
}
/*==================================================
                    MAIN LAYOUT
==================================================*/

.travel-layout {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
}

.travel-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/*==================================================
                    CENTER IMAGE
==================================================*/

.travel-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.travel-circle {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 25px 60px rgba(91,61,245,.18), 0 0 0 1px rgba(91,61,245,.08);
}

    .travel-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s ease;
    }

    .travel-circle:hover img {
        transform: scale(1.08);
    }


/*==================================================
                    OVERLAY
==================================================*/

.circle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.72), rgba(0,0,0,.18) );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

    .circle-overlay h3 {
        color: #fff;
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 28px;
    }

.travel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 40px;
    background: linear-gradient(135deg, #16325b 0%, #0b1f3a 100%);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

    .travel-btn:hover {
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(11, 31, 58, 0.35);
    }

/*==================================================
                TRAVEL CARDS
==================================================*/

.travel-card {
    position: relative;
    background: #fff;
    border-radius: 26px;
    padding: 20px;
    border: 1px solid rgba(91,61,245,.10);
    box-shadow: 0 18px 45px rgba(15,23,42,.06);
    transition: all .4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

    .travel-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #16325b, #0b1f3a);
        transform: scaleX(0);
        transition: .4s;
        transform-origin: left;
    }

    .travel-card:hover {
        transform: translateY(-12px);
        border-color: #0b1f3a;
        box-shadow: 0 35px 70px rgba(11, 31, 58, 0.25);
    }

        .travel-card:hover::before {
            transform: scaleX(1);
        }


/*==================================================
                    ICON
==================================================*/

.icon-box {
    width: 60px;
    height: 53px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #274d82, #16325b, #0b1f3a);
    color: #fff;
    font-size: 29px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(91, 61, 245, .28);
    transition: .45s;
}

.travel-card:hover .icon-box {
    transform: rotate(-8deg) scale(1.08);
}


/*==================================================
                    TEXT
==================================================*/

.travel-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0b1f3a;
    line-height: 1.35;
    margin-bottom: 18px;
}

.travel-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}


/*==================================================
                SCROLL ANIMATION
==================================================*/

.travel-heading {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

.travel-center {
    opacity: 0;
    transform: scale(.85);
    transition: .8s ease;
}

.travel-show {
    opacity: 1 !important;
    transform: none !important;
}


/*==================================================
                CIRCLE EFFECT
==================================================*/

.travel-circle {
    animation: floatCircle 5s ease-in-out infinite;
}

@keyframes floatCircle {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


/*==================================================
                    BUTTON
==================================================*/

.travel-btn {
    position: relative;
    overflow: hidden;
}

    .travel-btn::before {
        content: "";
        position: absolute;
        left: -120%;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,.22);
        transform: skewX(-25deg);
        transition: .55s;
    }

    .travel-btn:hover::before {
        left: 130%;
    }

.from-to-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-field {
    flex: 1;
}

.swap-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E4E7F0;
    color: #0b1f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
}

    .swap-btn:hover {
        background: #0b1f3a;
        color: #fff;
        transform: translate(-50%, -50%) rotate(180deg);
        box-shadow: 0 10px 25px rgba(91,61,245,.25);
    }

    .swap-btn i {
        transition: .35s;
    }
/*==================================================
                    RESPONSIVE
==================================================*/

@media(max-width:1199px) {

    .travel-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .travel-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 !important;
        gap: 25px;
    }

    .travel-center {
        order: -1;
    }

    .travel-card {
        width: 330px;
    }
}


@media(max-width:991px) {

    .travel-section {
        padding: 90px 0;
    }

    .navbar {
        background: rgba(0, 0, 0, .25);
        backdrop-filter: blur(24px);
    }

    .travel-heading h2 {
        font-size: 38px;
    }

    .travel-circle {
        width: 320px;
        height: 320px;
    }

    .circle-overlay h3 {
        font-size: 34px;
    }
}


@media(max-width:767px) {

    .travel-section {
        padding: 70px 0;
    }

    .travel-heading {
        margin-bottom: 50px;
    }

        .travel-heading h2 {
            font-size: 30px;
        }

        .travel-heading p {
            font-size: 15px;
        }

    .travel-circle {
        width: 260px;
        height: 260px;
    }

    .circle-overlay {
        padding: 25px;
    }

        .circle-overlay h3 {
            font-size: 26px;
        }

    .travel-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .travel-column {
        flex-direction: column;
    }

    .travel-card {
        width: 100%;
        padding: 28px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .travel-card h4 {
        font-size: 22px;
    }

    .travel-card p {
        font-size: 15px;
    }

    .flight-wrapper {
        display: none;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        font-weight: 800;
    }
}


/* Destinations Section*/
/*==================================================
               POPULAR DESTINATIONS
==================================================*/

.popular-destinations {
    padding: 0px 0px 80px;
    overflow: hidden;
    position: relative;
}

    .popular-destinations::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(37,99,235,.05);
        top: -180px;
        right: -180px;
        filter: blur(60px);
    }

    .popular-destinations::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(37,99,235,.04);
        bottom: -140px;
        left: -140px;
        filter: blur(50px);
    }

/*=========================================
           LEFT CONTENT
=========================================*/

.destination-intro {
    position: sticky;
    top: 120px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #dbeafe;
    color: #0b1f3a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.destination-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1f3a;
    line-height: 1.15;
    margin-bottom: 22px;
}

.destination-intro p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 30px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0b1f3a;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .explore-btn:hover {
        background: #0b1f3a;
        color: #fff;
        transform: translateY(-3px);
    }



.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #0b1f3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/*=========================================
            FLOATING LAYOUT
=========================================*/

.floating-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.large-card {
    height: 330px;
}

.small-cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

/*=========================================
          DESTINATION CARD
=========================================*/

.destination-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 250px;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    transform: translateX(180px);
    opacity: 0;
    transition: transform .9s cubic-bezier(.22,.61,.36,1), opacity .9s ease, box-shadow .35s ease;
}

    .destination-card.show {
        transform: translateX(0);
        opacity: 1;
    }

    .destination-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.92), rgba(15,23,42,.25), rgba(15,23,42,.05));
    transition: .4s;
}

.destination-info {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 5;
    color: #fff;
}

    .destination-info span,
    .destination-info .route {
        font-size: 14px;
        letter-spacing: 1px;
        opacity: .85;
    }

    .destination-info h3 {
        font-size: 34px;
        font-weight: 800;
        margin: 0px 0 0px;
    }

.bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

    .bottom-info small {
        display: block;
        color: #dbeafe;
        margin-bottom: 5px;
    }

    .bottom-info h4 {
        font-size: 30px;
        color: #fff;
        font-weight: 800;
        margin: 0;
    }

    .bottom-info a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: .3s;
    }

/*=========================================
                HOVER
=========================================*/

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(11, 31, 58, 0.25);
}

    .destination-card:hover img {
        transform: scale(1.08);
    }

    .destination-card:hover .destination-overlay {
        background: linear-gradient( to top, rgba(11, 31, 58, 0.90), rgba(11, 31, 58, 0.50), rgba(11, 31, 58, 0.10) );
    }

    .destination-card:hover .bottom-info a {
        transform: translateX(8px);
    }

    .destination-card:hover h4 {
        transform: scale(1.08);
    }

/*=========================================
         SAFETY & EXCELLENCE
=========================================*/

.safety-section {
    position: relative;
    overflow: hidden;
}

    .safety-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(91,61,245,.06);
        border-radius: 50%;
        top: -180px;
        right: -150px;
        filter: blur(80px);
    }

    .safety-section::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        background: rgba(91,61,245,.05);
        border-radius: 50%;
        bottom: -120px;
        left: -120px;
        filter: blur(60px);
    }

/*=============================
         IMAGE
==============================*/

.aircraft-wrapper {
    position: relative;
}

.aircraft-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    transform: scale(.85) rotate(-6deg);
    opacity: 0;
    transition: 1s cubic-bezier(.22,.61,.36,1);
}

    .aircraft-image.show {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    .aircraft-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s ease;
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(15,23,42,.55), rgba(15,23,42,.15), transparent );
}

.aircraft-image:hover img {
    transform: scale(1.08);
}

.aircraft-image:hover {
    box-shadow: 0 35px 70px rgba(91,61,245,.25);
}

/*=============================
          FLOATING BADGE
==============================*/

.floating-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

    .floating-badge i {
        color: #0b1f3a;
        font-size: 20px;
    }

.journey-plane {
    background: linear-gradient(135deg,#7B61FF,#0b1f3a);
}

    .journey-plane i {
        color: #fff !important;
        font-size: 22px;
        transform: rotate(45deg);
    }
/*=========================================
                FOOTER
=========================================*/

.footer-section {
    position: relative;
    background: #0f1117;
    color: #fff;
    padding: 80px 0 30px;
    overflow: hidden;
}

    .footer-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(139,120,255,.16), rgba(91,61,245,.08), transparent 70%);
        top: -180px;
        left: -180px;
        border-radius: 50%;
        animation: footerGlow 8s ease-in-out infinite;
    }

    .footer-section::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(111,85,255,.12), transparent 70%);
        bottom: -180px;
        right: -150px;
        border-radius: 50%;
        animation: footerGlow 10s ease-in-out infinite reverse;
    }

.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/*=========================================
                BRAND
=========================================*/

.footer-logo {
    width: 210px;
    margin-bottom: 28px;
    transition: .4s;
}

    .footer-logo:hover {
        transform: scale(1.03);
    }

.footer-tagline {
    max-width: 320px;
    color: rgba(255,255,255,.75);
    font-size: 16px;
    line-height: 1.9;
}

/*=========================================
                TITLES
=========================================*/

.footer-links h3,
.footer-contact h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

    .footer-links h3::after,
    .footer-contact h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 65px;
        height: 3px;
        border-radius: 20px;
        background: linear-gradient(135deg, #16325b, #0b1f3a, #071426);
    }

/*=========================================
                LINKS
=========================================*/

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    position: relative;
    transition: .35s;
    font-size: 16px;
}

    .footer-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #16325b, #0b1f3a, #071426);
        transition: .35s;
    }

    .footer-links a:hover {
        color: #fff;
        padding-left: 8px;
    }

        .footer-links a:hover::after {
            width: 100%;
        }

/*=========================================
                CONTACT
=========================================*/

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.80);
    line-height: 1.7;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) rotate(-8deg);
    background: linear-gradient(135deg, #16325b, #0b1f3a, #071426);
}

/*=========================================
                BOTTOM
=========================================*/

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.55);
        font-size: 15px;
    }

.contact-link {
    color: rgba(255,255,255,.80);
    text-decoration: none;
    transition: .3s ease;
    line-height: 1.7;
}

    .contact-link:hover {
        color: #8B78FF;
    }

/*=========================================
                ANIMATION
=========================================*/

@keyframes footerGlow {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

/*=========================================
              RESPONSIVE
=========================================*/


@media(max-width:991px) {

    .contact-item {
        gap: 4px;
        justify-content: center;
        text-align: center;
    }

    .footer-icon {
        text-align: center;
        width: 223px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-tagline {
        margin: auto;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        text-align: center;
    }
}

@media(max-width:576px) {

    .footer-section {
        padding: 60px 0 25px;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 24px;
    }
}

/*=============================
          CONTENT
==============================*/

.safety-content {
    padding-left: 25px;
}

.section-badge {
    display: inline-block;
    background: rgba(91,61,245,.12);
    color: #0b1f3a;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.safety-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 20px;
    transform: translateX(-50px);
    opacity: 0;
    transition: .8s ease;
}

    .safety-content h2.show {
        transform: translateX(0);
        opacity: 1;
    }

.safety-content > p {
    font-size: 16px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: .8s ease;
}

    .safety-content > p.show {
        transform: translateY(0);
        opacity: 1;
    }

/*=============================
         FEATURE CARDS
==============================*/

.safety-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 22px;
    padding: 7px 14px;
    margin-bottom: 18px;
    border-left: 5px solid transparent;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    transform: translateX(-70px) scale(.9);
    opacity: 0;
    transition: .7s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}

    .safety-card.show {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .safety-card:hover {
        border-left-color: #0b1f3a;
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(91,61,245,.18);
    }

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(91,61,245,.12);
    color: #0b1f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: .4s ease;
}

.safety-card:hover .feature-icon {
    background: #0b1f3a;
    color: #fff;
    transform: rotate(-10deg) scale(1.08);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 6px;
}

.feature-content p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/*=========================================
          FEATURED DESTINATIONS
=========================================*/

.featured-destinations {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

    .featured-destinations::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(91,61,245,.05);
        border-radius: 50%;
        top: -180px;
        right: -160px;
        filter: blur(80px);
    }

    .featured-destinations::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(91,61,245,.04);
        border-radius: 50%;
        bottom: -150px;
        left: -150px;
        filter: blur(70px);
    }

/*=========================================
                HEADING
=========================================*/

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

    .section-heading h2 {
        font-size: 44px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 18px;
    }

    .section-heading p {
        font-size: 17px;
        color: #64748b;
        line-height: 1.8;
    }

/*=========================================
              LAYOUT
=========================================*/

.destination-slider {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/*=========================================
                CARD
=========================================*/

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
    cursor: pointer;
}

    .featured-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s ease;
    }

    .featured-card:hover img {
        transform: scale(1.08);
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.72), rgba(0,0,0,.18), transparent );
}

/*=========================================
              LARGE CARD
=========================================*/

.large-card {
    height: 350px;
}

.preview-card {
    height: 470px;
}

/*=========================================
           CONTENT
=========================================*/

.card-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 20px;
    color: #fff;
    z-index: 5;
}

.route-type {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(91,61,245,.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.large-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.preview-card h3 {
    font-size: 30px;
    font-weight: 700;
}

.flight-routeinh {
    color: #e5e7eb;
    font-size: 17px;
    margin-bottom: 7px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-footer small {
        display: block;
        color: #d1d5db;
        margin-bottom: 5px;
    }

    .card-footer h4 {
        font-size: 34px;
        font-weight: 800;
        margin: 0;
    }

/*=========================================
             BUTTON
=========================================*/

.change-btn {
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: #0b1f3a;
    color: #fff;
    font-size: 24px;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.35);
}

    .change-btn:hover {
        transform: rotate(-45deg) scale(1.08);
        background: #0b1f3a;
    }

/*=========================================
             CARD HOVER
=========================================*/

.featured-card {
    transition: transform .45s ease, box-shadow .45s ease;
}

    .featured-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 70px rgba(91,61,245,.20);
    }

        .featured-card:hover .route-type {
            background: #0b1f3a;
        }

/*=========================================
            ANIMATION STATES
=========================================*/

.large-card.animating {
    transform: scale(.97);
    opacity: .7;
}

.preview-card.animating {
    transform: translateX(-25px);
    opacity: .75;
}

.fade-text {
    opacity: 0;
    transform: translateY(15px);
    transition: .35s;
}

/*=========================================
           TESTIMONIAL SECTION
=========================================*/

.testimonial-section {
    position: relative;
    overflow: hidden;
}

    .testimonial-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(91,61,245,.05);
        border-radius: 50%;
        top: -180px;
        right: -180px;
        filter: blur(80px);
    }

    .testimonial-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(91,61,245,.04);
        border-radius: 50%;
        bottom: -150px;
        left: -150px;
        filter: blur(70px);
    }

/*=========================================
               HEADING
=========================================*/

.testimonial-header {
    margin: 0 auto 55px;
}

    .testimonial-header h2 {
        font-size: 44px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 18px;
    }

    .testimonial-header p {
        color: #6b7280;
        font-size: 17px;
        line-height: 1.8;
    }

/*=========================================
              WRAPPER
=========================================*/

.testimonial-wrapper {
    position: relative;
    height: 400px;
    margin: auto;
}

/*=========================================
                 CARD
=========================================*/

.testimonial-card {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(91,61,245,.08);
    border-radius: 32px;
    padding: 30px 50px;
    text-align: center;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    opacity: 0;
    visibility: hidden;
    transform: translateX(140px);
    transition: transform .8s cubic-bezier(.22,.61,.36,1), opacity .8s ease, visibility .8s;
}

    /* Active */

    .testimonial-card.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        z-index: 5;
    }

    /* Leaving */

    .testimonial-card.exit {
        opacity: 0;
        transform: translateX(-140px);
        z-index: 4;
    }

    /* Entering */

    .testimonial-card.enter {
        opacity: 0;
        visibility: visible;
        transform: translateX(140px);
        z-index: 6;
    }

/*=========================================
              QUOTE ICON
=========================================*/

.quote-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91,61,245,.12);
    color: #0b1f3a;
    font-size: 38px;
    transition: .35s;
}

.testimonial-card:hover .quote-icon {
    background: #0b1f3a;
    color: #fff;
    transform: rotate(-12deg) scale(1.08);
}

/*=========================================
               CONTENT
=========================================*/

.testimonial-card h3 {
    font-size: 38px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 22px;
}

.testimonial-card p {
    max-width: 720px;
    margin: auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
}

/*=========================================
                 USER
=========================================*/

.testimonial-user {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

    .testimonial-user img {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #0b1f3a;
        box-shadow: 0 8px 20px rgba(91,61,245,.25);
    }

    .testimonial-user h5 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #0b1f3a;
        text-align: left;
    }

    .testimonial-user span {
        display: block;
        margin-top: 4px;
        color: #6b7280;
        font-size: 15px;
        text-align: left;
    }

/*=========================================
              NAVIGATION
=========================================*/

.testimonial-navigation {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.testimonial-btn {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0b1f3a;
    font-size: 22px;
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.08);
    transition: .35s;
    border: 1px solid #0b1f3a;
}

    .testimonial-btn:hover {
        background: #0b1f3a;
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(11, 31, 58, 0.08);
    }

/*=========================================
               CARD HOVER
=========================================*/

.testimonial-card:hover {
    transform: translateY(-6px);
    /*    box-shadow: 0 35px 80px rgba(91,61,245,.18);*/
}


/*==================================================
                 FAQ SECTION
==================================================*/

.faq-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .faq-section::before {
        content: "";
        position: absolute;
        width: 550px;
        height: 550px;
        top: -220px;
        left: -180px;
        z-index: 0;
    }

    .faq-section::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        bottom: -180px;
        right: -120px;
        z-index: 0;
    }

    .faq-section .container {
        position: relative;
        z-index: 2;
    }

/*==============================
           Heading
===============================*/

.faq-header {
    margin-bottom: 70px;
}

.faq-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(91,61,245,.08);
    color: #0b1f3a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1f3a;
    line-height: 1.15;
    margin-bottom: 18px;
}

.faq-header p {
    max-width: 650px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
}


/*==============================
          Wrapper
===============================*/

.faq-wrapper {
    margin: auto;
}

/*==============================
           Cards
===============================*/

.faq-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(91,61,245,.10);
    border-radius: 30px;
    transition: .45s;
}

    .faq-card.active {
        display: flex;
        align-items: center;
        gap: 35px;
        padding: 17px;
        border: 2px solid rgba(11, 31, 58, 0.18);
    }


/*==============================
           Icon
===============================*/

.faq-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #274d82, #16325b, #0b1f3a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.30);
}

.faq-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 15px;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #64748b;
}


/*==============================
          Flight Path
===============================*/

.faq-path {
    position: relative;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .faq-path span {
        width: 72%;
        border-top: 3px dashed rgba(11, 31, 58, 0.18);
    }

    .faq-path i {
        position: absolute;
        background: #fff;
        color: #0b1f3a;
        padding: 12px;
        border-radius: 50%;
        font-size: 28px;
        box-shadow: 0 12px 30px rgba(11, 31, 58, 0.18);
        animation: flyPlane 4s ease-in-out infinite;
    }

@keyframes flyPlane {

    0%, 100% {
        transform: translateX(-12px) rotate(-10deg);
    }

    50% {
        transform: translateX(12px) rotate(10deg);
    }
}


/*==============================
          Bottom Cards
===============================*/

.faq-bottom {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.faq-card.small {
    padding: 17px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .faq-card.small::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 0;
        background: #0b1f3a;
        transition: .45s;
    }

    .faq-card.small:hover::before {
        height: 100%;
    }

    .faq-card.small:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(91,61,245,.16);
    }

    .faq-card.small .faq-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .faq-card.small h4 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.35;
        color: #0b1f3a;
    }


/*==============================
          Scroll Animation
===============================*/

.faq-header,
.faq-card.active,
.faq-card.small {
    opacity: 0;
}

.faq-header {
    transform: translateY(50px);
}

.faq-card.active {
    transform: translateY(70px);
}

.faq-card.small:first-child {
    transform: translateX(-120px);
}

.faq-card.small:last-child {
    transform: translateX(120px);
}

.faq-show {
    opacity: 1 !important;
    transform: translate(0,0) !important;
    transition: .9s cubic-bezier(.22,.61,.36,1);
}


/*==============================
          Responsive
===============================*/

@media(max-width:991px) {

    .faq-header h2 {
        font-size: 36px;
    }

    .faq-card.active {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }

    .faq-bottom {
        grid-template-columns: 1fr;
    }

    .faq-card.small {
        min-height: 180px;
    }

        .faq-card.small h4 {
            font-size: 22px;
        }
}

@media(max-width:576px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 45px;
    }

        .faq-header h2 {
            font-size: 30px;
        }

    .faq-content h3 {
        font-size: 24px;
    }

    .faq-content p {
        font-size: 16px;
    }

    .faq-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

/*=========================================
             RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .testimonial-wrapper {
        height: 520px;
    }

    .testimonial-card {
        padding: 50px 40px;
    }

    .testimonial-header h2 {
        font-size: 38px;
    }

    .testimonial-card h3 {
        font-size: 32px;
    }
}

@media(max-width:767px) {

    .testimonial-section {
        padding: 70px 0;
    }

    .testimonial-wrapper {
        height: 600px;
    }

    .testimonial-card {
        padding: 40px 25px;
        border-radius: 24px;
    }

    .testimonial-header h2 {
        font-size: 30px;
    }

    .testimonial-header p {
        font-size: 16px;
    }

    .testimonial-card h3 {
        font-size: 26px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.8;
    }

    .testimonial-user {
        flex-direction: column;
    }

        .testimonial-user h5,
        .testimonial-user span {
            text-align: center;
        }

    .testimonial-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/*=========================================
             RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .large-card {
        height: 430px;
    }

    .preview-card {
        height: 430px;
    }

    .large-card h3 {
        font-size: 40px;
    }
}

@media(max-width:991px) {

    .destination-slider {
        grid-template-columns: 1fr;
    }

    .preview-card {
        height: 300px;
    }

    .large-card {
        height: 420px;
    }

    .section-heading {
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {
    .floating-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        justify-content: center;
        font-size: 14px;
        padding: 12px 18px;
    }

        .floating-badge i {
            font-size: 20px;
        }

    .featured-destinations {
        padding: 60px 0;
    }

    .large-card {
        height: 340px;
    }

    .preview-card {
        height: 230px;
    }

    .card-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .large-card h3 {
        font-size: 32px;
    }

    .preview-card h3 {
        font-size: 24px;
    }

    .flight-route {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .card-footer h4 {
        font-size: 28px;
    }

    .change-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}


/*=============================
                    RESPONSIVE
            ==============================*/

@media(max-width:991px) {

    .safety-section {
        padding: 70px 0;
    }

    .aircraft-image {
        height: 380px;
    }

    .safety-content {
        padding-left: 0;
    }

        .safety-content h2 {
            font-size: 36px;
        }

    .feature-content h4 {
        font-size: 18px;
    }
}

@media(max-width:767px) {

    .safety-section {
        padding: 60px 0;
    }

    .aircraft-image {
        height: 260px;
    }

    .safety-content {
        text-align: center;
    }

    .section-badge {
        margin-bottom: 15px;
    }

    .safety-content h2 {
        font-size: 30px;
    }

    .floating-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        justify-content: center;
    }

    .safety-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .feature-icon {
        margin-bottom: 5px;
    }
}

/*=========================================
                RESPONSIVE
            =========================================*/

@media(max-width:991px) {

    .destination-intro {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-badge {
        margin: auto auto 18px;
    }


    .large-card {
        height: 280px;
    }

    .destination-intro h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .small-cards {
        grid-template-columns: 1fr;
    }

    .large-card {
        height: 240px;
    }

    .destination-info {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

        .destination-info h3 {
            font-size: 28px;
        }

    .bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .destination-intro h2 {
        font-size: 32px;
    }

    .destination-intro p {
        font-size: 16px;
    }
}

@media(max-width:767px) {

    .why-us {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .section-text {
        font-size: 16px;
    }

    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 25px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .stat-card p {
        font-size: 17px;
    }

    .traveller-wrapper {
        width: 100%;
    }
}

@media(max-width: 576px) {

    .logo {
        height: 36px;
    }

    .inquiry-box {
        justify-content: center;
        margin-top: 15px;
    }

    .phone-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .inquiry-text {
        font-size: 12px;
    }

    .phone-number {
        font-size: 16px;
    }

    .search-card {
        padding: 18px;
    }

    .booking-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .option-select {
        width: 100%;
    }
}

@media(min-width:1200px) {
    .descard {
        height: 470px;
    }
}

/*==================================================
                FINAL CTA
==================================================*/

.homepage-cta {
    background: linear-gradient(135deg,#0b1f3a,#16325b);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(11,31,58,.15);
}

    .homepage-cta::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        top: -180px;
        right: -140px;
    }

    .homepage-cta::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(255,255,255,.04);
        border-radius: 50%;
        bottom: -140px;
        left: -100px;
    }

.homepage-cta-content {
    position: relative;
    z-index: 2;
}

.homepage-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.homepage-cta h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 18px;
}

.homepage-cta p {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 35px;
}

.homepage-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.homepage-call-btn,
.homepage-support-btn {
    padding: 15px 34px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
}

.homepage-call-btn {
    background: #fff;
    color: #0b1f3a;
}

    .homepage-call-btn:hover {
        transform: translateY(-4px);
        color: #0b1f3a;
        text-decoration: none;
    }

.homepage-support-btn {
    border: 2px solid rgba(255,255,255,.35);
    color: #fff;
}

    .homepage-support-btn:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
        text-decoration: none;
        transform: translateY(-4px);
    }

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .homepage-cta {
        padding: 60px 35px;
    }

        .homepage-cta h2 {
            font-size: 36px;
        }
}

@media(max-width:767px) {

    .homepage-cta {
        padding: 45px 25px;
        border-radius: 20px;
    }

        .homepage-cta h2 {
            font-size: 30px;
        }

        .homepage-cta p {
            font-size: 16px;
        }

    .homepage-cta-buttons {
        flex-direction: column;
    }

    .homepage-call-btn,
    .homepage-support-btn {
        width: 100%;
    }
}

/*
-----*-*-*--*-**-*-*-*-*-**-*-*--*-*-*-*-*-
Common CSS form small pages
-------------*-*-*-*-*-*-*-*-*-*-**-*-*-*-**/
.flightdeals-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0 50px;
    background: radial-gradient(circle at top right, rgba(11,31,58,.08) 0%, transparent 35%), linear-gradient( 135deg, #ffffff 0%, #f7faff 45%, #edf4fc 100% );
}

    .flightdeals-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(11,31,58,.04);
        top: -180px;
        right: -140px;
    }

    .flightdeals-hero::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(11,31,58,.095);
        bottom: -120px;
        left: -90px;
    }



.flightdeals-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,58,.55);
}

.flightdeals-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: auto;
    color: #fff;
}

    .flightdeals-content h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 18px;
        line-height: 1.15;
    }

    .flightdeals-content p {
        font-size: 16px;
        color: rgba(255,255,255,.92);
        margin-bottom: 35px;
        line-height: 1.5;
    }

.flightdeals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 12px;
    background: #0b1f3a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

    .flightdeals-btn:hover {
        background: #16325b;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }


/*=========================================
            RESPONSIVE
    =========================================*/

@media(max-width:991px) {

    .flightdeals-hero {
        min-height: 360px;
    }

    .flightdeals-content h1 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .flightdeals-hero {
        min-height: 300px;
        border-radius: 14px;
    }

    .flightdeals-content h1 {
        font-size: 30px;
    }

    .flightdeals-content p {
        font-size: 15px;
    }

    .flightdeals-btn {
        width: 220px;
    }
}

/*==================================================
                    PRIVACY POLICY
    ==================================================*/

.privacy-section {
    background: #fff;
}


.privacy-header p {
    font-size: 16px;
    line-height: 1.5;
    color: #667085;
}


.privacy-card {
    border-radius: 20px;
    padding-top: 35px;
    margin-bottom: 35px;
    transition: .35s;
}

.privacy-subsection {
    margin-top: 35px;
}

.privacy-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 18px;
}

.privacy-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.privacy-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #667085;
    margin-bottom: 20px;
}

.privacy-card ul {
    margin: 0;
    padding-left: 22px;
}

.privacy-card li {
    font-size: 16px;
    color: #475467;
    line-height: 1.5;
    margin-bottom: 10px;
}

    .privacy-card li:last-child {
        margin-bottom: 0;
    }

    .privacy-card li::marker {
        color: #0b1f3a;
    }

.reveal,
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease;
}

    .reveal.activeprivacy,
    .reveal-item.activeprivacy {
        opacity: 1;
        transform: none;
    }



@media(max-width:991px) {

    .privacy-section {
        padding: 70px 0;
    }

    .privacy-header h1 {
        font-size: 36px;
    }

    .privacy-card {
        padding: 30px;
    }

        .privacy-card h2 {
            font-size: 28px;
        }

        .privacy-card h3 {
            font-size: 22px;
        }
}

@media(max-width:767px) {

    .privacy-section {
        padding: 60px 0;
    }

    .privacy-header {
        margin-bottom: 40px;
    }

        .privacy-header h1 {
            font-size: 30px;
        }

        .privacy-header p {
            font-size: 16px;
        }

    .privacy-card {
        padding: 0px;
        border-radius: 16px;
    }

        .privacy-card h2 {
            font-size: 24px;
        }

        .privacy-card h3 {
            font-size: 20px;
        }

        .privacy-card p,
        .privacy-card li {
            font-size: 16px;
            line-height: 1.7;
        }
}

/*=====================================================
                        Contact Us
    =====================================================*/

.contactus-hero {
    padding: 90px 0 0px;
    overflow: hidden;
}

.contactus-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.contactus-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(11,31,58,.06);
    color: #0b1f3a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contactus-hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    color: #0b1f3a;
    margin-bottom: 15px;
}

.contactus-hero-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #5d6778;
}

.contactus-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

    .contactus-hero-image img {
        position: relative;
        width: 100%;
        z-index: 2;
    }

.contactus-wrapper {
    padding: 90px 0;
}

.contactus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contactus-info-box h2,
.contactus-form-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 5px;
}

.contactus-info-box > p,
.contactus-form-box > p {
    color: #667085;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contactus-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 15px;
    border: 1px solid #edf1f7;
    border-radius: 22px;
    margin-bottom: 22px;
    transition: .35s;
}

    .contactus-card:hover {
        transform: translateY(-6px);
        border-color: #0b1f3a;
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

.contactus-icon {
    width: 45px;
    height: 45px;
    border-radius: 18px;
    background: rgba(11,31,58,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contactus-icon i {
        font-size: 20px;
        color: #0b1f3a;
    }

.contactus-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 5px;
}

.contactus-card p {
    margin: 0;
    color: #667085;
    line-height: 1.2;
    font-size: 14px;
}

.contactus-card a {
    color: #0b1f3a;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .contactus-card a:hover {
        color: #244c84;
    }


.contactus-form-box {
    padding: 20px 40px;
    border: 1px solid #edf1f7;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15,23,42,.06);
}

.contactus-input {
    width: 100%;
    height: 62px;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    padding: 0 22px;
    font-size: 16px;
    color: #0b1f3a;
    transition: .35s;
    outline: none;
    background: #fff;
}

    .contactus-input::placeholder {
        color: #98a2b3;
    }

    .contactus-input:focus {
        border-color: #0b1f3a;
        box-shadow: 0 0 0 4px rgba(11,31,58,.08);
    }

.contactus-textarea {
    height: 140px;
    resize: none;
    padding: 20px 22px;
}

.contactus-submit-btn {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 16px;
    background: #0b1f3a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: .35s;
}

    .contactus-submit-btn:hover {
        background: #14345d;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(11,31,58,.18);
    }

    .contactus-submit-btn i {
        transition: .35s;
    }

    .contactus-submit-btn:hover i {
        transform: translateX(5px);
    }


.contactus-section-heading {
    text-align: center;
    margin-bottom: 70px;
}

    .contactus-section-heading span {
        display: inline-flex;
        padding: 10px 22px;
        border-radius: 40px;
        background: rgba(11,31,58,.07);
        color: #0b1f3a;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .contactus-section-heading h2 {
        font-size: 46px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 20px;
    }

    .contactus-section-heading p {
        max-width: 720px;
        margin: auto;
        color: #667085;
        line-height: 1.9;
    }


@media(max-width:1200px) {

    .contactus-services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}



@media(max-width:991px) {

    .contactus-hero-grid,
    .contactus-grid,
    .office-hours-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contactus-hero {
        padding-top: 70px;
    }

    .contactus-hero-content {
        text-align: center;
    }

        .contactus-hero-content p {
            margin: auto;
        }

    .contactus-hero-image {
        order: -1;
    }

    .contactus-form-box {
        padding: 40px;
    }

    .contactus-final-box {
        padding: 50px 35px;
    }
}



@media(max-width:768px) {

    .contactus-hero-content h1 {
        font-size: 36px;
    }

    .contactus-info-box h2,
    .contactus-form-box h2,
    .office-left h2 {
        font-size: 34px;
    }

    .contactus-section-heading h2 {
        font-size: 34px;
    }

    .contactus-final-box h2 {
        font-size: 34px;
    }

    .contactus-services-grid {
        grid-template-columns: 1fr;
    }

    .contactus-card {
        flex-direction: column;
        text-align: center;
        display: block;
    }

    .contactus-icon {
        margin: auto;
    }

    .contactus-final-buttons {
        flex-direction: column;
    }

    .contactus-call-btn,
    .contactus-mail-btn {
        width: 100%;
    }
}


@media(max-width:576px) {

    .contactus-wrapper,
    .contactus-services,
    .office-hours-section,
    .contactus-faq-section,
    .contactus-final-cta {
        padding: 70px 0;
    }

    .contactus-form-box {
        padding: 30px 20px;
    }

    .contactus-final-box {
        padding: 40px 25px;
    }

        .contactus-final-box h2 {
            font-size: 30px;
        }

    .contactus-hero-content h1 {
        font-size: 34px;
    }

    .contactus-input {
        height: 56px;
    }

    .contactus-textarea {
        height: 150px;
    }

    .faq-contactus-question {
        font-size: 17px;
        padding: 22px;
    }
}

/*==================================================
                    DISCLAIMER Page
    ==================================================*/


.disclaimer-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1f3a;
    margin: 55px 0 25px;
}

.disclaimer-content p {
    font-size: 16px;
    color: #475467 !important;
    line-height: 1.5;
    margin-bottom: 24px;
}

.contact-details p {
    margin-bottom: 12px;
}

.contact-details strong {
    color: #0b1f3a;
    font-weight: 700;
}


@media(max-width:991px) {

    .disclaimer-section {
        padding: 70px 0;
    }

    .disclaimer-content h1 {
        font-size: 36px;
    }

    .disclaimer-content h2 {
        font-size: 28px;
    }

    .disclaimer-content p {
        font-size: 16px;
    }
}

@media(max-width:767px) {

    .disclaimer-section {
        padding: 20px 0;
    }

    .disclaimer-content h1 {
        font-size: 30px;
    }

    .disclaimer-content h2 {
        font-size: 24px;
    }

    .disclaimer-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}



/*==================================================
                    Our Mission Page
    ==================================================*/

.cmncard {
    padding: 38px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #edf2f7;
    margin-top: 20px;
}

    .cmncard:hover {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }



.missionpage-values,
.missionpage-video,
.missionpage-trust,
.missionpage-video {
    padding-top: 50px;
}

.missionpage-support {
    padding-bottom: 50px;
}

.missionpage-title {
    text-align: center;
    margin-bottom: 20px;
}

.missionpage-title-left {
    text-align: left;
}

.missionpage-title span {
    display: inline-block;
    color: #0b1f3a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.missionpage-title h2 {
    color: #0b1f3a;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
}

.missionpage-text p {
    color: #667085;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
}


.missionpage-card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.missionpage-card {
    padding: 45px 35px;
    border: 1px solid #e9edf3;
    border-radius: 24px;
    transition: .35s ease;
    height: 100%;
}

    .missionpage-card:hover {
        transform: translateY(-8px);
        border-color: #0b1f3a;
        box-shadow: 0 20px 45px rgba(11,31,58,.08);
    }

.missionpage-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #f3f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: .35s;
}

.missionpage-card:hover .missionpage-icon {
    background: #0b1f3a;
}

.missionpage-icon i {
    font-size: 24px;
    color: #0b1f3a;
    transition: .35s;
}

.missionpage-card:hover .missionpage-icon i {
    color: #fff;
}

.missionpage-card h3 {
    color: #0b1f3a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

.missionpage-card p {
    color: #667085;
    line-height: 1.5;
    margin: 0;
    font-size: 16px;
}


.missionpage-support-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.missionpage-support-content p {
    color: #667085;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.missionpage-support-image {
    position: relative;
}

    .missionpage-support-image img {
        width: 100%;
        border-radius: 30px;
        display: block;
        transition: .45s;
    }

    .missionpage-support-image:hover img {
        transform: scale(1.03);
        box-shadow: 0 30px 60px rgba(11,31,58,.12);
    }



.missionpage-video-wrapper {
    max-width: 850px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,.10);
}

    .missionpage-video-wrapper iframe {
        width: 100%;
        height: 420px;
        border: none;
        display: block;
    }

    .missionpage-video-wrapper video {
        width: 100%;
        display: block;
    }


.missionpage-hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.missionpage-show {
    opacity: 1;
    transform: translateY(0);
}


.missionpage-breadcrumb a {
    transition: .3s;
}

    .missionpage-breadcrumb a:hover {
        color: #d8e3f5;
    }


.missionpage-video-wrapper {
    transition: .35s;
}

    .missionpage-video-wrapper:hover {
        transform: translateY(-6px);
    }

@media(max-width:1200px) {

    .missionpage-support-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}



@media(max-width:992px) {



    .missionpage-title h2 {
        font-size: 34px;
    }

    .missionpage-card-grid {
        grid-template-columns: 1fr;
    }

    .missionpage-support-content {
        order: 2;
    }

    .missionpage-support-image {
        order: 1;
        max-width: 650px;
        margin: auto;
    }

    .missionpage-video-wrapper iframe {
        height: 500px;
    }
}



@media(max-width:768px) {


    .missionpage-values,
    .missionpage-support,
    .missionpage-trust,
    .missionpage-video {
        padding: 25px 0;
    }

    .missionpage-intro {
        padding: 0px;
    }

    .missionpage-hero {
        height: 320px;
    }

    .missionpage-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .missionpage-breadcrumb {
        justify-content: center;
    }

    .missionpage-hero-content h1 {
        font-size: 36px;
    }

    .missionpage-title h2 {
        font-size: 30px;
    }

    .missionpage-text p,
    .missionpage-support-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .missionpage-card {
        padding: 35px 28px;
    }

    .missionpage-video-wrapper iframe {
        height: 420px;
    }
}



@media(max-width:576px) {

    .missionpage-badge {
        padding: 8px 16px;
        font-size: 11px;
    }

    .missionpage-hero-content h1 {
        font-size: 36px;
    }

    .missionpage-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .missionpage-title h2 {
        font-size: 26px;
    }

    .missionpage-card h3 {
        font-size: 22px;
    }

    .missionpage-card {
        padding: 30px 24px;
    }

    .missionpage-icon {
        width: 64px;
        height: 64px;
    }

        .missionpage-icon i {
            font-size: 24px;
        }

    .missionpage-video-wrapper {
        border-radius: 18px;
    }

        .missionpage-video-wrapper iframe {
            height: 240px;
        }
}


/*=========================================
            FLIGHT DEALS page
    =========================================*/
.flightdeals-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0 50px;
    background: radial-gradient(circle at top right, rgba(11,31,58,.08) 0%, transparent 35%), linear-gradient( 135deg, #ffffff 0%, #f7faff 45%, #edf4fc 100% );
}

    .flightdeals-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(11,31,58,.04);
        top: -180px;
        right: -140px;
    }

    .flightdeals-hero::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(11,31,58,.095);
        bottom: -120px;
        left: -90px;
    }



.flightdeals-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,58,.55);
}

.flightdeals-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: auto;
    color: #fff;
}

    .flightdeals-content h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 18px;
        line-height: 1.15;
    }

    .flightdeals-content p {
        font-size: 18px;
        color: rgba(255,255,255,.92);
        margin-bottom: 35px;
    }

.flightdeals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 12px;
    background: #0b1f3a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

    .flightdeals-btn:hover {
        background: #16325b;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

@media(max-width:991px) {

    .flightdeals-hero {
        min-height: 360px;
    }

    .flightdeals-content h1 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .flightdeals-hero {
        min-height: 300px;
        border-radius: 14px;
    }

    .flightdeals-content h1 {
        font-size: 30px;
    }

    .flightdeals-content p {
        font-size: 15px;
    }

    .flightdeals-btn {
        width: 220px;
    }
}

.topdestination-section {
    padding: 50px 0;
}

.topdestination-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

    .topdestination-heading h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 18px;
        line-height: 1.2;
        position: relative;
    }

        .topdestination-heading h2::after {
            content: "";
            display: block;
            width: 90px;
            height: 4px;
            background: #0b1f3a;
            border-radius: 50px;
            margin: 18px auto 0;
        }

    .topdestination-heading p {
        font-size: 18px;
        color: #667085;
        line-height: 1.8;
    }


.flight-destination-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(11,31,58,.06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .flight-destination-item:hover {
        transform: translateY(-8px);
        border-color: rgba(11,31,58,.15);
        box-shadow: 0 22px 50px rgba(11,31,58,.12);
    }

.destination-thumb {
    overflow: hidden;
    flex-shrink: 0;
}

    .destination-thumb img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: transform .6s ease;
    }

.flight-destination-item:hover .destination-thumb img {
    transform: scale(1.06);
}


.destination-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .destination-content h4 {
        font-size: 24px;
        font-weight: 700;
        color: #0b1f3a;
        margin-bottom: 8px;
    }

    .destination-content span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #667085;
        font-size: 14px;
        margin-bottom: 4px;
    }

        .destination-content span i {
            color: #0b1f3a;
        }

    .destination-content p {
        font-size: 15px;
        color: #667085;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .destination-content strong {
        color: #0b1f3a;
    }

.destination-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: #0b1f3a;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s ease;
    margin-top: auto;
}

    .destination-book-btn:hover {
        background: #16325b;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }


@media(max-width:991px) {

    .topdestination-section {
        padding: 70px 0;
    }

    .topdestination-heading h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .topdestination-heading {
        margin-bottom: 40px;
    }

        .topdestination-heading h2 {
            font-size: 30px;
        }

        .topdestination-heading p {
            font-size: 16px;
        }

    .destination-thumb img {
        height: 220px;
    }
}


.popularroutes-section {
    padding: 0px;
}

.popularroutes-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

    .popularroutes-heading span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #0b1f3a;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .popularroutes-heading h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 20px;
        position: relative;
    }

        .popularroutes-heading h2::after {
            content: "";
            width: 90px;
            height: 4px;
            background: #0b1f3a;
            display: block;
            margin: 18px auto 0;
            border-radius: 30px;
        }

    .popularroutes-heading p {
        font-size: 18px;
        color: #667085;
        line-height: 1.8;
    }


.popularroutes-section .row {
    align-items: stretch;
}

    .popularroutes-section .row > [class*="col"] {
        display: flex;
    }



.route-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 35px rgba(11,31,58,.06);
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: .35s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

    .route-card.showinfd {
        opacity: 1;
        transform: none;
        transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease, border-color .35s ease;
    }

    .route-card:hover {
        transform: translateY(-10px);
        border-color: #0b1f3a25;
        box-shadow: 0 22px 60px rgba(11,31,58,.12);
    }

    .route-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 4px;
        background: #0b1f3a;
        transition: .45s;
    }

    .route-card:hover::before {
        width: 100%;
    }


.route-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

    .route-path span {
        font-size: 15px;
        font-weight: 700;
        color: #0b1f3a;
    }

    .route-path i {
        color: #0b1f3a;
        font-size: 22px;
        transition: .35s;
    }

.route-card:hover .route-path i {
    transform: rotate(180deg);
}

.route-price {
    text-align: center;
    margin-bottom: 25px;
}

    .route-price h3 {
        font-size: 36px;
        color: #0b1f3a;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .route-price small {
        color: #667085;
        font-size: 14px;
    }


.route-airline {
    text-align: center;
    color: #475467;
    font-weight: 600;
    margin-bottom: 10px;
}




.route-tag {
    width: max-content;
    margin: 0 auto 24px;
    background: #edf4fc;
    color: #0b1f3a;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}


.route-book-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #0b1f3a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    margin-top: auto;
}

    .route-book-btn:hover {
        background: #16325b;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }



@media(max-width:991px) {

    .popularroutes-section {
        padding: 80px 0;
    }

    .popularroutes-heading {
        margin-bottom: 50px;
    }

        .popularroutes-heading h2 {
            font-size: 36px;
        }
}

@media(max-width:767px) {

    .popularroutes-heading h2 {
        font-size: 30px;
    }

    .popularroutes-heading p {
        font-size: 16px;
    }

    .route-card {
        padding: 28px;
    }

    .route-price h3 {
        font-size: 34px;
    }
}

.travelbanner-section {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    background-image: url("/assets/images/ScrolAnimation.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .travelbanner-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(11,31,58,.55), rgba(11,31,58,.55) );
    }

.travelbanner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    text-align: center;
    color: #fff;
}

    .travelbanner-content span {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 40px;
        background: rgba(255,255,255,.12);
        backdrop-filter: blur(12px);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .travelbanner-content h2 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .travelbanner-content p {
        font-size: 18px;
        line-height: 1.9;
        color: rgba(255,255,255,.92);
    }

.travelbanner-content {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

    .travelbanner-content.showinfd {
        opacity: 1;
        transform: none;
    }


@media(max-width:991px) {

    .travelbanner-section {
        padding: 140px 0;
        background-attachment: scroll;
    }
}

@media(max-width:767px) {

    .travelbanner-section {
        padding: 110px 0;
    }

    .travelbanner-content h2 {
        font-size: 30px;
    }

    .travelbanner-content p {
        font-size: 16px;
    }
}


.internationalflights-section {
    padding: 100px 0;
    overflow: hidden;
}

.internationalflights-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

    .internationalflights-heading.showinfd {
        opacity: 1;
        transform: none;
    }

    .internationalflights-heading span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #0b1f3a;
        margin-bottom: 16px;
    }

    .internationalflights-heading h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 18px;
        position: relative;
    }

        .internationalflights-heading h2::after {
            content: "";
            width: 90px;
            height: 4px;
            border-radius: 50px;
            background: #0b1f3a;
            display: block;
            margin: 18px auto 0;
        }

    .internationalflights-heading p {
        font-size: 18px;
        line-height: 1.8;
        color: #667085;
    }


.internationalflight-card {
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(70px);
    transition: transform .75s ease, opacity .75s ease, box-shadow .45s ease;
}

    .internationalflight-card.showinfd {
        opacity: 1;
        transform: none;
    }

    .internationalflight-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(11,31,58,.18);
    }


.internationalflight-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .internationalflight-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

.internationalflight-card:hover img {
    transform: scale(1.12);
}


.internationalflight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(11,31,58,.92) 0%, rgba(11,31,58,.45) 45%, rgba(11,31,58,.10) 100% );
    z-index: 1;
}



.internationalflight-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 55px;
    bottom: 22px;
    z-index: 2;
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(3px);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    transition: .35s;
}

.internationalflight-card:hover
.internationalflight-overlay {
    background: rgba(255,255,255,.18);
}

.flight-route {
    text-align: center;
    margin-bottom: 18px;
}

    .flight-route h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .flight-route i {
        color: #fff;
        font-size: 20px;
        margin: 10px 0;
        display: block;
        transition: .45s;
    }

.internationalflight-card:hover
.flight-route i {
    transform: rotate(180deg);
}


.flight-price {
    color: #fff;
    text-align: center;
    font-size: 15px;
    margin-bottom: 18px;
}

    .flight-price strong {
        display: block;
        font-size: 34px;
        color: #fff;
        margin-top: 5px;
        font-weight: 800;
    }


.flight-badge {
    display: table;
    margin: 0 auto 20px;
    padding: 8px 18px;
    border-radius: 40px;
    background: #ffffff;
    color: #0b1f3a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}


.internationalflight-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    background: #0b1f3a;
    color: #fff;
    font-weight: 700;
    transition: .35s;
}

    .internationalflight-btn:hover {
        background: #16325b;
        color: #fff;
        text-decoration: none;
    }


.col-lg-4:nth-child(1) .internationalflight-card {
    transition-delay: .08s;
}

.col-lg-4:nth-child(2) .internationalflight-card {
    transition-delay: .16s;
}

.col-lg-4:nth-child(3) .internationalflight-card {
    transition-delay: .24s;
}

.col-lg-4:nth-child(4) .internationalflight-card {
    transition-delay: .32s;
}

.col-lg-4:nth-child(5) .internationalflight-card {
    transition-delay: .40s;
}

.col-lg-4:nth-child(6) .internationalflight-card {
    transition-delay: .48s;
}


@media(max-width:991px) {

    .internationalflights-section {
        padding: 80px 0;
    }

    .internationalflights-heading {
        margin-bottom: 50px;
    }

        .internationalflights-heading h2 {
            font-size: 36px;
        }

    .internationalflight-card {
        height: 420px;
    }
}

@media(max-width:767px) {

    .internationalflights-heading h2 {
        font-size: 30px;
    }

    .internationalflights-heading p {
        font-size: 16px;
    }

    .internationalflight-card {
        height: 390px;
    }

    .internationalflight-overlay {
        left: 16px;
        right: 16px;
        bottom: 5px;
        padding: 18px;
    }

    .flight-route h4 {
        font-size: 18px;
    }

    .flight-price strong {
        font-size: 28px;
    }
}


.travelplanning-section {
    overflow: hidden;
}


.travelplanning-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

    .travelplanning-heading.showinfd {
        opacity: 1;
        transform: translateY(0);
    }

    .travelplanning-heading span {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 50px;
        background: rgba(11,31,58,.08);
        color: #0b1f3a;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .travelplanning-heading h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 18px;
        line-height: 1.25;
    }

    .travelplanning-heading p {
        font-size: 16px;
        color: #667085;
        line-height: 1.5;
        margin: 0;
    }

.travelplanning-intro {
    max-width: 950px;
    margin: 0 auto 70px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease .15s;
}

    .travelplanning-intro.showinfd {
        opacity: 1;
        transform: translateY(0);
    }

    .travelplanning-intro p {
        color: #667085;
        line-height: 1.5;
        margin-bottom: 17px;
        font-size: 16px;
    }

.travelplanning-box {
    height: 100%;
    padding: 38px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(11,31,58,.05);
    transition: all .35s ease;
    opacity: 0;
}

    .travelplanning-box.left {
        transform: translateX(-60px);
    }

    .travelplanning-box.right {
        transform: translateX(60px);
    }

    .travelplanning-box.showinfd {
        opacity: 1;
        transform: translateX(0);
    }

    .travelplanning-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 60px rgba(11,31,58,.10);
        border-color: rgba(11,31,58,.15);
    }

    .travelplanning-box h3 {
        font-size: 28px;
        font-weight: 700;
        color: #0b1f3a;
        margin-bottom: 28px;
    }

    .travelplanning-box ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .travelplanning-box li {
        position: relative;
        padding-left: 34px;
        margin-bottom: 10px;
        color: #667085;
        line-height: 1.5;
        opacity: 0;
        transform: translateY(20px);
        transition: .45s ease;
        font-size: 16px;
    }

    .travelplanning-box.showinfd li {
        opacity: 1;
        transform: translateY(0);
    }

    .travelplanning-box li:nth-child(1) {
        transition-delay: .10s;
    }

    .travelplanning-box li:nth-child(2) {
        transition-delay: .20s;
    }

    .travelplanning-box li:nth-child(3) {
        transition-delay: .30s;
    }

    .travelplanning-box li:nth-child(4) {
        transition-delay: .40s;
    }

    .travelplanning-box li:nth-child(5) {
        transition-delay: .50s;
    }

    .travelplanning-box li:nth-child(6) {
        transition-delay: .60s;
    }

    .travelplanning-box li:nth-child(7) {
        transition-delay: .70s;
    }

    .travelplanning-box li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 2px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #0b1f3a;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }

.travelplanning-cta {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 55px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(135deg,#f8fbff,#eef5fd);
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 60px rgba(11,31,58,.06);
    transition: .35s ease;
    opacity: 0;
    transform: translateY(50px);
}

    .travelplanning-cta.showinfd {
        opacity: 1;
        transform: translateY(0);
    }

    .travelplanning-cta:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 70px rgba(11,31,58,.10);
    }

    .travelplanning-cta h3 {
        font-size: 34px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 18px;
    }

    .travelplanning-cta p {
        max-width: 620px;
        margin: auto auto 35px;
        color: #667085;
        line-height: 1.8;
    }

.travelplanning-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.travelplanning-call-btn,
.travelplanning-contact-btn {
    min-width: 230px;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.travelplanning-call-btn {
    background: #0b1f3a;
    color: #fff;
}

    .travelplanning-call-btn:hover {
        background: #16325b;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

.travelplanning-contact-btn {
    border: 2px solid #0b1f3a;
    color: #0b1f3a;
    background: transparent;
}

    .travelplanning-contact-btn:hover {
        background: #0b1f3a;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

.travelplanning-cta small {
    display: block;
    color: #98A2B3;
    font-size: 14px;
}

@media(max-width:991px) {

    .travelplanning-section {
        padding: 80px 0;
    }

    .travelplanning-heading h2 {
        font-size: 36px;
    }

    .travelplanning-box {
        padding: 30px;
    }

    .travelplanning-cta {
        padding: 40px 30px;
    }
}

@media(max-width:767px) {

    .travelplanning-heading h2 {
        font-size: 30px;
    }

    .travelplanning-heading p,
    .travelplanning-intro p {
        font-size: 16px;
    }

    .travelplanning-box h3 {
        font-size: 24px;
    }

    .travelplanning-cta h3 {
        font-size: 28px;
    }

    .travelplanning-call-btn,
    .travelplanning-contact-btn {
        width: 100%;
    }
}


/*==================================================
        Changes Cancellations Page
        ==================================================*/

.changes-hero,
.changes-benefits,
.disruptions-section,
.claims-process-section,
.steps-section,
.transparency-section,
.claim-cta-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #fff;
}


    .changes-hero::after, .claims-process-section::after, .steps-section::after, .transparency-section::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 140px;
        height: 5px;
        border-radius: 20px;
        background: #8d8e8f;
    }

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    background: #EAF2FF;
    color: #0b1f3a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 70px;
}

    .section-heading h2 {
        font-size: 36px;
        font-weight: 800;
        color: #0b1f3a;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .section-heading p {
        color: #6F7A90;
        font-size: 18px;
        line-height: 1.8;
    }

.btn-primary-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 34px;
    border-radius: 50px;
    background: #0b1f3a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

    .btn-primary-fill:hover {
        background: #16365e;
        transform: translateY(-3px);
        color: #fff;
    }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 34px;
    border-radius: 50px;
    border: 2px solid #0b1f3a;
    color: #0b1f3a;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

    .btn-outline-light:hover {
        background: #0b1f3a;
        color: #fff;
        transform: translateY(-3px);
    }

.changes-hero-content h1 {
    font-size: 36px;
    font-weight: 900;
    color: #0b1f3a;
    line-height: 1.1;
    margin-bottom: 24px;
}

.changes-hero-content p {
    font-size: 16px;
    color: #68758B;
    line-height: 1.5;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}



.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



    .hero-illustration img {
        position: relative;
        width: 100%;
        max-width: 520px;
        z-index: 2;
        animation: floatPlane 6s ease-in-out infinite;
    }

.benefit-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 20px 30px;
    text-align: center;
    border: 1px solid #E9EEF7;
    transition: .4s;
    overflow: hidden;
}

    .benefit-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: #0b1f3a;
        transform: scaleX(0);
        transform-origin: left;
        transition: .45s;
    }

    .benefit-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(11,31,58,.12);
        border-color: #dbe7f8;
    }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 22px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1f3a;
    color: #fff;
    font-size: 24px;
    transition: .45s;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.benefit-card h4 {
    color: #0b1f3a;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.benefit-card p {
    color: #6C778D;
    line-height: 1.5;
    margin: 0;
    font-size: 15px;
}

.disruption-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
    position: relative;
}

    .disruption-wrapper::before {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        top: 62px;
        border-top: 2px dashed #C9D8EE;
        z-index: 0;
    }

.disruption-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #E7EDF7;
    border-radius: 24px;
    padding: 20px 25px;
    transition: .45s;
    overflow: hidden;
}

    .disruption-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(11,31,58,.04), transparent);
        opacity: 0;
        transition: .4s;
    }

    .disruption-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 42px rgba(11,31,58,.10);
        border-color: #0b1f3a;
    }

        .disruption-card:hover::after {
            opacity: 1;
        }

.disruption-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #EDF4FF;
    color: #0b1f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: .45s;
}

.disruption-card:hover .disruption-icon {
    background: #0b1f3a;
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.disruption-card h4 {
    color: #0b1f3a;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.disruption-card p {
    color: #6E7B92;
    line-height: 1.5;
    margin: 0;
    font-size: 15px;
}

.benefit-card,
.disruption-card {
    cursor: pointer;
}

    .benefit-card:hover h4,
    .disruption-card:hover h4 {
        color: #16365e;
    }


.changes-benefits::after,
.disruptions-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    border-radius: 20px;
    background: #8d8e8f;
}


.claims-content h2 {
    font-size: 46px;
    font-weight: 800;
    color: #0b1f3a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.claims-content > p {
    font-size: 16px;
    line-height: 1.5;
    color: #6B788F;
    margin-bottom: 10px;
}

.claim-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.claim-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 15px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #E7EDF6;
    transition: .35s;
}

    .claim-item:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(11,31,58,.08);
    }

.claim-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #0b1f3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.claim-item h5 {
    font-size: 22px;
    color: #0b1f3a;
    font-weight: 700;
    margin-bottom: 8px;
}

.claim-item p {
    margin: 0;
    color: #6B788F;
    line-height: 1.8;
}


.claims-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .claims-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 28px;
        box-shadow: 0 25px 60px rgba(11,31,58,.12);
    }


.top-card {
    top: 10%;
    left: -25px;
}

.bottom-card {
    right: -25px;
    bottom: 12%;
    animation-delay: 2s;
}

.steps-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-top: 70px;
}

.steps-line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 46px;
    height: 4px;
    background: #E2EAF5;
    border-radius: 50px;
    z-index: 0;
}

    .steps-line span {
        display: block;
        width: 0;
        height: 100%;
        border-radius: 50px;
        background: #0b1f3a;
    }


.step-card {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: #fff;
    border: 6px solid #E8EEF7;
    color: #0b1f3a;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.step-card:hover .step-number {
    background: #0b1f3a;
    color: #fff;
    border-color: #0b1f3a;
    transform: scale(1.08);
}

.step-content {
    background: #F8FAFD;
    border-radius: 22px;
    padding: 35px 28px;
    border: 1px solid #E7EDF7;
    transition: .35s;
}

.step-card:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(11,31,58,.10);
}

.step-content h4 {
    font-size: 24px;
    color: #0b1f3a;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-content p {
    color: #6B788F;
    line-height: 1.5;
    margin: 0;
    font-size: 15px;
}

@keyframes floatPlane {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes floatCircle {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes floatCard {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}


.trust-card {
    background: #fff;
    border: 1px solid #E7EDF7;
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: .4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .trust-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: #0b1f3a;
        transform: scaleX(0);
        transition: .4s;
    }

    .trust-card:hover::before {
        transform: scaleX(1);
    }

    .trust-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(11,31,58,.10);
    }

    .trust-card i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #EDF4FF;
        color: #0b1f3a;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        font-size: 24px;
        margin-bottom: 25px;
        transition: .35s;
    }

    .trust-card:hover i {
        background: #0b1f3a;
        color: #fff;
        transform: rotateY(180deg);
    }

    .trust-card h5 {
        font-size: 24px;
        font-weight: 800;
        color: #0b1f3a;
        margin-bottom: 16px;
    }

    .trust-card p {
        color: #6B788F;
        line-height: 1.8;
        margin: 0;
    }

.claim-cta-section {
    padding: 120px 0;
}

.claim-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#0b1f3a,#16365e);
    border-radius: 36px;
    padding: 70px;
    color: #fff;
}

    .claim-cta::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        right: -180px;
        top: -180px;
    }

    .claim-cta::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        left: -100px;
        bottom: -100px;
    }

    .claim-cta > * {
        position: relative;
        z-index: 2;
    }

    .claim-cta h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .claim-cta p {
        font-size: 18px;
        line-height: 1.8;
        opacity: .9;
    }

.section-tag.light {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.btn-claim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 60px;
    border-radius: 50px;
    background: #fff;
    color: #0b1f3a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: .35s;
}

    .btn-claim:hover {
        background: #EDF4FF;
        color: #0b1f3a;
        transform: translateY(-4px);
    }


.fade-up {
    opacity: 0;
    transform: translateY(70px);
    transition: all .8s ease;
}

    .fade-up.showcc {
        opacity: 1;
        transform: none;
    }

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all .8s ease;
}

    .fade-left.showcc {
        opacity: 1;
        transform: none;
    }

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all .8s ease;
}

    .fade-right.showcc {
        opacity: 1;
        transform: none;
    }

@media(max-width:1200px) {

    .hero-stat {
        flex: 1 1 30%;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .claim-cta {
        padding: 55px;
    }
}

@media(max-width:991px) {

    .changes-hero,
    .changes-benefits,
    .disruptions-section,
    .claims-process-section,
    .steps-section,
    .transparency-section,
    .claim-cta-section {
        padding: 90px 0;
    }

    .hero-illustration {
        margin-top: 60px;
    }

        .hero-illustration img {
            max-width: 420px;
        }

    .disruption-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

        .disruption-wrapper::before {
            display: none;
        }

    .steps-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .steps-line {
        display: none;
    }

    .claims-image {
        margin-top: 60px;
    }

    .claim-cta {
        text-align: center;
    }

        .claim-cta .text-lg-end {
            margin-top: 30px;
            text-align: center !important;
        }
}

@media(max-width:768px) {

    .section-heading {
        margin-bottom: 50px;
    }

        .section-heading h2 {
            font-size: 34px;
        }

    .changes-hero-content h1 {
        font-size: 36px;
    }

    .claims-content h2 {
        font-size: 34px;
    }

    .claim-cta h2 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons a {
            width: 100%;
        }

    .disruption-wrapper {
        grid-template-columns: 1fr;
    }

    .claim-item {
        flex-direction: column;
        text-align: center;
    }

    .claim-icon {
        margin: auto;
    }

    .claim-cta {
        padding: 45px 30px;
    }
}

@media(max-width:576px) {

    .section-tag {
        font-size: 11px;
        padding: 7px 14px;
    }

    .hero-stat {
        flex: 1 1 100%;
    }

    .benefit-card,
    .disruption-card,
    .trust-card {
        padding: 35px 25px;
    }

    .step-number {
        width: 78px;
        height: 78px;
        font-size: 24px;
    }

    .step-content {
        padding: 28px 20px;
    }

    .claim-cta h2 {
        font-size: 30px;
    }

    .claim-cta p {
        font-size: 16px;
    }

    .btn-claim {
        width: 100%;
    }
}


/*==================================================
                    About Us Page
==================================================*/

.aboutpage-left h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0b1f3a;
    line-height: 1.15;
}

.aboutpage-right {
    display: flex;
    flex-direction: column;
}

    .aboutpage-right p {
        font-size: 16px;
        line-height: 1.5;
        color: #5f6c80;
    }


.aboutpage-block {
    padding: 30px 0 0px;
}

.aboutpage-company {
    margin-top: 30px;
}

.aboutpage-heading {
    margin-bottom: 15px;
}

    .aboutpage-heading span {
        display: inline-block;
        color: #0b1f3a;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .aboutpage-heading h1 {
        color: #0b1f3a;
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
    }

.aboutpage-content-box p {
    color: #667085;
    font-size: 16px;
    line-height: 1.5;
}


.aboutpage-company-card {
    transition: .35s ease;
}

    .aboutpage-company-card:hover {
        border-color: #0b1f3a;
        box-shadow: 0 20px 55px rgba(11,31,58,.08);
    }

    .aboutpage-company-card > p {
        color: #667085;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 55px;
    }


.aboutpage-company-details {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.aboutpage-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    transition: .35s;
}

    .aboutpage-detail-item:hover {
        transform: translateY(-6px);
        border-color: #0b1f3a;
        box-shadow: 0 15px 35px rgba(0,0,0,.06);
    }

.aboutpage-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: #f4f7fb;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: .35s;
}

.aboutpage-detail-item:hover .aboutpage-detail-icon {
    background: #0b1f3a;
}

.aboutpage-detail-icon i {
    font-size: 24px;
    color: #0b1f3a;
    transition: .35s;
}

.aboutpage-detail-item:hover .aboutpage-detail-icon i {
    color: #fff;
}

.aboutpage-detail-item h5 {
    color: #0b1f3a;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.aboutpage-detail-item p {
    color: #667085;
    line-height: 1.5;
    margin: 0;
    font-size: 16px;
}

.aboutpage-hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.aboutpage-show {
    opacity: 1;
    transform: translateY(0);
}


.aboutpage-hero img {
    transition: transform 8s ease;
}

.aboutpage-hero:hover img {
    transform: scale(1.06);
}


.aboutpage-breadcrumb a {
    transition: .3s;
}

    .aboutpage-breadcrumb a:hover {
        color: #c8d7f0;
    }

@media(max-width:1200px) {

    .aboutpage-company-details {
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px) {

    .aboutpage-left h1 {
        font-size: 44px;
    }

    .aboutpage-hero-content {
        text-align: center;
        margin: auto;
    }

    .aboutpage-breadcrumb {
        justify-content: center;
    }

    .aboutpage-company-card {
        padding: 40px;
    }
}

@media(max-width:768px) {

    .aboutpage-section {
        padding: 20px 0;
    }

    .aboutpage-left h1 {
        font-size: 36px;
    }

    .aboutpage-heading h1 {
        font-size: 34px;
    }

    .aboutpage-right p,
    .aboutpage-content-box p,
    .aboutpage-company-card > p {
        font-size: 16px;
        line-height: 1.5;
    }

    .aboutpage-company-card {
        padding: 30px;
    }

    .aboutpage-detail-item {
        padding: 22px;
    }

    .cmncard {
        padding: 0px;
    }
}

@media(max-width:576px) {

    .aboutpage-section {
        padding: 20px 0;
    }

    .aboutpage-block {
        padding-bottom: 70px;
    }

    .aboutpage-company {
        padding-bottom: 70px;
    }

    .aboutpage-left h1 {
        font-size: 30px;
    }

    .aboutpage-heading h1 {
        font-size: 30px;
    }

    .aboutpage-company-card {
        padding: 25px;
    }

    .aboutpage-detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .aboutpage-detail-icon {
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   Global & Layout Resets
   ========================================================================== */
@media(min-width: 1200px) {
    .container {
        max-width: 1240px !important;
    }
}

@media(min-width: 1400px) {
    .container {
        max-width: 1480px !important;
    }
}

/* ==========================================================================
   Hero Base Layout
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    z-index: 1;
}

    .slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .slide:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    }

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 60px;
}

.hero-text {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

    .hero-text h1 {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .hero-text p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 15px;
        opacity: 0.95;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

/* ==========================================================================
   Search Engine Component Card
   ========================================================================== */
.search-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 24px 75px rgba(0,0,0,0.25);
    width: 80%;
    text-align: left;
}

.booking-options-row {
    padding-bottom: 16px;
}

.booking-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Dynamic Select Dropdowns UI Elements */
.trip-wrapper, .traveller-wrapper, .cabin-wrapper {
    position: relative;
}

.trip-select, .traveller-select, .cabin-select {
    height: 46px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

    .trip-select:hover, .traveller-select:hover, .cabin-select:hover {
        border-color: #0b1f3a;
        background: #fff;
    }

.trip-left, .traveller-info, .cabin-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
}

    .trip-left i, .traveller-info i, .cabin-left i {
        color: #0b1f3a;
        font-size: 16px;
    }

.bi-chevron-down {
    font-size: 12px;
    color: #64748b;
    transition: transform 0.2s;
}

/* Dropdowns Universal State Configuration */
.trip-dropdown, .traveller-dropdown, .cabin-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(11,31,58,0.15);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.trip-dropdown {
    width: 180px;
}

.cabin-dropdown {
    width: 220px;
}

.traveller-dropdown {
    width: 320px;
    right: auto;
    left: 0;
    padding: 20px;
}

@media(max-width:768px) {
    .traveller-dropdown {
        width: auto;
    }
}

.trip-dropdown.show, .traveller-dropdown.show, .cabin-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Selection list states */
.trip-option, .cabin-option {
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .trip-option:hover, .cabin-option:hover {
        background: #f1f5f9;
        color: #0b1f3a;
    }

    .trip-option.active, .cabin-option.active {
        background: #0b1f3a;
        color: #fff;
    }

/* ==========================================================================
   From-To Fields Wrapper with Integrated Swap Button
   ========================================================================== */
.from-to-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.location-field {
    flex: 1;
}

    .location-field:first-child .form-control {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding-right: 25px;
    }

    .location-field:last-child .form-control {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding-left: 25px;
        border-left: none;
    }

.swap-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

    .swap-btn:hover {
        border-color: #0b1f3a;
        color: white;
        box-shadow: 0 4px 12px rgba(11,31,58,0.15);
    }

/* ==========================================================================
   Form Controls Styles
   ========================================================================== */
.form-control {
    height: 54px;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    background-color: #fff;
    color: #1e293b;
    font-weight: 500;
}

    .form-control:focus {
        border-color: #0b1f3a;
        box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.15);
    }

.btn-search {
    height: 54px;
    border-radius: 12px;
    background: #0b1f3a;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.2s ease;
}

    .btn-search:hover, .btn-search:active {
        background-color: #1e3a63 !important;
        color: #fff;
    }

/* ==========================================================================
   Traveller Dropdown Increments
   ========================================================================== */
.traveller-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .traveller-row:last-of-type {
        border-bottom: none;
    }

    .traveller-row h6 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
        text-align: left;
    }

    .traveller-row small {
        color: #64748b;
        font-size: 12px;
        display: block;
        text-align: left;
    }

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .counter span {
        width: 24px;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        color: #1e293b;
    }

    .counter button {
        width: 32px;
        height: 32px;
        border: 1px solid #cbd5e1;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.15s;
        color: #64748b;
    }

        .counter button:hover {
            background: #0b1f3a;
            border-color: #0b1f3a;
            color: #fff;
        }

.traveller-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    pt-4;
}

.btn-reset, .btn-apply {
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-reset {
    background: #f1f5f9;
    color: #475569;
}

    .btn-reset:hover {
        background: #e2e8f0;
    }

.btn-apply {
    background: #0b1f3a;
    color: #fff;
}

    .btn-apply:hover {
        background: #1e3a63;
    }

/* ==========================================================================
   Media Responsiveness Queries
   ========================================================================== */
@media(max-width: 991px) {
    .hero {
        height: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .from-to-wrapper {
        gap: 10px;
    }

    .location-field:first-child .form-control,
    .location-field:last-child .form-control {
        border-radius: 12px;
        border: 1px solid #cbd5e1;
        padding: 0 16px;
    }
}

.contact-loader {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.contact-loader-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

    .contact-loader-content .spinner-border {
        width: 3.5rem;
        height: 3.5rem;
        color: #0d6efd !important;
    }

    .contact-loader-content p {
        color: #333;
        font-size: 16px;
        font-weight: 500;
    }

.btn-primary:hover {
    background: #0b1f3a !important;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #0b1f3a !important;
    border-color: var(--bs-btn-hover-border-color);
}

@media(max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
}

:root {
    --color-gold: #c5a880;
    --color-gold-hover: #e2c9a1;
    --color-bg-dark: #0a0f18;
    --color-card-bg: rgba(17, 28, 45, 0.4);
    --color-text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.06);
}

.flight-change-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/assets/images/Hero.webp') center center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Rich, deep gradient overlay for high contrast and premium feel */
    background: linear-gradient(135deg, rgba(7, 13, 22, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.sp-hero {
    padding: 120px 0;
}

/* Premium Dynamic Status Badge */
.status-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(47, 227, 138, 0.06);
    color: #52e9a2;
    border: 1px solid rgba(47, 227, 138, 0.15);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #52e9a2;
    border-radius: 50%;
    box-shadow: 0 0 12px #52e9a2;
    position: relative;
}

/* Luxury Typography */
.hero-title {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 300; /* Lighter weight is hallmark luxury */
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

    .hero-title strong {
        font-weight: 600;
        color: var(--color-gold);
        display: block;
    }

.hero-description {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 540px;
}

.agent-text {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-top: 30px;
    letter-spacing: 0.03em;
}

    .agent-text span {
        color: var(--color-gold);
        font-weight: 600;
        border-bottom: 1px dashed rgba(197, 168, 128, 0.4);
    }

/* Premium Concierge CTA Card */
.call-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #162235 0%, #0f1826 100%);
    color: #fff;
    text-decoration: none;
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    border: 1px solid rgba(197, 168, 128, 0.2); /* Subtly framed in gold */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .call-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(197, 168, 128, 0.1);
        color: #fff;
    }

.phone-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.4s;
}

.call-box:hover .phone-icon-wrapper {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.call-number {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.call-text {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Glassmorphism Feature Cards */
.feature-card-hero {
    background: var(--color-card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

    .feature-card-hero:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .feature-card-hero svg {
        color: var(--color-gold);
        flex-shrink: 0;
    }

/* Responsiveness adjustments */
@media(max-width: 992px) {
    .sp-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .status-box {
        margin-bottom: 24px;
    }
}

a {
    color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
    text-decoration: none !important;
}