@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    font-family: "Google Sans", sans-serif;
    background-color: #fdfdfd;
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 16px;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff00;
    z-index: 100;
    transition: background-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease,
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.is-sticky {
    background-color: rgb(255 255 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(235, 235, 240, 0.7);
    animation: headerSlideDown 0.35s ease forwards;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #fe490f;
    text-decoration: none;
    letter-spacing: -0.4px;
    flex-shrink: 0;
}

img.header__logo-img {
    width: 213px;
    background: #ffffff;
    border-radius: 0px 0px 15px 15px;
    padding: 10px 8px 10px 8px;
}

.header__logo-icon {
    width: 34px;
    height: 30px;
    color: #4361ee;
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__toggle {
    color: #ffffff;
}

.header__list {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.header__link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
    letter-spacing: -0.4px;
}

.header__link:hover {
    color: #038bdb;
}

.is-sticky .header__link {
    color: #1a1a2e;
}

.is-sticky .header__link:hover {
    color: #038bdb;
}

.header__link:hover::after,
.header__link--active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0284c7 0%, #043880 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 139, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(3, 139, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(3, 139, 219, 0);
    }
}

.header__phone:hover {
    background-color: #0186d8;
    transform: translateY(-1px);
    color: #fff;
    animation: none;
}

.header__phone-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    animation: phone-ring 2.5s infinite ease-in-out;
}

@keyframes phone-ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.header__toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #04589e;
    line-height: 0;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 270px;
    max-width: 80vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer.is-active {
    visibility: visible;
    transform: translateX(0);
}

.mobile-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #ebebf0;
}

.mobile-drawer__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
}

.mobile-drawer__close {
    background: transparent;
    border: none;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    color: #555565;
    padding: 2px 6px;
}

.mobile-drawer__menu {
    list-style: none;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer__item a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #444455;
    text-decoration: none;
    border-bottom: 1px solid #f6f6f6;
    transition: color 0.2s ease;
}

.mobile-drawer__item a.active,
.mobile-drawer__item a:hover {
    color: #0989d5;
    font-weight: 600;
}


/* ============== Hero / Banner Section ================= */

.notification {
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    text-align: center;
    padding: 10px 0 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}
.notification p {
    font-size: 14px;
    margin: 0 0 0 0;
    color: #fff;
}
.notification p a {
    color: #FFEB3B;
}
.notification p .accept {
    background: #f9f9f9;
    padding: 2px 14px 2px 14px;
    color: #038bdb;
    display: inline-block;
    cursor: pointer;
    border-radius: 20px;
    /* A real <button>, so it can be reached by keyboard — these undo what the
       browser draws around one. */
    border: none;
    font: inherit;
    font-weight: 600;
    line-height: 1.6;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.notification p .accept:hover {
    background: #ffffff;
    color: #0272b4;
}

.notification p .accept:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Slides out of the way when it is accepted; the script removes it once the
   transition is done. */
.notification {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.notification--dismissed {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .notification { transition: none; }
}


.hero {
    position: relative;
    padding: 60px 0 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url(../images/flights_5.webp);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000082;
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.findperfect {
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    display: inline-block;
    color: #ffffff;
    padding: 5px 25px 5px 25px;
    font-size: 14px;
    border-radius: 25px;
    margin: 0 0 15px 0;
}
.hero__content {
    text-align: center;
    color: #ffffff;
    margin: 0 0 40px 0;
    max-width: 800px;
}

.hero__title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

span.hero_title_span {
    color: #ffffff;
    /**text-shadow: none;
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;**/
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0 0 0 0;
}


/* ====================== Css for why us section ================== */


.why-us {
    padding: 60px 0 30px;
    background-color: transparent;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-us__intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 44px;
}

.why-us__subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #038bdb;
    margin-bottom: 10px;
    background: #e3f2fb;
    padding: 6px 10px 6px 10px;
    border-radius: 8px;
    border: 1px solid #038bdb69;
}

.why-us__heading {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -0.6px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.why-us__lead {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.why-us__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 15px;
    background: #ffffff;
    border: 1px solid #e9eaf0;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-us__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.why-us__card--featured {
    border: 1.5px solid #027dc052;
    box-shadow: 0 4px 18px rgba(255, 123, 144, 0.12);
}

.why-us__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background-color: #027cc01c;
}

.why-us__icon-box svg {
    color: #04559b;
}

.why-us__icon {
    width: 22px;
    height: 22px;
    color: #f43f5e;
}

.why-us__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.why-us__header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.why-us__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    white-space: nowrap;
}

.why-us__badge {
    display: inline-block;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #ffffff;
    border-radius: 4px;
    background: linear-gradient(135deg, #038bdb 0%, #002c61 100%);
    line-height: 1.3;
}

.why-us__desc {
    font-size: 13px;
    font-weight: 400;
    color: #6c727f;
    margin: 0;
    line-height: 1.45;
}


/* ============= Desitnation Section ============ */


.flight-deals {
    padding: 30px 0 40px;
    position: relative;
}

.flight-deals__header {
    margin-bottom: 28px;
}

.flight-deals__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin: 0 0 4px;
}

.flight-deals__subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.flight-deals__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.deal-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.deal-card__media {
    position: relative;
    width: 100%;
    height: 175px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.deal-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.deal-card:hover .deal-card__img {
    transform: scale(1.04);
}

.deal-card__badge-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.deal-card--hero {
    grid-column: span 2;
}

.deal-card--hero .deal-card__media {
    height: 260px;
}

.deal-card--hero .deal-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.deal-card__overlay-content {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.deal-card__hero-city {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.deal-card__hero-country {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.deal-card__hero-route {
    font-size: 11px;
    opacity: 0.85;
}

.deal-card__hero-price {
    font-size: 12px;
    margin-top: 4px;
}

.deal-card__hero-price strong {
    font-size: 13.5px;
    font-weight: 700;
}

.deal-card__sponsor-badge--lot {
    position: absolute;
    top: 0;
    right: 0;
    background: #00256c;
    color: #ffffff;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom-left-radius: 6px;
    z-index: 2;
}

.deal-card__sponsor-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffff;
    color: #05164d;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.deal-card__body {
    padding: 10px 2px 0;
    display: flex;
    flex-direction: column;
}

.deal-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px;
}

.deal-card__location {
    font-size: 11px;
    color: #8a92a6;
    margin-bottom: 2px;
}

.deal-card__departure {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 2px;
}

.deal-card__price {
    font-size: 11px;
    color: #64748b;
}

.deal-card__price strong {
    color: #022d63;
    font-size: 15px;
    font-weight: 700;
}

.deal-card__headline {
    font-size: 12.5px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}


/*============ About Us Section Styles ============*/


.about-us {
    padding: 60px 0px 60px 0px;
    background-color: #fff5f6;
    position: relative;
    overflow: hidden;
}

.about-us__image-wrapper {
    position: relative;
    padding-right: 0px;
    padding-bottom: 20px;
}

.about-us__img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    object-fit: cover;
}

.about-us__img:hover {
    transform: translateY(-5px);
}

.about-us__experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0284c7;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-us__experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-us__experience-badge .text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

.about-us__subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #038bdb;
    margin-bottom: 10px;
    background: #e3f2fb;
    padding: 6px 14px 6px 14px;
    border-radius: 32px;
    border: 1px solid #038bdb69;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
}

.about-us__title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin: 5px 0 15px 0;
    line-height: 1.3;
}

