
/* ==========================
   HERO
========================== */

.flight-hero {
    height: 250px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../image/about/aboutairline.jpg');

    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.breadcrumb-text {
    color: #39d6e7;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 800;
    margin: 15px 0;
}

.hero-content p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

/* ==========================
   SEARCH
========================== */

.flight-search-section {
    margin-top: -80px;
    position: relative;
    z-index: 99;
}

.search-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
}

.trip-type {
    margin-bottom: 25px;
}

.trip-type button {
    border: none;
    padding: 10px 25px;
    margin-right: 10px;
    border-radius: 30px;
    background: #edf2f7;
    font-weight: 600;
}

.trip-type .active {
    background: #35d5e8;
    color: #fff;
}

.form-control,
.form-select {
    height: 55px;
    border-radius: 10px;
}

.search-btn {
    width: 100%;
    border: none;
    height: 55px;
    border-radius: 10px;

    background:
        linear-gradient(90deg,
            #35d5e8,
            #ff5c62);

    color: #fff;
    font-weight: 600;
}

/* ==========================
   COMMON TITLE
========================== */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #35d5e8;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.section-title h2 {
    margin-top: 10px;
    font-size: 48px;
    font-weight: 800;
    color: #102043;
}

/* ==========================
   DESTINATION
========================== */

.popular-flight-destination {
    padding: 100px 0;
    background: #f7fbfd;
}

.flight-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.flight-card:hover {
    transform: translateY(-8px);
}

.flight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.flight-info {
    padding: 20px;
}

.flight-info h5 {
    font-size: 22px;
    font-weight: 700;
}

.flight-info span {
    color: #35d5e8;
    font-weight: 600;
}

/* =========================
ADVENTURE SECTION
========================= */

.adventure-section {
    padding: 120px 0;
    background: #fff;
}

.adventure-image {
    position: relative;
}

.adventure-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
}

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #fff;
    color: #35d5e8;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 180px;
}

.experience-box h3 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.experience-box span {
    font-size: 15px;
}

.section-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #fff3eb;
    color: #35d5e8;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.adventure-section h2 {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.adventure-section p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #35d5e8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-weight: 600;
    color: #0f172a;
}

.discover-btn {
    display: inline-block;
    padding: 16px 35px;
    background: #35d5e8;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.discover-btn:hover {
    background: #35d5e8;
    color: #fff;
}

@media(max-width:991px) {

    .adventure-image img {
        height: 500px;
    }

    .adventure-section h2 {
        font-size: 40px;
    }

    .experience-box {
        right: 20px;
    }
}

@media(max-width:768px) {

    .adventure-section {
        padding: 80px 0;
    }

    .adventure-section h2 {
        font-size: 32px;
    }

    .adventure-image img {
        height: 400px;
    }

    .experience-box {
        min-width: 140px;
        padding: 15px;
    }

    .experience-box h3 {
        font-size: 30px;
    }
}

/* ==========================
   CTA
========================== */

.flight-cta {
    padding: 120px 0;

    background:
        linear-gradient(rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .65)),
        url('../image/flight/hero session.jpg');

    background-size: cover;
    background-position: center;
}

.cta-content {
    text-align: center;
}

.cta-content span {
    color: #35d5e8;
    text-transform: uppercase;
}

.cta-content h2 {
    color: #fff;
    font-size: 55px;
    font-weight: 800;

    margin: 20px auto 35px;
    max-width: 900px;
}


.btn-outline-light {
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #35d5e8 !important;
    border-color: #35d5e8 !important;
    color: #fff !important;
  
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 45px;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .feature-card {
        margin-bottom: 25px;
    }
}

@media(max-width:767px) {

    .flight-hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .search-card {
        padding: 20px;
    }

    .trip-type button {
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}



/* ==========================
   ADVENTURE BANNER
========================== */

.adventure-banner{
    position: relative;
    padding: 140px 0;
    background:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.35)),
    url('../image/flight/adventure-banner.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-content h2{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
}

/* Video Button */

.video-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}

.video-btn{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#3fd6e6;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    position:relative;
    font-size:45px;
}

.video-btn::before{
    content:'';
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
}

.video-btn::after{
    content:'';
    position:absolute;
    width:190px;
    height:190px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
}

.video-btn i{
    position:relative;
    z-index:2;
}

/* Hover */

.video-btn:hover{
    color:#fff;
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

    .banner-content{
        text-align:center;
        margin-bottom:50px;
    }

    .banner-content h2{
        font-size:45px;
        margin:auto;
    }
}

@media(max-width:768px){

    .adventure-banner{
        padding:80px 0;
    }

    .banner-content h2{
        font-size:34px;
    }

    .video-btn{
        width:90px;
        height:90px;
        font-size:35px;
    }

    .video-btn::before{
        width:120px;
        height:120px;
    }

    .video-btn::after{
        width:145px;
        height:145px;
    }
}