:root {
    --orange: #ff9f00;
    --orange-deep: #f46a00;
    --yellow: #ffd92f;
    --ink: #030303;
    --text: #11131a;
    --soft-text: #4f5360;
    --border: #d8d8dc;
    --cream: #fff8df;
    --cream-strong: #ffedbd;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: #ffffff;
    font-family: "Inter", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.topbar {
    height: 49px;
    color: #ffffff;
    background: linear-gradient(90deg, #f46b00 0%, #ffc062 50%, #f46b00 100%);
}

.topbar-inner {
    display: flex;
    width: min(1380px, calc(100% - 32px));
    height: 49px;
    align-items: center;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 49px;
}

.logo img {
    display: block;
    width: 48px;
    height: 43px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-left: 31px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.header-search {
    display: flex;
    align-items: center;
    width: 380px;
    height: 31px;
    gap: 8px;
    margin-left: auto;
    padding: 0 11px;
    border-radius: 9px;
    background: #ffffff;
}

.header-search svg,
.header-actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.header-search svg {
    color: #111c42;
}

.header-search input {
    width: 100%;
    border: 0;
    color: #111827;
    font-size: 12px;
    outline: 0;
}

.header-search input::placeholder {
    color: #9b9ba4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-left: 17px;
    font-size: 12px;
    font-weight: 600;
}

.header-actions a,
.login-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

main {
    overflow: hidden;
}

.hero-section {
    position: relative;
    width: 1104px;
    margin: 32px auto 0;
    padding-bottom: 82px;
}

.hero-card {
    position: relative;
    height: 640px;
    overflow: hidden;
    border-radius: 22px;
    background: #253339;
}

.hero-card::before {
    display: none;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-image {
    background:
        url("assets/Rectangle 1.png") center/cover;
    transform: scale(1.03);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(18, 34, 34, 0.72) 0%, rgba(18, 34, 34, 0.18) 48%, rgba(18, 34, 34, 0.56) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-copy {
    position: absolute;
    top: 72px;
    left: 74px;
    z-index: 2;
    color: #ffffff;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 0 0 15px;
    font-size: 51px;
    font-weight: 800;
    letter-spacing: -1.1px;
    line-height: 1.24;
}

.hero-copy p {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 700;
}

.book-ticket,
.primary-button,
.search-button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7800 0%, #ffb100 72%, #ffe138 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: 0 10px 24px rgba(255, 160, 0, 0.28);
}

.book-ticket {
    display: inline-flex;
    width: 109px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    background-image: url("assets/Group 2201679.png");
}

.smooth-note {
    position: absolute;
    z-index: 2;
    left: 73px;
    bottom: 155px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.mini-plane {
    font-size: 17px;
}

.destination-widget {
    position: absolute;
    z-index: 2;
    right: 100px;
    bottom: 150px;
    color: #ffffff;
}

.destination-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    font-size: 14px;
}

.destination-title span {
    font-size: 21px;
}

.destination-card {
    position: relative;
    width: 204px;
    height: 119px;
    overflow: hidden;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.destination-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.6));
    content: "";
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 821px) {
    .topbar-inner {
        min-width: 1110px;
    }
}

.destination-card span {
    position: absolute;
    z-index: 1;
    left: 16px;
    bottom: 12px;
    font-size: 12px;
    font-weight: 800;
}

.hero-arrow {
    position: absolute;
    z-index: 2;
    right: 48px;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.08);
    font-size: 29px;
    line-height: 26px;
}

.hero-arrow-next {
    bottom: 185px;
}

.hero-arrow-prev {
    bottom: 141px;
}

.slider-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 150px;
    display: flex;
    gap: 3px;
    transform: translateX(-50%);
}

.slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.booking-panel {
    position: absolute;
    z-index: 3;
    left: 74px;
    right: 74px;
    bottom: 0;
    height: 239px;
    padding: 20px 28px;
    border: 1px solid #dedee3;
    border-radius: 15px;
    background: #ffffff;
}

.booking-tabs {
    display: flex;
    gap: 8px;
}

.booking-tabs button {
    height: 31px;
    padding: 0 11px;
    border: 1px solid #d7d7dd;
    border-radius: 7px;
    color: #111111;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.booking-tabs .active {
    border-color: var(--orange);
    color: #ffffff;
    background: var(--orange) url("assets/orange (1).png") center/100% 100% no-repeat;
}

.trip-types {
    display: flex;
    gap: 40px;
    margin-top: 27px;
    font-size: 14px;
    font-weight: 600;
}

.trip-types label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.trip-types input {
    position: absolute;
    opacity: 0;
}

.trip-types label span {
    width: 17px;
    height: 17px;
    border: 1px solid #bfc3cd;
    border-radius: 50%;
}

.trip-types input:checked + span {
    border: 5px solid var(--orange);
}

.field-divider {
    height: 1px;
    margin: 30px 0 22px;
    background: #d9d9dd;
}

.booking-fields {
    display: grid;
    grid-template-columns: 128px 128px 136px 210px 223px 74px;
    gap: 8px;
    align-items: end;
}

.booking-fields label > span {
    display: block;
    margin-bottom: 9px;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
}