.about-us__content h3 {
    font-size: 25px;
    font-weight: 800;
    color: #0f172a;
    margin: 5px 0 12px 0;
    line-height: 1.3;
}

.about-us__title span {
    background: linear-gradient(135deg, #4361ee 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us__description {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-us__actions {
    margin-top: 35px;
}

a.readmore {
    color: #038bdb;
    font-weight: 600;
}

.about-us__btn-call {
    background: linear-gradient(135deg, #0284c7 0%, #043880 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
    }
}

.about-us__btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.about-us__btn-call:hover::before {
    left: 100%;
}

.about-us__btn-call:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0c4a6e 100%);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
}

.about-us__btn-icon {
    width: 18px;
    height: 18px;
}

.about-us__btn-fees {
    background: #f1f5f9;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
}

.about-us__btn-fees:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.about-us__btn-fees .about-us__btn-icon {
    color: #10b981;
}


/*============ Flight Deals Section Styles ============*/


.deal-matrix {
    padding: 60px 0px 60px 0px;
    position: relative;
}

.deal-matrix__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.deal-matrix__header {
    max-width: 720px;
}

.deal-matrix__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin: 0 0 4px;
}

.deal-matrix__subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.deal-matrix__switch {
    display: inline-flex;
    align-items: center;
    background-color: #e4e9f0;
    padding: 3px;
    border-radius: 24px;
    border: 1px solid #dcdfe4;
}

.deal-matrix__tab {
    border: none;
    background: transparent;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: #42526e;
    cursor: pointer;
    transition: all 0.2s ease;
}

.deal-matrix__tab:hover {
    color: #172b4d;
}

.deal-matrix__tab--active {
    background-color: #ffffff;
    color: #172b4d;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.deal-matrix__grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.deal-matrix__grid--active {
    display: grid;
    animation: dealFadeIn 0.3s ease-in-out;
}

@keyframes dealFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deal-ticket {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.deal-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.1);
    border-color: #cfe0ee;
}

/* The corner flag every fare carries — orange for the two picks we push,
   brand blue for the rest. Every card has one so that the airline rows of
   the cards sitting side by side still line up. */
.deal-ticket__ribbon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(135deg, #4aa8e8, #038bdb);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 17px 0 12px 0;
    display: none;
}

.deal-ticket__ribbon--hot {
    background: linear-gradient(135deg, #ff8a3d, #f4631e);
}

.deal-ticket__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px 10px;
}

.deal-ticket__airline {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.deal-ticket__logo-tile {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #eef2f7;
    box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06);
}

/* Airline marks come in at different aspect ratios, so fit the whole logo
   inside the tile rather than cropping the wide ones. */
.deal-ticket__logo {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
    display: block;
}

.deal-ticket__airline-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.deal-ticket__airline-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #101828;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-ticket__meta {
    font-size: 12px;
    font-weight: 500;
    color: #8a95a6;
    margin-top: 2px;
}

.deal-ticket__trip {
    flex: 0 0 auto;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #b45309;
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    padding: 6px 11px;
    border-radius: 20px;
}

.deal-ticket__route {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px 0;
    border-top: 1px solid #eef2f7;
}

