/* ==========================
   HERO SECTION
========================== */

.hero-section {
    position: relative;
    min-height: 660px;
    background: url('../image/index/hero-banner-img-h1.jpg') center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .55));
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

.hero-subtitle {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.hero-content h1 {
    margin: 0 0 120px;
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
}

.hero-content h1 span {
    color: #ff2500;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    width: auto;
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.booking-wrapper {
    position: absolute;
    left: 0;
    bottom: 28px;
    z-index: 10;
    width: 100%;
}

.booking-wrapper .booking-box {
    margin-top: 0;
    margin-bottom: 0;
}

/* ==========================
   BOOKING PROCESS
========================== */

.booking-process {
    padding: 80px 0;
    background: #f5f0ea;
    background-image: radial-gradient(circle, rgba(0, 0, 0, .04) 2px, transparent 2px);
    background-size: 30px 30px;
}

.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.process-card {
    flex: 1;
    max-width: 360px;
    min-height: 140px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.process-card:hover {
    transform: translateY(-6px);
}

.process-icon {
    flex: 0 0 auto;
    padding-right: 18px;
    border-right: 1px solid #ddd;
    color: #1f2340;
    font-size: 38px;
}

.process-content h4 {
    margin-bottom: 6px;
    color: #1f2340;
    font-size: 22px;
    font-weight: 700;
}

.process-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.process-arrow {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    color: #1f2340;
    font-size: 20px;
}

/* ==========================
   ABOUT DISCOVER
========================== */

.about-discover {
    position: relative;
    padding: 100px 0;
    background: #f6f2ee;
}

.about-discover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, .04) 2px, transparent 2px);
    background-size: 30px 30px;
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    margin: auto;
}

.circle-shape {
    position: absolute;
    inset: -20px;
    border: 20px solid #ff2300;
    border-top-width: 40px;
    border-left-color: #2d2445;
    border-radius: 50%;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 8px solid #fff;
    border-radius: 50%;
    object-fit: cover;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-subtitle {
    color: #ff2300;
    font-family: cursive;
    font-size: 24px;
}

.about-content h2 {
    margin: 15px 0;
    color: #2d2445;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
}

.about-content p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 35px;
}

.feature-list div {
    color: #2d2445;
    font-weight: 500;
}

.feature-list i {
    margin-right: 8px;
    color: #ff2300;
}

.experience-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 230px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.experience-top {
    padding: 25px;
    background: #2d2445;
    text-align: center;
}

.experience-top h5 {
    margin-bottom: 20px;
    color: #fff;
    font-family: cursive;
    font-size: 26px;
}

.experience-top img {
    width: 100%;
    max-width: 130px;
}

.experience-bottom {
    padding: 25px;
    background: #ff2300;
    text-align: center;
}

.experience-bottom h3 {
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
}

.experience-bottom p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ==========================
   DESTINATION CAROUSEL
========================== */

.destination-slider-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-heading h2 {
    color: #1f2937;
    font-size: 42px;
    font-weight: 700;
}

.section-heading p {
    margin-top: 10px;
    margin-bottom: 50px;
    color: #6b7280;
}

.destination-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .2), transparent);
}

.destination-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ff6a00;
    opacity: 1;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -70px;
}

.carousel-control-next {
    right: -70px;
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background: #ff6a00 !important;
}

/* ==========================
   BOOKING ROADMAP
========================== */

.booking-roadmap {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7f7f7;
}

.booking-roadmap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, .05) 2px, transparent 2px);
    background-size: 32px 32px;
    opacity: .08;
    pointer-events: none;
}

.booking-roadmap .container {
    position: relative;
    z-index: 2;
}

.subtitle {
    display: block;
    margin-bottom: 10px;
    color: #ff2a00;
    font-family: cursive;
    font-size: 28px;
    text-align: center;
}

.booking-roadmap h2 {
    margin-bottom: 70px;
    color: #29253a;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.roadmap-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.step-box {
    text-align: center;
}

.icon-box {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px dashed rgba(255, 255, 255, .6);
    border-radius: 50%;
    background: #ff2400;
    box-shadow: 0 10px 25px rgba(255, 36, 0, .25);
    color: #fff;
    font-size: 36px;
}

.step-box h3 {
    margin-bottom: 15px;
    color: #2d2a3b;
    font-size: 30px;
    font-weight: 700;
}

.step-box p {
    max-width: 240px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.step-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    border-radius: 50%;
    background: #2d2a3b;
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

.step-btn:hover {
    background: #ff2400;
    color: #fff;
    transform: translateY(-5px);
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section {
    overflow: hidden;
    padding: 100px 0;
    background: #f8f8f8;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.faq-image {
    position: relative;
}

.faq-image img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.travel-badge {
    position: absolute;
    right: 20px;
    bottom: 40px;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #fff;
    background: #ff2d00;
    color: #fff;
    font-size: 45px;
}

.faq-subtitle {
    color: #ff2d00;
    font-family: cursive;
    font-size: 28px;
}

.faq-content h2 {
    margin: 15px 0 20px;
    color: #2b273b;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.faq-text {
    margin-bottom: 35px;
    color: #666;
    line-height: 1.8;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f0ebe7;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 25px;
    border: none;
    background: none;
    color: #2b273b;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.faq-btn i {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2b273b;
    color: #fff;
    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: 220px;
}



.why-book-us {
    padding: 100px 0;
    background: #fff;
}

.section-title span {
    color: #ff3d00;
    font-weight: 600;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #231942;
    margin: 15px 0;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.trust-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-10px);
}

.trust-card i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #ff3d00;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #231942;
}

