body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
}

/* ==========================
   PAGE HEADER
========================== */

.page-header{
    background:#fff;
    padding:55px 0 30px;
    margin-top:30px;
}

.page-header h1{
    font-size:48px;
    font-weight:700;
    color:#0b2d55;
    margin-bottom:12px;
}

.breadcrumb{
    font-size:16px;
    color:#777;
}

.breadcrumb a{
    color:#0b2d55;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb span{
    margin:0 8px;
}

/* ==========================
   SEARCH BOX
========================== */

.flight-search{
    padding:10px 0 50px;
}

.search-box{
    background:#0b2d55;
    border-radius:14px;
    padding:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.trip-type{
    display:flex;
    gap:25px;
    margin-bottom:20px;
}

.trip-type label{
    color:#fff;
    font-size:14px;
    cursor:pointer;
}

.search-box .row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:15px;
}

.second-row{
    grid-template-columns:1fr 1fr 2fr !important;
}

.item{
    display:flex;
    flex-direction:column;
}

.item label{
    color:#fff;
    font-size:13px;
    margin-bottom:8px;
    font-weight:600;
}

.item input,
.item select{
    height:48px;
    border:none;
    border-radius:8px;
    padding:0 14px;
    font-size:15px;
}

.search-btn{
    border:none;
    border-radius:8px;
    background:#d8a02b;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.search-btn:hover{
    background:#08284c;
}
/* ==========================
   BEST FLIGHTS
========================== */

.best-flights{
    padding:60px 0;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.title-content h2{
    font-size:42px;
    font-weight:700;
    color:#0b2d55;
    margin-bottom:8px;
}

.title-content p{
    font-size:18px;
    color:#777;
}

.view-all{
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px 18px;
    color:#0b2d55;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.view-all strong{
    margin-left:6px;
}

.view-all:hover{
    background:#0b2d55;
    color:#fff;
}

/* ==========================
   FLIGHT CARD
========================== */

.flight-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.flight-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* ==========================
   API PLACEHOLDER
========================== */

.api-placeholder{
    background:#fff;
    border-radius:18px;
    padding:90px 40px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.api-placeholder i{
    font-size:72px;
    color:#0b2d55;
    margin-bottom:20px;
}

.api-placeholder h2{
    font-size:34px;
    color:#0b2d55;
    margin-bottom:15px;
}

.api-placeholder p{
    font-size:18px;
    color:#777;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* ==========================
   FEATURES
========================== */

.features{
    background:#fff;
    padding:70px 0;
    margin-top:60px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.feature{
    display:flex;
    align-items:center;
    gap:22px;
    padding:25px 30px;
    border-right:1px solid #ececec;
}

.feature:last-child{
    border-right:none;
}

.feature i{
    width:72px;
    height:72px;
    background:#0b2d55;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;
}

.feature-text h3{
    margin:0 0 8px;
    font-size:22px;
    color:#0b2d55;
    font-weight:700;
}

.feature-text p{
    margin:0;
    color:#777;
    font-size:16px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .search-box .row{
        grid-template-columns:repeat(2,1fr);
    }

    .second-row{
        grid-template-columns:1fr 1fr;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature{
        border-right:none;
        border-bottom:1px solid #ececec;
    }

}

@media(max-width:768px){

    .search-box .row,
    .second-row{
        grid-template-columns:1fr !important;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .page-header h1{
        font-size:36px;
    }

}