.deal-ticket__point {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.deal-ticket__point--to {
    align-items: flex-end;
    text-align: right;
}

.deal-ticket__code {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.deal-ticket__city {
    font-size: 12.5px;
    font-weight: 500;
    color: #8a95a6;
    margin-top: 5px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-ticket__path {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
}

.deal-ticket__path-line {
    width: 18px;
    border-top: 2px dashed #cbd5e1;
}

.deal-ticket__plane {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    color: #04468d;
    transform: rotate(90deg);
}

.deal-ticket__dates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 18px 18px;
}

.deal-ticket__date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475467;
    background-color: #f6f8fb;
    border: 1px solid #e8eef5;
    border-radius: 10px;
    padding: 7px 11px;
}

.deal-ticket__date .bi {
    font-size: 13px;
    line-height: 1;
    color: #038bdb;
}

.deal-ticket__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px;
    background-color: #f7f9fc;
    border-top: 1px solid #eef2f7;
}

.deal-ticket__price-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.deal-ticket__price-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #98a2b3;
}

.deal-ticket__price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0px;
}

.deal-ticket__price-value {
    font-size: 20px;
    font-weight: 800;
    color: #04468d;
    letter-spacing: -0.5px;
}

.deal-ticket__price-was {
    font-size: 13px;
    font-weight: 600;
    color: #a3adba;
    text-decoration: line-through;
}

.deal-ticket__btn {
    flex: 0 0 auto;
    text-decoration: none;
    background:linear-gradient(135deg, #0284c7 0%, #043880 100%);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 10px;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.deal-ticket__btn:hover {
    background: #0272b4;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Three fares need roughly 1100px of container before the airport codes and
   the fare start colliding, so drop a column ahead of the tablet break. */
@media only screen and (max-width: 1199px) {

    .deal-matrix__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {

    .deal-matrix__grid {
        grid-template-columns: 1fr;
    }
}


/* ============ FAQ Section Styles ============ */


.faq-section {
    padding: 45px 0 40px 0;
    background: #fff5f6;
}

.faq-section__header {
    max-width: 600px;
    margin: 0 auto 35px;
}

.faq-section__subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #038bdb;
    background: #e3f2fb;
    padding: 6px 16px;
    border-radius: 30px;
}

.faq-section__title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 10px 0;
    line-height: 1.2;
}

.faq-section__description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 0 0;
}

.faq-section__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion__item {
    background-color: #fff;
    border: 1px solid rgb(223 230 255);
    border-radius: 14px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-accordion__item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: rgb(223 230 255);
}

.faq-accordion__header {
    margin: 0;
}

.faq-accordion__button {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    padding: 16px 25px;
    background: linear-gradient(90deg, #F8FAFC 0%, #EEF2FF 100%) !important;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-accordion__button:not(.collapsed) {
    color: #038bdb;
    border-bottom: 1px solid #f1f5f9;
}

.faq-accordion__button::after {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
    transition: transform 0.3s ease;
}

.faq-accordion__button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23038bdb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

.faq-accordion__body {
    padding: 16px 25px 20px 25px;
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    background-color: #ffffff;
}


/* ============= Footer Section ============ */


.footer {
    background-color: #012557;
    color: #e6edf3;
    padding: 40px 0 28px;
    border-top: 1px solid #1f2633;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid #ffffff1f;
}

.footer__col--brand {
    padding-right: 15px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 24px;
    height: 24px;
    color: #4361ee;
}

.footer__tagline {
    font-size: 15px;
    color: #ffffff91;
    line-height: 1.7;
    margin: 0 0 20px;
}

p.footer__tagline a {
    color: #068fdb;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(67, 97, 238, 0.15);
    color: #038bdb;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 8px 22px;
    border-radius: 20px;
    border: 1px solid rgba(67, 97, 238, 0.3);
    text-decoration: none;
}

.footer__social-link:hover {
    color: #ffffff;
    border: 1px solid rgba(67, 97, 238, 0.3);
    background: rgba(67, 97, 238, 0.15);
    transform: translateY(-2px);
}

.footer__heading {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.2px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: #ffffff91;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.footer__link:hover {
    color: #038bdb;
    transform: translateX(3px);
}

.footer-newsletter {
    background: radial-gradient(circle at top right, #012557bd 0%, #022f6c 100%);
    border: 1px solid #ffffff14;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4361ee, #f43f5e, #fb923c);
}

.footer-newsletter__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(67, 97, 238, 0.15);
    color: #038bdb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(67, 97, 238, 0.3);
}

.footer-newsletter__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.footer-newsletter__title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.footer-newsletter__desc {
    font-size: 12.5px;
    color: #8b949e;
    line-height: 1.5;
    margin: 0 0 16px;
}

.footer-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter__field {
    position: relative;
}

.footer-newsletter__icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: #64748b;
}

