/* ===========================
   ABOUT HERO
=========================== */

.about-hero {
    padding: 140px 0;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url("../image/about/aboutairline.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-hero span {
    color: #42d6e7;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-hero h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    margin: 15px 0;
}

.about-hero p {
    color: #fff;
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}

/* ===========================
   COMMON
=========================== */

.section-subtitle {
    color: #42d6e7;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 15px 0;
}

.theme-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(90deg,
            #42d6e7,
            #ff6b6b);
    transition: .3s;
}

.theme-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* ===========================
   OUR STORY
=========================== */

.our-story {
    padding: 100px 0;
}

.story-image img {
    width: 100%;
}

.our-story p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.story-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.story-list li {
    margin-bottom: 12px;
    color: #0d1b3e;
    font-weight: 500;
}

.story-list li::before {
    content: "✓";
    color: #42d6e7;
    margin-right: 10px;
}

/* ===========================
   COUNTER SECTION
=========================== */

.counter-section {
    padding: 80px 0;
    background: #0d1b3e;
}

.counter-box {
    text-align: center;
}

.counter-box h2 {
    color: #42d6e7;
    font-size: 55px;
    font-weight: 800;
}

.counter-box p {
    color: #fff;
    margin: 0;
}

/* ===========================
   MISSION & VISION
=========================== */

.mission-section {
    padding: 100px 0;
    background: #f8fbfd;
}

.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    height: 100%;
    transition: .3s;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-card i {
    font-size: 55px;
    color: #42d6e7;
}

.mission-card h3 {
    margin: 20px 0;
    font-weight: 700;
    color: #0d1b3e;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/* ===========================
   DESTINATION
=========================== */

.destination-section {
    padding: 100px 0;
}

.destination-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
}

.destination-img:hover {
    transform: scale(1.05);
}

/* ==========================
   TRAVEL BENEFITS
========================== */

.benefits-section {
    padding: 100px 0;
    background: #f8fbfd;
}

.benefit-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    font-size: 30px;
}

.benefit-card h4 {
    color: #0d1b3e;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
}

.section-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   CTA SECTION
=========================== */

.about-cta {
    padding: 120px 0;
    background:
        linear-gradient(rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .60)),
        url("../image/about/aboutairline.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
}

.about-cta p {
    color: #fff;
    max-width: 700px;
    margin: 20px auto 35px;
    font-size: 18px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px) {

    .about-hero h1 {
        font-size: 50px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-cta h2 {
        font-size: 40px;
    }

    .counter-box {
        margin-bottom: 30px;
    }

    .story-image {
        margin-bottom: 40px;
    }
}

@media(max-width:768px) {

    .about-hero {
        padding: 100px 0;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .section-title {
        font-size: 30px;
    }

    .about-cta h2 {
        font-size: 30px;
    }

    .mission-card,
    .testimonial-card {
        padding: 25px;
    }

    .destination-img {
        height: 220px;
    }
}