/* =========================================
   Hero Section
========================================= */

.hero-section {
    position: relative;
    min-height: 85vh;
    background: url('../img/flyincheaphero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    padding-top: 40px;
    padding-bottom: 80px;
    margin-top:20px;
    display: flex;
    align-items: flex-start;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    background: rgb(36 73 159 / 91%);
    color: #FFF;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #1340dec7;
    margin-bottom: 8px;
    max-width: 900px;
}

.hero-title span {
    color: #28a354;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #86efac;
    color: #111827;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn-primary:hover {
    background: #FFF;
    color: #111827;
}

.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: #FFF;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: #FFF;
    color: #111827;
}

/* =========================================
   Mobile Responsive
========================================= */

@media (max-width: 991px) {

    .hero-section,
    .hero-wrapper {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .hero-section {
        background-image: url('../img/flyincheapheromobile.webp');
        background-size: cover;
        background-position: center top;
        min-height: auto;
    }

    .hero-wrapper {
        min-height: auto;
        padding: 30px 15px 250px;
        margin-top: 0;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 12px;
        max-width: 100%;
    }
.hero-title span {
    color: black;
}
    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-btn-group {
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 13px 22px;
        font-size: 14px;
    }
}