.input-wrap {
    display: flex;
    height: 32px;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border: 1px solid #c6c8d0;
    border-radius: 7px;
}

.input-wrap i {
    color: #adb0ba;
    font-style: normal;
}

.input-wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    color: #111111;
    font-size: 12px;
    outline: 0;
}

.input-wrap input::placeholder {
    color: #a5a7af;
}

.search-button {
    height: 32px;
    border-radius: 7px;
    background-image: url("assets/orange (2).png");
    font-size: 11px;
    font-weight: 700;
}

.installment-banner {
    position: relative;
    width: 1104px;
    height: 320px;
    margin: 0 auto 49px;
    overflow: hidden;
    border-radius: 14px;
    background: #030627;
}

.installment-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deals-grid-section {
    display: grid;
    width: 1104px;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
    margin: 0 auto 28px;
}

.deal-tile {
    padding: 8px;
    border: 1px solid #dadce3;
    border-radius: 15px;
    background: #ffffff;
}

.deal-tile > img {
    display: block;
    width: 100%;
    height: 205px;
    border-radius: 8px;
    object-fit: cover;
}

.deal-body {
    padding: 16px 0 0;
}

.deal-body h3 {
    margin: 0 0 7px;
    color: #050505;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.deal-body h3 span {
    font-size: 13px;
    font-weight: 500;
}

.deal-body p {
    min-height: 38px;
    margin: 0 0 12px;
    color: #7c808b;
    font-size: 12px;
    line-height: 1.23;
}

.deal-meta {
    display: grid;
    min-height: 37px;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border-top: 1px solid #d6d7dc;
    border-bottom: 1px solid #e1e1e5;
    color: #202020;
    font-size: 11px;
    text-align: center;
}

.deal-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 26px;
}

.deal-meta span + span {
    border-left: 1px solid #d6d7dc;
}

.deal-meta i {
    color: #a9adb7;
    font-style: normal;
}

.deal-meta strong {
    font-weight: 800;
}

.deal-body > a {
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 11px;
    border-radius: 7px;
    color: #ffffff;
    background: var(--orange) url("assets/orange.png") center/100% 100% no-repeat;
    box-shadow: 0 8px 18px rgba(255, 159, 0, 0.2);
    font-size: 12px;
    font-weight: 700;
}

.travel-solutions {
    width: 1104px;
    margin: 0 auto 66px;
}

.airline-savings-row {
    display: grid;
    grid-template-columns: minmax(0, 2.42fr) minmax(300px, 1fr);
    gap: 12px;
    margin-bottom: 62px;
}

.airline-panel,
.savings-panel {
    position: relative;
    min-height: 311px;
    overflow: hidden;
    border-radius: 14px;
}

.panel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.airline-panel-copy {
    position: relative;
    z-index: 2;
    width: 365px;
    padding: 50px 0 0 41px;
    color: #ffffff;
}

.airline-panel-copy p {
    margin: 0 0 29px;
    font-size: 14px;
    font-weight: 600;
}

.airline-panel-copy h2,
.savings-panel h2,
.solutions-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.7px;
    line-height: 1.18;
}

.airline-panel-copy span {
    display: block;
    margin-top: 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.28;
}

.airline-logos {
    position: absolute;
    z-index: 3;
    top: 50px;
    right: 38px;
    width: 360px;
    height: auto;
}

.savings-panel {
    color: #ffffff;
}

.savings-panel div {
    position: relative;
    z-index: 2;
    padding: 63px 36px 0;
}

.savings-panel h2 {
    font-size: 23px;
    line-height: 1.15;
}

.savings-panel p {
    width: 286px;
    margin: 14px 0 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.solutions-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d5d7df;
}

.solutions-heading h2 {
    color: #1a1c20;
    font-size: 30px;
    line-height: 1.1;
}

.solutions-heading h2 span {
    color: #6d6f75;
}

.solutions-heading p {
    max-width: 655px;
    margin: 19px 0 0;
    color: #555967;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.28;
}

.solutions-heading a {
    display: inline-flex;
    width: 134px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #ffffff;
    background: var(--orange) url("assets/orange.png") center/100% 100% no-repeat;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 159, 0, 0.2);
}

.solutions-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.solutions-stats article {
    position: relative;
    display: flex;
    min-height: 366px;
    flex-direction: column;
    padding: 29px 20px 20px 0;
    border-right: 1px solid #d9dbe2;
}

.solutions-stats article:first-child {
    border-left: 0;
}

.solutions-stats article + article {
    padding-left: 15px;
}

.solutions-stats h3 {
    margin: 0 0 21px;
    color: #ff8a00;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
}

