* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #2d2a3c;
}

/* ==========================
   GLOBAL
========================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ==========================
   HERO SECTION
========================== */

.flight-hero {
    height: 300px;
    background: url('../image/flights/breadcrumb-bg.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .60);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span:last-child {
    color: #ff2d00;
}

/* ==========================
   SEARCH SECTION
========================== */

.flight-search {
    position: relative;
    margin-top: -90px;
    z-index: 10;
    padding-bottom: 80px;
}

.search-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.search-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1f2340;
    font-size: 32px;
    font-weight: 700;
}

/* FORM */

.flight-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.flight-form input,
.flight-form select {
    height: 58px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
}

.flight-form input:focus,
.flight-form select:focus {
    border-color: #ff2d00;
}

.flight-form button {
    height: 58px;
    border: none;
    background: #ff2d00;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.flight-form button:hover {
    background: #e52800;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .flight-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px) {

    .flight-hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .flight-search {
        margin-top: -60px;
    }

    .search-box {
        padding: 25px;
    }

    .flight-form {
        grid-template-columns: 1fr;
    }

    .search-box h2 {
        font-size: 24px;
    }
}

/* TITLES */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #ff2d00;
    font-size: 20px;
}

.section-title h2 {
    font-size: 45px;
    margin-top: 10px;
}

/* ROUTES */

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.route-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
}

.route-card p {
    color: #ff2d00;
    margin-top: 10px;

}


.booking-works {
    padding: 100px 0;
    background: #f7f5fb;
    position: relative;
    overflow: hidden;
}

.booking-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(#d8d2ef 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: .4;
}

.booking-works .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-tag {
    color: #ff2d00;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.booking-left h2 {
    font-size: 52px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 25px;
}

.intro-text {
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.small-image img {
    width: 280px;
    border-radius: 20px;
    display: block;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    gap: 25px;
}

.icon-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    border: 3px solid #ff2d00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff2d00;
    font-size: 34px;
}

.feature-item h3 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111;
}

.feature-item p {
    color: #444;
    line-height: 1.8;
}

.booking-right img {
    width: 100%;
    border-radius: 35px;
    border: 10px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

/* ==========================
   RESPONSIVE
========================== */

/* Laptop */
@media (max-width: 1200px) {

    .booking-grid {
        gap: 30px;
    }

    .booking-left h2 {
        font-size: 42px;
    }

    .feature-item h3 {
        font-size: 28px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    /* Routes */
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Booking Works */
    .booking-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .booking-left h2 {
        font-size: 40px;
    }

    .intro-text {
        max-width: 100%;
        margin: 0 auto 35px;
    }

    .small-image {
        display: flex;
        justify-content: center;
    }

    .booking-features {
        gap: 30px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box {
        margin-bottom: 10px;
    }

    .booking-right img {
        max-width: 700px;
        margin: auto;
        display: block;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .booking-works {
        padding: 70px 0;
    }

    .route-grid {
        grid-template-columns: 1fr;
    }

    .booking-left h2 {
        font-size: 32px;
    }

    .feature-item h3 {
        font-size: 24px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 28px;
    }

    .small-image img {
        width: 220px;
    }

    .booking-right img {
        border-width: 6px;
        border-radius: 20px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .booking-left h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-tag {
        font-size: 14px;
    }

    .intro-text {
        font-size: 14px;
    }

    .feature-item h3 {
        font-size: 20px;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.7;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }

    .small-image img {
        width: 180px;
    }

    .route-card {
        padding: 20px;
    }

    .booking-right img {
        border-radius: 15px;
    }
}




.booking-steps {
    padding: 100px 0;
    background: #15192b;
    position: relative;
    overflow: hidden;
}

.booking-steps::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/world-map.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    opacity: .05;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #ff3b1d;
    font-size: 26px;
    font-family: cursive;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 55px;
    line-height: 1.1;
    color: #ff3b1d;
    font-weight: 800;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    background: #1d2238;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: .4s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #ff3b1d;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #ff3b1d;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(255, 59, 29, .4);
}

.step-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.step-card p {
    color: #b8bfd3;
    line-height: 1.8;
    margin-bottom: 25px;
}

.step-card a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2b314d;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: .3s;
}

.step-card a:hover {
    background: #ff3b1d;
}



/* ==========================
   RESPONSIVE
========================== */

/* Large Laptop */
@media (max-width: 1200px) {

    .section-title h2 {
        font-size: 48px;
    }

    .steps-wrapper {
        gap: 20px;
    }

    .step-card {
        padding: 35px 20px;
    }

    .step-card h3 {
        font-size: 24px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .section-title {
        margin-bottom: 50px;
    }

    .section-title span {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .step-card h3 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .container {
        width: 95%;
    }

    .section-title span {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .steps-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .step-card h3 {
        font-size: 22px;
    }

    .step-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .section-title {
        margin-bottom: 40px;
    }

    .section-title span {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .step-card {
        padding: 25px 18px;
        border-radius: 15px;
    }

    .step-icon {
        width: 65px;
        height: 65px;
        font-size: 22px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    .step-card p {
        font-size: 14px;
    }

    .step-card a {
        width: 40px;
        height: 40px;
    }
}

/* why */
.why-choose {
    padding: 100px 0;
    background: #f4f1ee;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle,
            rgba(0, 0, 0, .03) 1px,
            transparent 1px);
    background-size: 25px 25px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.choose-grid {
    display: grid;
    grid-template-columns:
        1.2fr 1fr 1fr;
    gap: 20px;
}

.choose-content {
    padding-right: 20px;
}

.section-tag {
    display: block;
    color: #ff2d00;
    font-size: 30px;
    font-family: cursive;
    margin-bottom: 15px;
}

.choose-content h2 {
    font-size: 54px;
    line-height: 1.1;
    color: #2d2a3c;
    margin-bottom: 20px;
}

.choose-content p {
    color: #666;
    margin-bottom: 35px;
}

.service-btn {
    display: inline-block;
    background: #ff2d00;
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 40px;
    font-weight: 600;
}

.service-card,
.cta-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.icon {
    width: 65px;
    height: 65px;
    background: #ff2d00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.number {
    font-size: 48px;
    font-weight: 700;
    color: #d9d9d9;
}

.service-card h3 {
    font-size: 28px;
    color: #2d2a3c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.cta-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card span {
    color: #666;
    margin-bottom: 15px;
}

.cta-card h3 {
    font-size: 42px;
    line-height: 1.2;
    color: #2d2a3c;
    margin-bottom: 30px;
}

.solution-btn {
    display: inline-block;
    width: max-content;
    background: #ff2d00;
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 40px;
    font-weight: 600;
}

@media(max-width:991px) {

    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-card {
        grid-column: span 2;
    }

    .choose-content h2 {
        font-size: 40px;
    }
}

@media(max-width:768px) {

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-column: auto;
    }

    .choose-content h2 {
        font-size: 32px;
    }

    .cta-card h3 {
        font-size: 28px;
    }
}