.footer-newsletter__input {
    width: 100%;
    height: 42px;
    background: #00000038;
    border: 1px solid #ffffff2e;
    border-radius: 8px;
    padding: 0 12px 0 38px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-newsletter__input:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.footer-newsletter__input::placeholder {
    color: #64748b;
}

.footer-newsletter__btn {
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #038bdb;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: background-color 0.2s ease, transform 0.15s ease;
    position: absolute;
    right: 25px;
    padding: 0 12px 0 12px;
}

.footer-newsletter__btn:hover {
    background: #038bdb;
    transform: translateY(-1px);
}

.footer-newsletter__note {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 10px;
    text-align: center;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__copyright {
    font-size: 15px;
    color: #ffffff91;
    margin: 0 0 0px;
}

.footer__disclaimer {
    font-size: 11.5px;
    color: #64748b;
    margin: 0;
}

.footer__payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__pay-pill {
    position: relative;
    filter: grayscale(1);
}

.disclaimer_cont {
    position: relative;
    padding: 0px 0 0px 0;
}

.disclaimer_txt {
    background: #038bdb2e;
    padding: 20px 20px 20px 20px;
    margin: 0 0 40px 0;
    border-radius: 0px;
}

.disclaimer_txt p {
    color: #ffffff91;
    margin: 0 0 10px 0;
    font-size: 15px;
}

.disclaimer_txt p:last-child {
    margin: 0 0 0 0;
}

button.destination-tab {
    border: none;
    margin: 0 0 18px 0;
    padding: 6px 16px 6px 16px;
    background: rgb(255 255 255 / 15%);
    border-radius: 32px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.destinations_secCont {
    display: none;
}

.destinations_secCont.active {
    display: block;
}

.destination-tab {
    cursor: pointer;
}

.destination-tab.active {
    background: #0392e6;
}


/* ============= ABOUT US PAGE STYLES ============= */


.about-page {
    background-color: #ffffff;
}

.about-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #038bdb;
    background: rgba(67, 97, 238, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.about-tag--dark {
    background: rgba(0, 210, 255, 0.12);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.25);
}

.about-heading {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.6px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.about-intro__copy h3 {
    font-size: 25px;
    font-weight: 800;
    color: rgb(15, 23, 42);
    letter-spacing: -0.6px;
    line-height: 1.25;
    margin: 0px 0px 12px;
}

.about-heading--light {
    color: #ffffff;
}

.about-heading--gradient {
    background: linear-gradient(135deg, #4361ee 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-heading--cyan {
    background: linear-gradient(135deg, #00d2ff 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-lead {
    font-size: 16px;
    line-height: 1.6;
    color: #4d5969;
    margin: 0 0 14px;
}

.about-banner {
    position: relative;
}

.about-banner__bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 110px 0 120px;
    background-image: url(../images/about-banner.jpg);
}

.about-banner__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.88) 0%, rgba(11, 15, 25, 0.72) 100%);
}

.about-banner__container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.about-banner__content {
    text-align: center;
    max-width: 760px;
}

.about-banner__badge {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    color: #38bdf8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.about-banner__title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.8px;
}

.about-banner__highlight {
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-banner__subtitle {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.65;
    margin: 0 auto;
}

.about-banner__shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.about-banner__shape svg {
    width: 100%;
    height: 50px;
    display: block;
}

.about-intro {
    padding: 60px 0 50px 0;
    position: relative;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro__visual {
    position: relative;
}

.about-intro__img-wrap {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.about-intro__img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

.about-intro__img-wrap:hover .about-intro__img {
    transform: scale(1.03);
}

.about-intro__chip {
    position: absolute;
    bottom: 26px;
    left: -36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #038bdb;
}

.about-intro__chip a {
    text-decoration: none;
}

.about-intro__chip-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eef2ff;
    color: #038bdb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro__chip-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
    line-height: 1.8;
    text-align: center;
}

.about-intro__chip-meta span {
    font-size: 18px;
    font-weight: 800;
    color: #038bdb;
}

.about-intro__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.about-stat-box__num {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #4361ee 0%, #06b6d4 100%);
    line-height: 1.2;
    margin-bottom: 4px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-box__label {
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
}

.about-values {
    padding: 50px 0 50px 0;
    background-color: #ffffff;
}

.about-values__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.about-values__subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-values__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.about-value-item--highlight {
    background: linear-gradient(135deg, #038bdb 0%, #04367f 100%);
    border-color: #038bdb;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.25);
}

.about-value-item__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eef2ff;
    color: #038bdb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-value-item--highlight .about-value-item__icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.about-value-item__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.6px;
}

.about-value-item--highlight .about-value-item__title {
    color: #ffffff;
}

.about-value-item__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.about-value-item--highlight .about-value-item__desc {
    color: rgba(255, 255, 255, 0.9);
}

.about-perks {
    padding: 50px 0 50px 0;
    background-color: #012c60;
    position: relative;
    overflow: hidden;
}

.about-perks__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.about-perks__info {
    padding-right: 15px;
}

.about-perks__copy {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0 0 28px;
}

.about-perks__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4361ee 0%, #06b6d4 100%);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
}

.about-perks__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(67, 97, 238, 0.45);
    color: #fff;
}

.about-perks__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-perk-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 26px 22px;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.about-perk-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 210, 255, 0.35);
    transform: translateY(-3px);
}

.about-perk-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.about-perk-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}

.about-perk-card__desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}


/* =========== Css for contact us page ==========*/


.contact-page {
    background-color: #fbfbfd;
    position: relative;
}

.contact-hero {
    padding: 80px 0 140px;
    background-image: url("../images/contact-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgb(26 26 46 / 48%) 100%);
}

.contact-hero__content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
    position: relative;
}

.contact-hero__badge {
    display: inline-block;
    background: rgb(0 42 95 / 73%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.contact-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.7px;
    line-height: 1.25;
    margin: 0 0 14px;
}

h1.contact-hero__title span {
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.contact-hero__subtitle {
    font-size: 16px;
    color: #ffffffd1;
    line-height: 1.6;
    margin: 0;
}

.contact-urgent-card {
    position: relative;
    margin: -82px 0 0 0;
    background: #000000a6;
    padding: 18px 24px;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.05);
}

.contact-urgent-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-urgent-card__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #038bdb;
}

.contact-urgent-card__text {
    flex: 1;
}

.contact-urgent-card__headline {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 4px;
}