.solutions-stats strong {
    color: #252b38;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}

.solutions-stats p {
    margin: auto 0 0;
    color: #555967;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.23;
}

.testimonials {
    display: grid;
    width: 1110px;
    grid-template-columns: repeat(3, 1fr);
    gap: 112px;
    margin: 0 auto 52px;
}

.testimonial-card {
    color: #444957;
}

.stars {
    margin-bottom: 14px;
    color: #ffe123;
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonial-card p {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
}

.author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.author img {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
}

.author strong,
.author span {
    display: block;
}

.author strong {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
}

.author span {
    font-size: 10px;
}

.footer-panel {
    width: 1104px;
    margin: 0 auto 64px;
    padding: 0 17px 30px;
    border-right: 4px solid var(--orange);
    border-bottom: 4px solid var(--orange);
    border-left: 4px solid var(--yellow);
    border-radius: 39px;
    background: linear-gradient(180deg, #fffdf0 0%, #fff5d7 70%, #ffedbd 100%);
}

.footer-cta {
    padding: 65px 0 80px;
    text-align: center;
}

.footer-cta h2 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.1px;
}

.footer-cta p {
    margin: 0 0 28px;
    color: #66646b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.primary-button {
    width: 84px;
    background-image: url("assets/Buttons.png");
}

.secondary-button {
    width: 89px;
    border: 1px solid #cfcfd8;
    color: #0c1636;
    background: #ffffff url("assets/Buttons (1).png") center/100% 100% no-repeat;
    box-shadow: 0 8px 20px rgba(18, 24, 50, 0.1);
}

.feature-strip {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
    min-height: 29px;
    padding: 0 47px;
    font-size: 12px;
}

.feature-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.feature-strip img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex: 0 0 auto;
}

.feature-strip span + span {
    border-left: 2px solid rgba(0, 0, 0, 0.22);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1.55fr 2.2fr;
    gap: 41px;
    padding: 21px 47px 28px;
}

.footer-links h3 {
    margin: 0 0 13px;
    color: #000000;
    font-size: 12px;
    font-weight: 800;
}

.footer-links nav {
    display: grid;
    align-content: start;
}

.footer-links a,
.reasons span {
    margin-bottom: 13px;
    color: #111111;
    font-size: 12px;
    font-weight: 500;
}

.reasons > div:first-of-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
}

.reasons span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reasons img {
    width: 13px;
    height: 13px;
    object-fit: contain;
    flex: 0 0 auto;
}

.connect-title {
    margin-top: 10px !important;
}

.socials {
    display: flex !important;
    gap: 8px !important;
}

.socials a {
    display: inline-flex;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 3px;
    color: #ffffff;
    background: #000000;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.copyright {
    display: flex;
    min-height: 55px;
    align-items: end;
    justify-content: center;
    gap: 23px;
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    padding-bottom: 2px;
    color: #4d4d4d;
    font-size: 9px;
}

@media (max-width: 1180px) {
    .topbar-inner,
    .hero-section,
    .installment-banner,
    .deals-grid-section,
    .travel-solutions,
    .testimonials,
    .footer-panel {
        width: calc(100% - 36px);
    }

    .topbar-inner {
        width: calc(100% - 36px);
    }

    .main-nav {
        gap: 13px;
        margin-left: 20px;
    }

    .header-search {
        width: 260px;
    }

    .booking-panel {
        left: 45px;
        right: 45px;
    }

    .booking-fields {
        grid-template-columns: repeat(3, 1fr);
    }

    .airline-logos {
        right: 35px;
        width: 380px;
    }

}

@media (max-width: 820px) {
    .topbar {
        height: auto;
    }

    .topbar-inner {
        height: auto;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .main-nav,
    .header-actions {
        justify-content: center;
    }

    .main-nav,
    .header-search,
    .header-actions {
        width: 100%;
        margin-left: 0;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .hero-section {
        margin-top: 22px;
        padding-bottom: 0;
    }

    .hero-card {
        height: 620px;
    }

    .hero-copy {
        top: 50px;
        left: 28px;
        right: 28px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .smooth-note,
    .destination-widget,
    .hero-arrow,
    .slider-dots {
        display: none;
    }

    .booking-panel {
        position: relative;
        left: auto;
        right: auto;
        height: auto;
        margin-top: -118px;
    }

    .booking-fields,
    .deals-grid-section,
    .airline-savings-row,
    .solutions-heading,
    .solutions-stats,
    .testimonials,
    .footer-links,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .travel-solutions {
        margin-top: 42px;
    }

    .airline-panel,
    .savings-panel {
        min-height: 330px;
    }

    .airline-panel-copy {
        width: auto;
        padding: 32px 24px 0;
    }

    .airline-panel-copy span {
        max-width: 330px;
        font-size: 15px;
    }

    .airline-logos {
        top: 132px;
        right: 12px;
        width: min(330px, calc(100% - 24px));
    }

    .solutions-heading {
        align-items: start;
    }

    .solutions-stats article {
        min-height: 210px;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid #d9dbe2;
    }

    .solutions-stats article + article {
        padding-left: 0;
    }

    .installment-banner {
        height: auto;
        aspect-ratio: 1380 / 400;
    }

    .deal-tile > img {
        height: 220px;
    }

    .feature-strip {
        gap: 9px;
        padding: 11px;
    }

    .feature-strip span + span {
        border-left: 0;
    }

    .testimonials {
        gap: 30px;
    }

    .footer-panel {
        border-radius: 28px;
    }

    .footer-cta h2 {
        font-size: 34px;
    }

    .footer-links {
        gap: 18px;
        padding-inline: 26px;
    }
}
