
.page-banner {
    position: relative;
    height: 420px;
    background: url("../image/about/breadcrumb-bg.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Dark Overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 8, 8, 0.55);
}

/* Red Gradient Overlay */
.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(110, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15));
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb a:hover {
    color: #ff2d00;
}

.breadcrumb .active {
    color: #ff2d00;
}


@media(max-width:768px) {

    .page-banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .breadcrumb {
        font-size: 15px;
    }
}


.luxury-flight {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.luxury-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.luxury-images {
    position: relative;
}

.main-image img {
    width: 100%;
    max-width: 520px;
    height: 650px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.small-image {
    position: absolute;
    right: -60px;
    bottom: 40px;
    width: 280px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.small-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.red-line {
    position: absolute;
    top: 80px;
    right: -18px;
    width: 8px;
    height: 140px;
    background: #ff2d00;
}

.section-tag {
    color: #ff2d00;
    font-size: 28px;
    font-family: cursive;
}

.luxury-content h2 {
    font-size: 58px;
    line-height: 1.1;
    margin: 15px 0 25px;
    color: #2d2a3c;
    font-weight: 800;
}

.luxury-content p {
    color: #666;
    line-height: 1.9;
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 35px 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2d00;
    font-size: 28px;
}

.feature-box h4 {
    font-size: 28px;
    color: #2d2a3c;
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 40px;
}

.feature-list li {
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff2d00;
}

.luxury-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
}

.discover-btn {
    background: #2d2a3c;
    color: #fff;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.discover-btn:hover {
    background: #ff2d00;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2d00;
}

.call-box span {
    display: block;
    color: #777;
    font-size: 14px;
}

.call-box h5 {
    margin: 0;
    font-size: 24px;
    color: #2d2a3c;
}


@media(max-width:991px) {

    .luxury-wrapper {
        grid-template-columns: 1fr;
    }

    .small-image {
        right: 0;
        width: 220px;
    }

    .luxury-content h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .main-image img {
        height: 500px;
    }

    .small-image {
        width: 180px;
        bottom: 20px;
    }

    .luxury-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .luxury-content h2 {
        font-size: 32px;
    }
}


.video-banner {
    position: relative;
    min-height: 500px;
    background: url("../image/about/video-img-h2.jpg") center center/cover no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 40, .55);
}

/* Left dark shape */
.video-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: #211d38;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
    opacity: .95;
    z-index: 1;
}

/* Red diagonal line */
.video-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 43%;
    width: 4px;
    height: 100%;
    background: #ff2d00;
    transform: skewX(-25deg);
    z-index: 2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.video-content {
    position: relative;
    z-index: 5;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-left {
    max-width: 520px;
    color: #fff;
}

.sub-title {
    display: block;
    font-size: 28px;
    font-family: cursive;
    margin-bottom: 15px;
}

.video-left h2 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 35px;
}

.stats-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: #fff;
    color: #222;
    border-radius: 10px;
    padding: 25px;
    min-width: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-box h3 {
    font-size: 40px;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 15px;
}

.stat-box i {
    font-size: 35px;
    color: #1f2342;
}

.banner-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.banner-bottom p {
    font-weight: 600;
}

.contact-btn {
    background: #ff2d00;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    transition: .3s;
}

.contact-btn:hover {
    background: #fff;
    color: #ff2d00;
}

.video-right {
    text-align: center;
    color: #fff;
}

.watch-text {
    display: block;
    margin-bottom: 25px;
    font-size: 28px;
    letter-spacing: 2px;
}

.play-btn {
    width: 95px;
    height: 95px;
    background: #ff2d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    margin: auto;
    transition: .3s;
}

.play-btn:hover {
    transform: scale(1.08);
}


@media(max-width:991px) {

    .video-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
        padding: 80px 0;
    }

    .video-banner::before {
        width: 100%;
        clip-path: none;
    }

    .video-banner::after {
        display: none;
    }

    .stats-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }

    .video-left h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .video-left h2 {
        font-size: 30px;
    }

    .stat-box {
        min-width: 100%;
    }
}




.faq-section {
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.faq-image {
    position: relative;
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.travel-badge {
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 140px;
    height: 140px;
    background: #ff2d00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 45px;
    border: 8px solid #fff;
}

.faq-subtitle {
    color: #ff2d00;
    font-size: 28px;
    font-family: cursive;
}

.faq-content h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 15px 0 20px;
    color: #2b273b;
    font-weight: 800;
}

.faq-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.faq-item {
    background: #f0ebe7;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #2b273b;
}

.faq-btn i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #2b273b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.faq-item.active .faq-btn i {
    background: #ff2d00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}


@media(max-width:991px) {

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-content h2 {
        font-size: 38px;
    }

    .travel-badge {
        width: 110px;
        height: 110px;
        font-size: 35px;
    }
}

@media(max-width:576px) {

    .faq-content h2 {
        font-size: 30px;
    }

    .faq-btn {
        font-size: 16px;
        padding: 18px;
    }
}