.contact-urgent-card__subtext {
    font-size: 13px;
    color: #ffffffc9;
    margin: 0;
    line-height: 1.4;
}

.contact-urgent-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #038bdb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.contact-urgent-card__btn:hover {
    background-color: #038bdb;
    transform: translateY(-1px);
    color: #fff;
}

.contact-channels {
    padding: 55px 0 55px;
    position: relative;
}

.contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-channel-card {
    background: #ffffff;
    border: 1px solid #e9eaf0;
    border-radius: 14px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.contact-channel-card--highlight {
    border: 1.5px solid #4361ee;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.08);
}

.contact-channel-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.contact-channel-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-channel-card__icon--blue {
    background: #eef2ff;
    color: #4361ee;
}

.contact-channel-card__icon--green {
    background: #f0fdf4;
    color: #16a34a;
}

.contact-channel-card__icon--purple {
    background: #faf5ff;
    color: #9333ea;
}

.contact-channel-card__pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
}

.contact-channel-card__pill--active {
    background: #dcfce7;
    color: #15803d;
}

.contact-channel-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.contact-channel-card__desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 20px;
}

.contact-channel-card__action {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-channel-card__link {
    font-size: 15px;
    font-weight: 700;
    color: #038bdb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-channel-card__link:hover {
    color: #2538b8;
    text-decoration: underline;
}

.contact-channel-card__btn-trigger {
    background: #16a34a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.contact-channel-card__btn-trigger:hover {
    background: #15803d;
}

.contact-channel-card__subtext {
    font-size: 11.5px;
    color: #94a3b8;
}

.contact-form-section {
    padding: 50px 0 60px;
    background: #fff;
    position: relative;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e9eaf0;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.contact-form-card__head {
    margin-bottom: 26px;
}

.contact-form-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.contact-form-card__desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.flight-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.flight-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.flight-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flight-contact-form__label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.flight-contact-form__required {
    color: #ef4444;
}

.flight-contact-form__hint {
    font-size: 12px;
    font-weight: 400;
    color: #94a3b8;
}

.flight-contact-form__input,
.flight-contact-form__select,
.flight-contact-form__textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dcdfe4;
    border-radius: 9px;
    background: #ffffff;
    font-size: 14px;
    color: #1a1a2e;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.flight-contact-form__input:focus,
.flight-contact-form__select:focus,
.flight-contact-form__textarea:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12);
}

.flight-contact-form__textarea {
    resize: vertical;
    min-height: 110px;
}

.flight-contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.flight-contact-form__submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #038bdb;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    padding: 13px 28px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.flight-contact-form__submit-btn:hover {
    background: #304ffe;
    transform: translateY(-1px);
}

.flight-contact-form__privacy-note {
    font-size: 12px;
    color: #64748b;
}

/* The line a form leaves behind after it is sent — “thank you”, or why it
   could not be saved. */
.form-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12px;
    padding: 13px 16px;
    margin-bottom: 20px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid transparent;
}

.form-notice--success {
    background-color: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.form-notice--error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.footer-newsletter .form-notice {
    margin-bottom: 14px;
    font-size: 12.5px;
}

/* A form sends the visitor back to its own anchor, and the header is fixed
   over the top of the page — leave it room so the notice is not hidden. */
.contact-form-card[id],
.form-notice[id] {
    scroll-margin-top: 110px;
}

/* The bait field. Off-screen rather than display:none, because the simpler
   bots skip anything that is hidden outright. */
.flight-contact-form__trap,
.footer-newsletter__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sidebar-card {
    background: #ffffff;
    border: 1px solid #e9eaf0;
    border-radius: 14px;
    padding: 0px;
    overflow: hidden;
}

.contact-sidebar-card--dot {
    background: #f8fafc;
    border-color: #e2e8f0;
    border-left: 4px solid #038bdb;
}


/* ============= Privacy Policy Css ============= */


.privacy_banner {
    position: relative;
    background-image: url("../images/privacy-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 110px 0 120px;
    z-index: 1;
}

.privacy_banner::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(11 15 25 / 85%) 0%, rgb(11 15 25 / 35%) 100%);
}

.privacy_banner_tx {
    text-align: center;
    position: relative;
}

.privacy_banner_tx__sup {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgb(4 54 127 / 70%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid #ffffff3d;
}

.privacy_banner_tx p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin: 0 auto 17px auto;
}

.privacy_banner_tx h1 {
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.privacy_banner_tx h1 span {
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-banner__subtitle {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #d8e5ff;
    font-size: 0.92rem;
}

section.privacy_content {
    padding: 50px 0 40px 0;
    position: relative;
}

.privacy_tx h2 {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 800;
    color: #022a64;
}

.privacy_tx h3 {
    margin: 0 0 12px 0;
    font-size: 23px;
    font-weight: 800;
    color: #022a64;
}

.privacy_tx h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 800;
    color: #022a64;
}

.privacy_tx ul {
    margin: 0 0 12px 0;
    padding: 25px 25px 25px 25px;
    list-style: none;
    background: #e0f3ff;
    border-radius: 30px;
}

.privacy_tx ul li strong {
    color: #000;
}

.privacy_tx p strong {
    color: #000;
}

.privacy_tx p a {
    text-decoration: none;
}

.privacy_tx ul li {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #565252;
    font-style: italic;
}

.privacy_tx p {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #565252;
}

.privacy_tx p:last-child {
    margin: 0 0 0 0;
}

.privacy_tx ul li:last-child {
    margin: 0 0 0 0;
}


/* ============ Terms Conditions Css =========== */


.terms_banner {
    position: relative;
    background-image: url("../images/terms-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 90px 0 120px;
    z-index: 1;
}

.terms_banner::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(11 15 25 / 85%) 0%, rgb(11 15 25 / 35%) 100%);
}

