* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: AmericanSans, Helvetica, Arial, sans-serif;
    ;
}

body {
    background: #FFFFFF;
    height: 100vh;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 110px;
    background: #FFFFFF;
    flex-wrap: wrap;
    /* important */
}

/* LOGO */
.logo {
    font-size: 40px;
    font-weight: bold;
    color: #cfd6dc;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BUTTONS */
.btns {
    padding: 8px 18px;
    background: #0078d2;
    border: none;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btns:hover {
    background: #155a95;
}

/* COUNTRY */
.country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0078d2;
}

.country img {
    width: 30px;
    height: auto;
}

.country1 img {
    width: 40px;
    height: auto;
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 992px) {
    .header {
        padding: 15px 30px;
    }

    .logo {
        font-size: 30px;
    }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 450px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btns {
        flex: 1;
        /* buttons take equal width */
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }

    .country {
        width: 100%;
        justify-content: flex-start;
        font-size: 13px;
    }

    .logo {
        font-size: 26px;
    }
}

/* MAIN BOX */
.hero {
    padding: 30px 110px;
    background-image: url("/images/sky-default.avif");
    background-size: cover;
    background-position: center;
}

/* CONTAINER */
.flight-box {
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

/* TITLE */
.title {
    padding: 20px;
    font-size: 32px;
    font-weight: 300;
    line-height: 38px;
    letter-spacing: 0.23px;
    color: #0078d2;
    background: linear-gradient(to right, #d0e4f2, #b7ccec58);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* SEARCH AREA */
.search-area {
    padding: 20px;
}

/* FILTERS */
.filtersss {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* important */
}

.select {
    padding: 6px 10px;
    border: 1px solid #0078d2;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    color: #0078d2;
    outline: none;

}

.select:focus {
    border-color: #0078d2;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.optioncolor {
    color: #0078d2;
}

/* FORM GRID */
.form-rows {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr 160px;
    gap: 8px;
}

/* INPUT BOX */
.input-boxs {
    border: 1px solid #c7d1db;
    border-radius: 4px;
    padding: 7px;
    background: white;
}

.input-boxs label {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 4px;
}

.input-boxs input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #555;

}

/* BUTTON */
.search-btn {
    background: #0078d2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
}

.search-btn:hover {
    background: #155a95;
}

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
    .hero {
        padding: 20px;
    }

    .form-rows {
        grid-template-columns: 1fr 1fr;
    }

    .search-btn {
        grid-column: span 2;
        padding: 20px;
    }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 600px) {

    .title {
        font-size: 24px;
        padding: 10px;
        text-align: start;
    }

    .filters {
        flex-direction: flex;
    }

    .form-rows {
        grid-template-columns: 1fr;
    }

    .search-btn {
        grid-column: span 1;
        padding: 20px;
        font-size: 16px;
    }
}



/* ============================breadcrumb================================ */
.breadcrumbdiv {
    padding: 30px 110px;
    color: #1b4f72;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 18px;
    margin-bottom: 30px;
}

.breadcrumb a {
    text-decoration: none;
    color: #1e73be;
}

.breadcrumb span {
    margin: 0 10px;
    color: #888;
}

/* HEADING */
.heading {
    font-size: 27px;
    font-weight: 300;
    line-height: 33px;
    letter-spacing: 0.48px;
    margin-bottom: 40px;
    color: #00467F;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* FORM */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.22px;
    color: #627A88;
}

/* INPUT BOX */
.input-box1 {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #cfd6dc;
    border-radius: 2px;
    padding: 14px;
    color: #36495A;
}

.input-box1 span {
    margin-right: 10px;
    font-size: 18px;
    color: #36495A;
}

/* INPUT */
.input-box1 input,
.input-box1 select {
    border: none;
    outline: none;
    width: 100%;
    color: #36495A;
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.22px;
    padding: 0px;
    background: none;
}

.currency1 {
    background: #E4E9EC;
    padding: 3px 6px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #36495A;
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 992px) {
    .breadcrumbdiv {
        padding: 20px 30px;
    }

    .heading {
        font-size: 28px;
    }

    .breadcrumb {
        font-size: 16px;
    }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 768px) {
    .breadcrumbdiv {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        /* single column */
        gap: 15px;
    }

    .heading {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .input-box {
        padding: 12px;
    }

    .input-box input,
    .input-box select {
        font-size: 14px;
    }

    .currency {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* =========================flights cards============================= */


.bodycard {
    padding: 40px 130px;
}

/* slider */

.slider {
    position: relative;
    display: flex;
    align-items: center;
}

/* arrows */

.arrow {
    font-size: 30px;
    color: #2c7bc4;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

/* cards */
#cardsf {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.cardsf {
    flex: 0 0 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cardsf::-webkit-scrollbar {
    display: none;
}

/* card */

.cardf {
    min-width: 235px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* image */

.cardf img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* content */

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.routes {
    font-size: 18px;
    color: #627A88;
    font-weight: 400;
    letter-spacing: 0.38px;
    line-height: 30px;
    margin-bottom: 4px;
}

.date {
    color: #627A88;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.22px;
    line-height: 21px;
    margin-bottom: 10px;
}

.price-label {
    text-align: right;
    font-size: 12px;
    color: #7f8c8d;
}

.price {
    font-size: 20px;
    color: #00467F;
    text-align: right;
    margin-bottom: 4px;
    letter-spacing: 0.38px;
    line-height: 30px;
    font-weight: 400;
}

.update {
    font-size: 12px;
    text-align: right;
    color: #7f8c8d;
    margin-bottom: 4px;
    line-height: 18px;
    font-weight: 400;
}

.trip {
    font-size: 12px;
    text-align: right;
    margin-bottom: 15px;
    color: #7f8c8d;
    line-height: 18px;
    font-weight: 400;
}

/* button */

.btnss {
    background: #0078d2;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: auto;
}

.btnss:hover {
    background: #0f5b95;
}

/* dots */

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background: #c6ccd2;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background: #1e78c6;
}

.card_description {
    padding: 0px 110px;
    font-size: 18px;
    color: #627a88;
}

.description_color {
    color: #0f78d2;
}

/* responsive */
/* Tablet */
@media (max-width: 1024px) {
    .cardf {
        flex: 0 0 70%;
        /* 2 cards */
    }
}

/* Mobile */

@media(max-width:900px) {

    .bodycard {
        padding: 30px;
    }

    .cardf {
        min-width: 300px;
    }

    .card_description {
        padding: 0px 30px;
    }

}

@media(max-width:768px) {
    .arrow {
        display: none;
    }

    .bodycard {
        padding: 20px;
    }

    .card_description {
        padding: 0px 20px;
    }

    #cardsf {
        overflow-x: visible;
        /* disable scroll */
        flex-direction: column;
    }

    .cardf {
        flex: 0 0 100%;
        /* full width */
    }

}

/* ========================Follow your passion=========================== */

.exclusive_offer_image {
    padding: 20px 110px;
}

.exclusive_offer_image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.follow_passion {
    padding: 40px 110px;
    color: #2c3e50;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.titles {
    font-size: 26px;
    font-weight: 200;
    color: #1b4e81;
    margin-bottom: 10px;
}

.subtitle {
    color: #5d6d7e;
    margin-bottom: 15px;
}

.flight-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.flight-table th {
    text-align: left;
    background: #eef1f4;
    padding: 16px;
    font-weight: 600;
    /* border-bottom: 2px solid #d9dee3; */
}

.flight-table td {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #364971;

    /* border-bottom: 1px solid #e6e9ec; */
}



.prices {
    color: #0078D2;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.22px;
    margin-bottom: -4px;

}


.book-btn {
    background: #0078d2;
    color: white;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.book-btn:hover {
    background: #0f5f97;
}

/* Responsive */

@media (max-width:900px) {
    .follow_passion {
        padding: 80px 30px;
    }

    .exclusive_offer_image {
        padding: 20px 30px;
    }

    .flight-table thead {
        display: none;
    }

    .flight-table,
    .flight-table tbody,
    .flight-table tr {
        display: block;
        width: 100%;
    }

    .flight-table tr {
        display: block;
        margin-bottom: 20px;
        background: white;
        border-radius: 6px;
        padding: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .flight-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border: none;
        padding: 10px 0;
        gap: 10px;
    }

    .textend {
        text-align: right;
    }


    .flight-table td::before {
        font-weight: bold;
        color: #5d6d7e;
    }

    .flight-table td:nth-child(1)::before {
        content: "From";
    }

    .flight-table td:nth-child(2)::before {
        content: "To";
    }

    .flight-table td:nth-child(3)::before {
        content: "Fare type";
    }

    .flight-table td:nth-child(4)::before {
        content: "Travel dates";
    }

    .flight-table td:nth-child(5)::before {
        content: "Price";
    }

    .flight-table td:nth-child(6)::before {
        content: "Booking";
    }

    .book-btn {
        margin-top: 10px;
    }

}

/* Responsive */

@media (max-width:600px) {
    .follow_passion {
        padding: 80px 20px;
    }

    .exclusive_offer_image {
        padding: 20px 20px;
    }

    .flight-table thead {
        display: none;
    }

    .flight-table,
    .flight-table tbody,
    .flight-table tr {
        display: block;
        width: 100%;
    }

    .flight-table tr {
        margin-bottom: 20px;
        background: white;
        border-radius: 6px;
        padding: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .flight-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border: none;
        padding: 10px 0;
        gap: 10px;
    }

    .flight-table td::before {
        font-weight: bold;
        color: #5d6d7e;
        content: "";
    }

    /* Labels */

    .flight-table td:nth-child(1)::before {
        content: "From";
    }

    .flight-table td:nth-child(2)::before {
        content: "To";
    }

    .flight-table td:nth-child(3)::before {
        content: "Fare type";
    }

    .flight-table td:nth-child(4)::before {
        content: "Travel dates";
    }

    .flight-table td:nth-child(5)::before {
        content: "Price";
    }

    .flight-table td:nth-child(6)::before {
        content: "Booking";
    }

    /* Align price section */

    .price {
        text-align: right;
    }

    .updated {
        text-align: right;
    }

    .book-btn {
        margin-left: auto;
    }

}

/* =================================browse today=========================== */

.browse_today {
    padding: 40px 110px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

h1 {
    font-weight: 500;
    color: #1b4e81;
    margin-bottom: 30px;
}



/* DEAL CARDS */

.deals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.carddt {
    background: white;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.route {
    font-size: 14px;
    color: #36495A;
    font-weight: 700;
    letter-spacing: 0.22px;
    line-height: 21px;
    margin-bottom: 4px;
}

.details {
    font-size: 10px;
    color: #4f6477;
    margin-top: 6px;
}

.priceb {
    font-size: 12px;
    text-align: right;
    margin-bottom: 4px;

}

.priceb small {
    color: #6b7f91;

}

.priceb strong {
    display: block;
    color: #0078d2;
    font-size: 14px;
    margin: 4px 0;
    letter-spacing: 0.22px;
    line-height: 21px;
    font-weight: 400;
}

.updated1 {
    font-size: 10px;
    color: #6b7f91;
}

.btnst {
    display: block;
    background: #0078d2;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    margin-top: 16px;
    text-decoration: none;
    font-weight: 600;
}

.btn {
    display: none;
}

/* MOBILE */
@media (min-width:769px) {
    .btnst {
        display: none;
    }
}

@media (max-width:768px) {
    .browse_today {
        padding: 40px 20px;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .deals {
        grid-template-columns: 1fr;
    }

    .card-top {
        flex-direction: row;
    }

    .btnst {
        display: block;
        background: #1673b6;
        color: white;
        text-align: center;
        padding: 14px;
        border-radius: 4px;
        margin-top: 16px;
        text-decoration: none;
        font-weight: 600;
    }

}

/* ====================================find deals========================== */

.find_deals {
    padding: 40px 110px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

h1 {
    color: #1b4e81;
    font-weight: 500;
    margin-bottom: 30px;
}

/* SEARCH AREA */

.search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #5b7285;
}

.input {
    background: white;
    border: 1px solid #d6dde3;
    padding: 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5b7285;
}

.currency {
    background: #e9eef3;
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 13px;
}

/* TABLE */

.flight-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.flight-table th {
    background: #e6ebef;
    text-align: left;
    padding: 16px;
    font-weight: 600;
    border-bottom: 2px solid #cfd7df;
}

.flight-table td {
    padding: 20px 16px;
    border-bottom: 1px solid #e3e7ec;
}

.price {
    color: #0a66c2;
    font-weight: 400;
}

.updated {
    font-size: 13px;
    color: #6b7f91;
    margin-top: 5px;
}

.btnt {
    display: block;
    background: #0078d2;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    margin-top: 16px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE */

@media (max-width:768px) {
    .find_deals {
        padding: 40px 20px;
    }

    .search {
        grid-template-columns: 1fr;
    }

    .flight-table {
        font-size: 14px;
    }

    .flight-table th {
        padding: 12px 10px;
    }

    .flight-table td {
        padding: 14px 10px;
    }

    .route {
        text-align: start;
    }

    .details {
        text-align: start;
    }

    .price {
        color: #0a66c2;
        font-weight: 300;
    }

    .btnt {
        display: block;
        background: #1673b6;
        color: white;
        text-align: center;
        padding: 14px;
        border-radius: 4px;
        margin-top: 16px;
        text-decoration: none;
        font-weight: 600;
    }


}

/* ==========================Browse American Airlines destinations========================== */


.browse_america {
    padding: 40px 110px;
    color: #2c3e50;
}

.container {
    /* max-width: 1200px; */
    margin: auto;
}

h1 {
    color: #1b4e81;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ACCORDION */

.accordion {
    margin-bottom: 10px;
}

.accordion input {
    display: none;
}

.accordion-label {
    /* background: #0078D2; */
    color: #627A88;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 22px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #d7dde3;

}

:hover.accordion-label {
    background: #0078D2;
    color: white;
}

.icon {
    font-size: 28px;
    margin-right: 15px;
}

.accordion-content {
    background: white;
    border: 1px solid #e3e7ec;
    border-top: none;
    display: none;
    padding: 30px;
}

/* show content */

.accordion input:checked~.accordion-content {
    display: block;
}

/* change icon */

.accordion input:checked+label .icon::before {
    content: "−";

}

.icon::before {
    content: "+";
}

/* DESTINATION GRID */

.destinations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.destinations h3 {
    margin: 0 0 8px;
    color: #36495A;
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0.22px;
}

.destinations a {
    display: block;
    color: #0a66c2;
    text-decoration: none;
    margin: 8px 0;
}

.destinations a::before {
    content: "› ";
    font-weight: bold;
}

/* PROMO CARDS */

.cardsa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.cardsaex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.cardsa::-webkit-scrollbar {
    display: none;
}

/* card */


.cardaex {
    position: relative;
    overflow: hidden;
    min-width: 255px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.carda {
    position: relative;
    overflow: hidden;
    min-width: 255px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* image */

.cardaex img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;

}

.carda img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cardsa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.carda {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    max-width: 60%;
}

.card-text h2 {
    margin: 0 0 10px;
}

.h2text_card h2 {
    margin-top: 4px;
    font-size: 22px;
    text-align: center;
    color: #0078D2 !important;
    font-weight: 400 !important;
    line-height: 21px !important;
    letter-spacing: 0.22px !important;
    text-transform: none !important;
    text-decoration: none !important;

}

.cardaex h2:hover {
    text-decoration: underline;
}

.discover_image {
    padding: 0px;
}

.discover_image img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/* MOBILE */
@media (max-width: 1023px) {
    .cardsaex {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 25px;
    }
}

@media (max-width:768px) {
    .cardsaex {
        grid-template-columns: 1fr;
        margin-bottom: 15px;


    }

    .cardaex img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .browse_america {
        padding: 40px 20px;
    }

    h1 {
        margin-bottom: 10px;
    }

    .destinations {
        grid-template-columns: 1fr;
        text-align: start;
    }

    .cardsa {
        grid-template-columns: 1fr;
    }

    .carda {
        padding: 0px;
    }

    .accordion-label {
        color: #627A88;
        border: 1px solid #d7dde3;
    }

}

/* ===========================maps===================================== */

.maps {
    margin: 0;
    color: #2c3e50;
    padding: 40px 110px;
}

.containers {
    display: flex;
    min-height: 100vh;
}

/* LEFT PANEL */

.sidebar {
    width: 340px;
    padding: 20px 20px 20px 0px; 
    border-right: 1px solid #dfe5ea;
}

.label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #5d6d7e;
}

.input {
    border: 1px solid #cfd7df;
    padding: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #6b7f91;
    margin-bottom: 15px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.chip {
    background: #e9eef3;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #445566;
    cursor: pointer;
}

.clear {
    color: #7a8a99;
    font-size: 14px;
    cursor: pointer;
}

.divider {
    height: 1px;
    background: #d7dde3;
    margin: 15px 0;
}

.info-box {
    background: #dbe7f2;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #2c3e50;
}

/* MAP */

.map-area {
    flex: 1;
    background: #dce6ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map {
    width: 95%;
    height: 95%;
    background: url("/images/maps_us.jpeg") center/cover no-repeat;
    border-radius: 4px;
}

/* RESPONSIVE */

@media (max-width:700px) {
    .maps {
        padding: 40px 20px;
    }

    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dfe5ea;
    }

    .map {
        height: 350px;
    }

}

/* ==============================Popular flights========================== */


.popular_flight {
    padding: 40px 110px;
    color: #2c3e50;
}

.containerss {
    /* max-width: 1200px; */
    margin: auto;
    padding: 40px 20px;
}

h1 {
    font-weight: 500;
    color: #1b4e81;
    margin-bottom: 25px;
}

/* GRID */

.flight-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.flight-list a {
    display: block;
    color: #0078d2;
    text-decoration: none;
    margin: 12px 0;
    font-size: 18px;
}

.flight-list a:hover {
    text-decoration: underline;
}

/* BUTTON */

.btn-area {
    text-align: center;
    margin-top: 40px;
}

.view-btn {
    border: 1px solid #0078d2;
    color: #0078d2;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    background: white;
}

.view-btn:hover {
    background: #0a66c2;
    color: white;
}

/* RESPONSIVE */

@media (max-width:700px) {
    .popular_flight {
        padding: 40px 20px;
    }

    .flight-list {
        grid-template-columns: 1fr;
    }

    .flight-list a {
        font-size: 16px;
        margin: 10px 0;
        text-align: start;
    }

    .btn-area {
        text-align: start;
    }

}

/* =========================footer============================== */


footer {
    margin: 0;
    padding: 0px 110px;
}

.containerr {
    margin: auto;
    padding: 40px 20px;
}

/* GRID */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* TITLES */

.footer-title {
    font-size: 30px;
    color: #6b7f91;
    margin-bottom: 15px;
}

/* LINKS */

.footer-links a {
    display: block;
    color: #0078D2;
    text-decoration: none;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.22px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* external icon */

.external::after {
    content: " ↗";
    font-size: 16px;
    margin-left: 5px;
}

/* RESPONSIVE */

@media (max-width:700px) {
    footer {
        padding: 0px 20px;
    }

    .containerr {
        padding: 40px 0px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-links a {
        font-size: 17px;
    }

}

/* ============================bootom============================= */

.containerb {
    background: #e4e9ec;
    margin: auto;
    padding: 30px 110px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    float: left;
}

/* LINKS */

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #3c566b;
}

.links a {
    text-decoration: none;
    color: #3c566b;
}

.links a:hover {
    text-decoration: underline;
}

/* divider */

.links span {
    color: #a5b2bf;
}

/* BUY MILES */

.buy-miles {
    background: #e4e9ec;
    padding: 30px 0px;
    text-align: center;
}

.buy-miles a {
    color: #0a66c2;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}

.buy-miles p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6b7f91;
}

/* MOBILE */

@media (max-width:700px) {
    .containerb {

        padding: 30px 20px;

    }

    .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .links {
        justify-content: center;
    }

    .buy-miles {
        text-align: center;
    }

}

/* ==============================mobile pop========================== */


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.card-wrapper {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/images/sky-default.avif");
    background-size: cover;
    background-position: center;
}

.spirit-card {
    background: white;
    max-width: 400px;
    width: 90%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    padding: 10px 10px;
    border-radius: 8px;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.spirit-header {
    background: linear-gradient(to right, #0078d2, #3a89f1);
    padding: 20px;
    text-align: center;
    color: white;
    border-radius: 10px 10px 0px 0px;
}

.spirit-header img {
    max-height: 40px;
    margin-bottom: 10px;
}

.spirit-title {
    font-weight: bold;
    font-size: 18px;
}

.spirit-title .highlight {
    color: #07fff7;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    margin: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.call-box i {
    font-size: 24px;
    color: #0078d2;
}

.call-number {
    font-weight: bold;
    font-size: 16px;
}

.call-text {
    color: #555;
}

.call-action {
    color: #fff;
}

.support-strip {
    background: #f0f0f0;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    margin: 10px;
}

.support-strip i {
    color: #0078d2;
    margin-right: 5px;
}

.profile-section {
    text-align: center;
    margin: 10px 0;
}

.profile-section img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #0078d2;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px;
    margin: 15px 0;
}

.button-grid button {
    background-color: white;
    color: #0078d2;
    border: 2px solid #0078d2;
    padding: 10px 5px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    cursor: pointer;

}

.deal-banner {
    background-color: #0078d2;
    padding: 10px 16px;
    text-align: center;
    font-size: 14px;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
    font-weight: bold;
}

.deal-text {
    margin-bottom: 10px;
}

.deal-call {
    background-color: white;
    color: #0078d2;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
}

.deal-call i {
    margin-right: 6px;
}




/* CALL BUTTON */
.call-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0078d2;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
}

.call-button i {
    margin-right: 8px;
}

@media (max-width: 1440px) {
    .modal.show-on-mobile {
        display: flex;
    }
}

@media (min-width: 900px) {
    .card-wrapper {
        display: none;
    }
}

/* HIDE ON DESKTOP */
/* =================================bottom card contact================================ */
.contact-call {
    background-color: #0078D2;
    color: #fff;
    text-align: center;
    /* padding: 12px 20px; */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 400px;
    z-index: 100;
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px 0px 10px 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.call-offer {
    text-align: start;
    background-color: #0078D2;
    padding: 10px 10px;
    border-radius: 10px 0px 0px 0px;
    font-size: 16px;
    font-weight: 500;

}

.call-offer i {
    margin-right: 10px;
    font-size: 20px;

}

.contact-calls {
    text-align: start;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-call:hover {
    transform: translateX(-50%) scale(1.03);
}

.call-icon {
    width: 60px;
    margin-right: 15px;
}

.call-text h3 {
    margin: 0;
    font-size: 1em;
    color: white;
}

.call-text p {
    margin: 3px 0 0 0;
    font-size: 1.1em;
    font-weight: bold;
    color: white;

}

a {
    text-decoration: none;
}

@media (min-width: 900px) {
    .contact-call {
        display: none;
    }
}

/* ============================privacy========================= */

.containerp {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 40px 110px;
}

/* Contact Banner */
.contact-banner {
    background-image: url('/images/sky-default.avif');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #627A88;
    padding: 40px 0;
    text-align: center;
}

.h1heading {
    margin-bottom: 10px;
    font-size: 3em;
    font-weight: 700;
    color: #0078d2;
}

.h2heading {
    color: #00467f;
}

.contact-banner .containerp p a {
    color: #627A88;
    text-decoration: none;

}

.contact-banner .containerp p a:hover {
    text-decoration: underline;
}

/* Contact Details Section */
.contact-details {
    padding: 40px 60px;
    background-color: #f9f9f9;
}

.contact-details .containerp {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-details .contact-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    min-width: 200px;
    /* Minimum width for each item */
    flex-grow: 1;
    /* Allow items to grow and fill available space */
}

.contact-details .icon-wrapper {
    background-color: #e0f7fa;
    /* Light teal background */
    color: #00acc1;
    /* Teal icon color */
    border-radius: 50%;
    padding: 15px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.2em;
}

.contact-details .icon-wrapper i {
    font-size: 1.5em;
}

.contact-details .text-wrapper h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
    font-size: 1.1em;
}

.contact-details .text-wrapper p {
    color: #555;
    margin-bottom: 0;
    font-size: 0.95em;
}

.contact-details .text-wrapper p a {
    color: #00acc1;
    text-decoration: none;
}

.contact-details .text-wrapper p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .containerp {
        padding: 20px 20px;

    }

    .contact-banner {
        padding: 20px 20px;
        text-align: center;
    }

    .h1heading {
        font-size: 1.5em;

    }

    .contact-details .contact-item {
        min-width: 100%;
        /* Make items full width on smaller screens */
        flex-direction: column;
        text-align: center;
    }

    .contact-details .icon-wrapper {
        margin: 0 auto 10px;
    }
}

@media (max-width: 480px) {
    .contact-banner .containerp h1 {
        font-size: 1.7em;
    }
}

/* =============privacy content========================================== */

.icon_size {
    width: 30px;
    height: 30px;

}

.about-sections {
    background-color: #ffffff;
    padding: 40px 100px;
    color: #0078d2;
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    padding: 20px 20px;
}

.about-sections .container {
    /* max-width: 900px; */
    margin: auto;
}

.about-sections h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0078d2;
    margin-bottom: 20px;
}

.about-sections h2 span {
    color: #000;
}

.about-sections .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #627A88;
}

.about-sections h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003b5b;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-sections p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-sections ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.8;
}

.about-sections li {
    color: #36495a !important;
    font-size: 14px;
    font-weight: 400;
}

.heading_strong {
    color: #00467f !important;
    padding-top: 4px !important;

}

@media (max-width: 768px) {
    .about-sections {
        padding: 20px;
    }

}