.trust-card p {
    color: #666;
    margin-top: 10px;
}


/* ==========================
   IMAGE BANNER SECTION
========================== */

.travel-banner-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.travel-banner {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 500px;
}

.travel-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.travel-banner:hover img {
    transform: scale(1.08);
}

.travel-overlay {
    position: relative;
    z-index: 2;

    min-height: 500px;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,.80),
        rgba(0,0,0,.35)
    );

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px;
    color: #fff;
}

.travel-overlay span {
    color: #ff4d00;
    font-size: 18px;
    font-weight: 600;
}

.travel-overlay h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0;
    max-width: 650px;
}

.travel-overlay p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;
    padding: 15px 35px;

    background: #ff4d00;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;

    transition: .3s ease;
}

.banner-btn:hover {
    background: #fff;
    color: #ff4d00;
}

/* ==========================
   TABLET
========================== */

@media (max-width:991px) {

    .travel-overlay {
        padding: 50px;
    }

    .travel-overlay h2 {
        font-size: 45px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px) {

    .travel-banner {
        min-height: 650px;
    }

    .travel-overlay {
        min-height: 650px;
        padding: 30px 25px;
        justify-content: center;

        background: linear-gradient(
            180deg,
            rgba(0,0,0,.75),
            rgba(0,0,0,.45)
        );
    }

    .travel-overlay span {
        font-size: 16px;
    }

    .travel-overlay h2 {
        font-size: 34px;
        line-height: 1.2;
        max-width: 100%;
    }

    .travel-overlay p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .banner-btn {
        padding: 13px 30px;
        font-size: 15px;
    }
}

/* ==========================
   SMALL MOBILE (320px)
========================== */

@media (max-width:480px) {

    .travel-banner {
        min-height: 720px;
    }

    .travel-overlay {
        min-height: 720px;
        padding: 25px 20px;
    }

    .travel-overlay h2 {
        font-size: 28px;
    }

    .travel-overlay p {
        font-size: 14px;
        line-height: 1.8;
    }

    .banner-btn {
        width: 100%;
        text-align: center;
    }

}
/* ==========================
   RESPONSIVE
========================== */

@media (min-width: 1200px) and (max-width: 1440px) {
    .hero-section {
        min-height: 640px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-content h1 {
        margin-bottom: 105px;
        font-size: 58px;
    }

    .hero-image img {
        max-height: 520px;
    }

    .carousel-control-prev {
        left: -28px;
    }

    .carousel-control-next {
        right: -28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-subtitle {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .hero-content h1 {
        margin-bottom: 70px;
        font-size: 44px;
        line-height: 1.08;
    }

    .hero-image img {
        max-height: 500px;
    }

    .booking-wrapper {
        bottom: 42px;
    }

    .process-wrapper {
        align-items: stretch;
    }

    .process-card {
        padding: 22px 18px;
    }

    .process-content h4 {
        font-size: 19px;
    }

    .about-content h2,
    .faq-content h2 {
        font-size: 44px;
    }

    .about-image-wrapper {
        width: 300px;
        height: 300px;
    }

    .roadmap-wrapper {
        gap: 24px;
    }

    .step-box h3 {
        font-size: 24px;
    }

    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 55px;
    }

    .hero-content {
        padding-top: 0;
        text-align: center;
    }

    .hero-content h1 {
        margin-bottom: 35px;
        font-size: 50px;
    }

    #my-images {
        display: none;
    }

    .booking-wrapper {
        position: relative;
        bottom: auto;
        margin-top: 15px;
    }

    .booking-wrapper .booking-box {
        max-width: 720px;
    }

    .booking-process,
    .about-discover,
    .destination-slider-section,
    .booking-roadmap,
    .faq-section {
        padding: 70px 0;
    }

    .process-wrapper {
        flex-direction: column;
    }

    .process-card {
        width: 100%;
        max-width: 550px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .about-content {
        margin: 50px 0;
        text-align: center;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .experience-card {
        max-width: 260px;
    }

    .destination-card {
        height: 350px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .roadmap-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
    }

    .booking-roadmap h2 {
        margin-bottom: 50px;
        font-size: 38px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-content h2 {
        font-size: 38px;
    }

    .travel-badge {
        width: 110px;
        height: 110px;
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 55px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .booking-wrapper .container {
        width: 100%;
        max-width: 100%;
    }

    .process-card {
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        margin-bottom: 35px;
    }

    .destination-card {
        height: 300px;
    }

    .carousel-indicators {
        bottom: -48px;
    }

    .subtitle,
    .faq-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 45px 0 40px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .booking-process,
    .about-discover,
    .destination-slider-section,
    .booking-roadmap,
    .faq-section {
        padding: 55px 0;
    }

    .process-card {
        flex-direction: column;
        text-align: center;
    }

    .process-icon {
        padding-right: 0;
        padding-bottom: 14px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .about-content h2,
    .booking-roadmap h2,
    .faq-content h2 {
        font-size: 30px;
    }

    .about-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .circle-shape {
        inset: -14px;
        border-width: 14px;
        border-top-width: 28px;
    }

    .experience-bottom h3 {
        font-size: 40px;
    }

    .destination-card {
        height: 280px;
    }

    .roadmap-wrapper {
        grid-template-columns: 1fr;
    }

    .step-box h3 {
        font-size: 24px;
    }

    .faq-btn {
        padding: 18px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
    }

    .travel-badge {
        right: 14px;
        bottom: 18px;
        width: 84px;
        height: 84px;
        border-width: 6px;
        font-size: 28px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .about-image-wrapper {
        width: 210px;
        height: 210px;
    }

    .destination-card {
        height: 250px;
    }
}