.terms_banner_tx {
    text-align: center;
    position: relative;
}

.terms_banner_tx__sup {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgb(4 54 127 / 70%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid #ffffff3d;
}

.terms_banner_tx p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin: 0 auto 17px auto;
}

.terms_banner_tx h1 {
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.terms_banner_tx h1 span {
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-banner__subtitle {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #d8e5ff;
    font-size: 0.92rem;
}

section.terms_content {
    padding: 50px 0 40px 0;
    position: relative;
}

.terms_tx h2 {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 800;
    color: #022a64;
}

.terms_tx h3 {
    margin: 0 0 12px 0;
    font-size: 23px;
    font-weight: 800;
    color: #022a64;
}

.terms_tx h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 800;
    color: #022a64;
}

.terms_tx ul {
    margin: 0 0 12px 0;
    padding: 25px 25px 25px 25px;
    list-style: none;
    background: #e0f3ff;
    border-radius: 30px;
}

.terms_tx ul li strong {
    color: #000;
}

.terms_tx p strong {
    color: #000;
}

.terms_tx p a {
    text-decoration: none;
}

.terms_tx ul li {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #565252;
    font-style: italic;
}

.terms_tx p {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #565252;
}

.terms_tx p:last-child {
    margin: 0 0 0 0;
}

.terms_tx ul li:last-child {
    margin: 0 0 0 0;
}


/* ============== Flight Deals Page ================= */


.deals_hero {
    position: relative;
    padding: 80px 0 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url(../images/flight-deals-banner.jpg);
    background-size: cover;
    background-position: center;
}

.deals_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(26 26 46) 0%, rgb(26 26 46 / 62%) 100%);
    z-index: 1;
}

.hero_deals_container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deals_content {
    text-align: center;
    color: #ffffff;
    margin: 0 0 80px 0;
    max-width: 800px;
}

.deals_title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.deals_title_span {
    color: #bfdbfe;
    text-shadow: none;
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deals_subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0 0 0 0;
    width: 620px;
}



/* ============ Destination Page Css =========== */


.destination_banner {
    position: relative;
    padding: 60px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.destination_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(26 26 46) 0%, rgb(26 26 46 / 62%) 100%);
    z-index: 1;
}

.destination_container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.destination_content {
    text-align: center;
    color: #ffffff;
    margin: 0 0 40px 0;
    max-width: 800px;
}

.destination_title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.6px;
}

.destination_title_span {
    color: #bfdbfe;
    text-shadow: none;
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.destination_subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0 0 0 0;
    width: 620px;
}

section.destination_content_pg {
    padding: 50px 0 40px 0;
    position: relative;
}

.destination_tx h2 {
    margin: 0 0 12px 0;
    font-size: 26px;
    font-weight: 800;
    color: #022a64;
}

.destination_tx h3 {
    margin: 0 0 12px 0;
    font-size: 23px;
    font-weight: 800;
    color: #022a64;
}

.destination_tx h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 800;
    color: #022a64;
}

.destination_tx ul {
    margin: 0 0 12px 0;
    padding: 0 0 0 0;
    list-style: none;
    border-radius: 30px;
}

.destination_tx ul li i {
    color: #ff6605;
    margin: 0 5px 0px 0;
    font-size: 15px;
}

.destination_tx ul li strong {
    color: #000;
}

.destination_tx p strong {
    color: #000;
}

.destination_tx p a {
    text-decoration: none;
}

.destination_tx ul li {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.destination_tx p {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #565252;
}

.destination_tx p:last-child {
    margin: 0 0 0 0;
}

.destination_tx ul li:last-child {
    margin: 0 0 0 0;
}



/* ============= Mobile Responsive Code ============ */



@media only screen and (min-width: 320px) and (max-width: 360px) {
    .header__container {
        height: 70px;
    }

    img.header__logo-img {
        width: 180px;
        background: #ffffff;
        border-radius: 0px 0px 15px 15px;
        padding: 10px 8px 10px 8px;
    }

    .header__logo {
        font-size: 18px;
    }

    .header__logo-icon {
        width: 22px;
        height: 22px;
    }

    .header__nav {
        display: none;
    }

    .header__phone-text {
        display: none;
    }

    .header__phone {
        padding: 8px 10px;
        border-radius: 50px;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 130px 0 20px;
    }

    .hero__content {
        margin: 0px 0 35px 0;
        width: 100%;
    }

    .header.is-sticky .header__toggle {
        color: #000 !important;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero__title {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0px;
        width: 100%;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-us__card {
        padding: 16px 18px;
    }

    .why-us__icon-box {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .why-us__icon {
        width: 20px;
        height: 20px;
    }

    .why-us {
        padding: 40px 0 20px;
        background-color: transparent;
    }

    .flight-deals__title {
        font-size: 25px;
    }

    .flight-deals__subtitle {
        font-size: 15px;
    }

    .about-us {
        padding: 40px 0px 40px 0px;
    }

    .deal-matrix {
        padding: 40px 0px 40px 0px;
        position: relative;
    }

    .why-us__title {
        font-size: 14.5px;
    }

    .why-us__desc {
        font-size: 12.5px;
    }

    .footer {
        padding: 50px 0 30px;
        margin-top: 50px;
    }

    .footer {
        padding: 32px 0 28px;
        margin-top: 0;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .footer__col--brand {
        padding-right: 0;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .deal-matrix__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .deal-matrix__title {
        font-size: 25px;
    }

    .deal-matrix__subtitle {
        font-size: 15px;
    }

    .deal-matrix__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .deal-ticket__head,
    .deal-ticket__route,
    .deal-ticket__dates,
    .deal-ticket__footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .deal-ticket__code {
        font-size: 23px;
    }

    .deal-ticket__price-value {
        font-size: 20px;
    }

    .deal-ticket__btn {
        padding: 10px 15px;
    }

    .faq-section {
        padding: 40px 0 32px 0;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-accordion__button {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-accordion__body {
        padding: 16px 20px;
        font-size: 14.5px;
    }

    .flight-deals__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .deal-card--hero {
        grid-column: span 1;
    }

    .about-banner {
        padding: 130px 0 80px;
    }

    .about-banner__title {
        font-size: 32px;
    }

    .about-banner__bg {
        padding: 140px 0 90px;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-intro {
        padding: 40px 0 40px 0px;
    }

    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro__chip {
        left: -10px;
    }

    .about-intro__img {
        height: 380px;
    }

    .about-values {
        padding: 40px 0 40px 0px;
    }

    .about-values__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-perks {
        padding: 40px 0 40px 0px;
    }

    .about-values__header {
        margin: 0 auto 35px;
    }

    .about-perks__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-perks__grid {
        grid-template-columns: 1fr;
    }

    .contact-hero__title {
        font-size: 28px;
    }

    .contact-hero {
        padding: 150px 0 50px;
    }

    .contact-channels {
        padding: 40px 0 40px;
        position: relative;
    }

    .contact-form-section {
        padding: 15px 0 40px;
    }

    section.privacy_content {
        padding: 40px 0 40px 0;
        position: relative;
    }

    section.terms_content {
        padding: 40px 0 40px 0;
        position: relative;
    }

    .contact-urgent-card {
        display: none;
    }

    .contact-urgent-card__btn {
        width: 100%;
        justify-content: center;
    }

    .contact-channels__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .flight-contact-form__row {
        grid-template-columns: 1fr;
    }

    .destination_subtitle {
        width: 100%;
    }

    .destination_title {
        font-size: 34px;
    }

    .destination_banner {
        padding: 130px 0 30px;
    }

    .destination_content {
        margin: 0 0 46px 0;
    }

    section.destination_content_pg {
        padding: 40px 0 40px 0;
    }
}


@media only screen and (min-width: 360px) and (max-width: 480px) {
    .header__container {
        height: 70px;
    }

    img.header__logo-img {
        width: 180px;
        background: #ffffff;
        border-radius: 0px 0px 15px 15px;
        padding: 10px 8px 10px 8px;
    }

    .header__logo {
        font-size: 18px;
    }

    .header__logo-icon {
        width: 22px;
        height: 22px;
    }

    .header__nav {
        display: none;
    }

    .header__phone-text {
        display: none;
    }

    .header__phone {
        padding: 8px 10px;
        border-radius: 50px;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 20px 0 20px;
    }

    .hero__content {
        margin: 0px 0 10px 0;
        width: 100%;
    }

    .header.is-sticky .header__toggle {
        color: #000 !important;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero__title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 0px;
        width: 100%;
        display: none;
    }

    .hero__container {
        display: block;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-us__card {
        padding: 16px 18px;
    }

    .why-us__icon-box {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .why-us__icon {
        width: 20px;
        height: 20px;
    }

    .why-us {
        padding: 40px 0 20px;
        background-color: transparent;
    }

    .flight-deals__title {
        font-size: 25px;
    }

    .flight-deals__subtitle {
        font-size: 15px;
    }

    .about-us {
        padding: 40px 0px 40px 0px;
    }

    .deal-matrix {
        padding: 40px 0px 40px 0px;
        position: relative;
    }

    .why-us__title {
        font-size: 14.5px;
    }

    .why-us__desc {
        font-size: 12.5px;
    }

    .footer {
        padding: 50px 0 30px;
        margin-top: 50px;
    }

    .footer {
        padding: 32px 0 28px;
        margin-top: 0;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .footer__col--brand {
        padding-right: 0;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .deal-matrix__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .deal-matrix__title {
        font-size: 25px;
    }

    .deal-matrix__subtitle {
        font-size: 15px;
    }

    .deal-matrix__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .deal-ticket__head,
    .deal-ticket__route,
    .deal-ticket__dates,
    .deal-ticket__footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .deal-ticket__code {
        font-size: 23px;
    }

    .deal-ticket__price-value {
        font-size: 20px;
    }

    .deal-ticket__btn {
        padding: 10px 15px;
    }

    .faq-section {
        padding: 40px 0 32px 0;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-accordion__button {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-accordion__body {
        padding: 16px 20px;
        font-size: 14.5px;
    }

    .flight-deals__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .deal-card--hero {
        grid-column: span 1;
    }

    .about-banner {
        padding: 50px 0 80px;
    }

    .about-banner__title {
        font-size: 32px;
    }

    .about-banner__bg {
        padding: 140px 0 90px;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-intro {
        padding: 40px 0 40px 0px;
    }

    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro__chip {
        left: -10px;
    }

    .about-intro__img {
        height: 380px;
    }

    .about-values {
        padding: 40px 0 40px 0px;
    }

    .about-values__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-perks {
        padding: 40px 0 40px 0px;
    }

    .about-values__header {
        margin: 0 auto 35px;
    }

    .about-perks__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-perks__grid {
        grid-template-columns: 1fr;
    }

    .contact-hero__title {
        font-size: 28px;
    }

    .contact-hero {
        padding: 150px 0 50px;
    }

    .contact-channels {
        padding: 40px 0 40px;
        position: relative;
    }

    .contact-form-section {
        padding: 15px 0 40px;
    }

    section.privacy_content {
        padding: 40px 0 40px 0;
        position: relative;
    }

    section.terms_content {
        padding: 40px 0 40px 0;
        position: relative;
    }

    .contact-urgent-card {
        display: none;
    }

    .contact-urgent-card__btn {
        width: 100%;
        justify-content: center;
    }

    .contact-channels__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .flight-contact-form__row {
        grid-template-columns: 1fr;
    }

    .destination_subtitle {
        width: 100%;
        font-size: 14px;
    }

    .destination_title {
        font-size: 20px;
    }

    .destination_banner {
        padding: 25px 0 30px;
    }

    .destination_content {
        margin: 0 0 20px 0;
    }

    section.destination_content_pg {
        padding: 40px 0 40px 0;
    }
}


@media only screen and (min-width: 480px) and (max-width: 768px) {
    .header__container {
        height: 70px;
    }

    img.header__logo-img {
        width: 180px;
        background: #ffffff;
        border-radius: 0px 0px 15px 15px;
        padding: 10px 8px 10px 8px;
    }

    .header__logo {
        font-size: 18px;
    }

    .header__logo-icon {
        width: 22px;
        height: 22px;
    }

    .header__nav {
        display: none;
    }

    .header__phone-text {
        display: none;
    }

    .header__phone {
        padding: 8px 10px;
        border-radius: 50px;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 130px 0 20px;
    }

    .hero__content {
        margin: 0px 0 35px 0;
        width: 100%;
    }

    .header.is-sticky .header__toggle {
        color: #000 !important;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero__title {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 0px;
        width: 100%;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-us__card {
        padding: 16px 18px;
    }

    .why-us__icon-box {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .why-us__icon {
        width: 20px;
        height: 20px;
    }

    .why-us {
        padding: 40px 0 20px;
        background-color: transparent;
    }

    .flight-deals__title {
        font-size: 25px;
    }

    .flight-deals__subtitle {
        font-size: 15px;
    }

    .about-us {
        padding: 40px 0px 40px 0px;
    }

    .deal-matrix {
        padding: 40px 0px 40px 0px;
        position: relative;
    }

    .why-us__title {
        font-size: 14.5px;
    }

    .why-us__desc {
        font-size: 12.5px;
    }

    .footer {
        padding: 50px 0 30px;
        margin-top: 50px;
    }

    .footer {
        padding: 32px 0 28px;
        margin-top: 0;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .footer__col--brand {
        padding-right: 0;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .deal-matrix__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .deal-matrix__title {
        font-size: 25px;
    }

    .deal-matrix__subtitle {
        font-size: 15px;
    }

    .deal-matrix__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .deal-ticket__head,
    .deal-ticket__route,
    .deal-ticket__dates,
    .deal-ticket__footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .deal-ticket__code {
        font-size: 23px;
    }

    .deal-ticket__price-value {
        font-size: 20px;
    }

    .deal-ticket__btn {
        padding: 10px 15px;
    }

    .faq-section {
        padding: 40px 0 32px 0;
    }

    .faq-section__title {
        font-size: 28px;
    }

    .faq-accordion__button {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-accordion__body {
        padding: 16px 20px;
        font-size: 14.5px;
    }

    .flight-deals__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .deal-card--hero {
        grid-column: span 1;
    }

    .about-banner {
        padding: 130px 0 80px;
    }

    .about-banner__title {
        font-size: 32px;
    }

    .about-banner__bg {
        padding: 140px 0 90px;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-intro {
        padding: 40px 0 40px 0px;
    }

    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro__chip {
        left: -10px;
    }

    .about-intro__img {
        height: 380px;
    }

    .about-values {
        padding: 40px 0 40px 0px;
    }

    .about-values__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-perks {
        padding: 40px 0 40px 0px;
    }

    .about-values__header {
        margin: 0 auto 35px;
    }

    .about-perks__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-perks__grid {
        grid-template-columns: 1fr;
    }

    .contact-hero__title {
        font-size: 28px;
    }

    .contact-hero {
        padding: 150px 0 50px;
    }

    .contact-channels {
        padding: 40px 0 40px;
        position: relative;
    }

    .contact-form-section {
        padding: 15px 0 40px;
    }

    section.privacy_content {
        padding: 40px 0 40px 0;
        position: relative;
    }

    section.terms_content {
        padding: 40px 0 40px 0;
        position: relative;
    }

    .contact-urgent-card {
        display: none;
    }

    .contact-urgent-card__btn {
        width: 100%;
        justify-content: center;
    }

    .contact-channels__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .flight-contact-form__row {
        grid-template-columns: 1fr;
    }

    .destination_subtitle {
        width: 100%;
    }

    .destination_title {
        font-size: 34px;
    }

    .destination_banner {
        padding: 130px 0 30px;
    }

    .destination_content {
        margin: 0 0 46px 0;
    }

    section.destination_content_pg {
        padding: 40px 0 40px 0;
    }
}