@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.body {
    font-family: poppins;
}

/* Navbar Section */
.nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.nav-section {
    background: #fff;
    padding: 12px 0;
    margin-right: 100px;
    margin-left: 100px;
    margin-top: 20px;
    border-radius: 60px;
    position: relative;
    box-shadow: 0px 4px 24px 0px #0000000A;
}

.logo img {
    width: 127px;
    height: 58px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    transition: font-weight 0.2s ease;
    font-family: poppins;
}

.nav-menu li a:hover {
    font-weight: 700;
}

.nav-btn a {
    background: #f58220;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.nav-btn a:hover {
    background: #e06f12;
}

/* Dropdown Navbar */
.nav-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    border-radius: 16px;
    min-width: 180px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 99;
}

.dropdown-menu-custom li {
    width: 100%;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-family: poppins;
    transition: 0.2s;
    white-space: nowrap;
}

.dropdown-menu-custom li a:hover {
    background: #E879281A;
    color: #E87928;
}

/* Hover effect */
.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

/* Arrow icon */
.tickets-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 10px;
    transition: 0.3s ease;
    display: inline-block;
}

/* Rotate arrow when hover */
.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* HERO SECTION */
.hero-badge {
    display: inline-block;
    background: #405F111A;
    color: #85C226;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: poppins;
}

.hero-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
    font-family: poppins;
    color: #E87928;
}

.hero-title span.title-bottom {
    color: #85C226;
}

.hero-desc {
    color: #999;
    width: 525px;
    height: 48px;
    margin: 20px 0 28px;
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
}

.hero-btn {
    background: #E87928;
    color: #fff;
    padding: 10px 27px;
    border-radius: 36px;
    width: 170px;
    height: 48px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.hero-section {
    background: url(img/bgHome.png) no-repeat center;
    background-size: cover;
    padding: 140px 0 100px;
    margin-top: -200px;
}

.hero-gallery {
    align-items: center;
}

.gallery-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-col-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 270px;
}

.gallery-col.middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-images {
        margin-top: 40px;
    }
}

.about-hero {
    position: relative;
    height: 360px;
    background: url('img/bgAbout.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-title span {
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 170px;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 700;
}

.breadcrumb-custom {
    margin-top: 87px;
    font-size: 14px;
    opacity: 0.95;
    color: #fff;
}

.breadcrumb-custom .divider {
    margin: 0 8px;
}

.crumb-home {
    opacity: 0.85;
}

.crumb-active {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #FFFFFF1A;
    backdrop-filter: blur(4px);
}

/* FOOTER */
.footer {
    background: #ffffff;
    padding: 60px 0 0px;
    color: #000;
}

.footer-logo-img {
    max-width: 240px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #777;
    font-size: 14px;
    text-decoration: none;
}

.footer-list li a:hover {
    color: #000;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0 14px;
    flex-wrap: nowrap;
}

.payment-logos img {
    height: 22px;
    object-fit: contain;
}

.payment-note {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    max-width: 260px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
}

.footer-bottom-wrapper {
    background: #ffffff;
}

.footer-bottom {
    padding: 0px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555;
    margin-top: 40px;
    margin-bottom: 50px;
}

.design-by {
    display: flex;
    align-items: center;
    gap: 8px;
}

.design-logo {
    width: 75px;
}

/* WHY SECTION */
.why-section {
    margin-top: 25px;
    background: #fff;
    margin-bottom: 30px;
}

.why-title {
    text-align: center;
    margin-bottom: 10px;
    font-family: poppins;
    font-weight: 500;
    font-size: 40px;
    color: #85C226;
}

.why-subtitle {
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-bottom: 50px;
    font-family: poppins;
    font-weight: 400;
}

.why-image img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #EEEEEE;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-icon img {
    width: 24px;
    height: 24px;
}

.why-text h6 {
    margin: 0;
    font-size: 20px;
    font-family: poppins;
    font-weight: 400;
}

.why-text p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    font-weight: 400;
    font-family: poppins;
}

/* EXPERIENCE */
.experience-section {
    padding: 0px 0;
    background: #fff;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid #EEEEEE;
    background: #fff;
    color: #E87928;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #E879281A;
    color: #E87928;
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
    border: 1px solid #E87928;
}

.tour-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.tour-img {
    height: 229px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-body {
    padding: 10px;
}

.tour-title {
    font-size: 20px;
    font-weight: 500;
    font-family: poppins;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.tour-desc {
    font-size: 14px;
    color: #999;
    margin: 5px 0 8px;
    font-family: poppins;
    font-weight: 400;
}

.tour-price {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: poppins;
}

.tour-price span {
    color: #00000080;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: poppins;
}

.tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-detail {
    height: 44px;
    background: #EEEEEE;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    opacity: 1;
    border-radius: 500px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-detail:hover {
    text-decoration: none;
    color: #222;
}

.btn-book {
    height: 44px;
    background: #E87928;
    color: #fff;
    font-size: 16px;
    padding: 6px 14px;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    border-radius: 500px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.more-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.more-btn {
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid #EEEEEE;
    background: #E879281A;
    color: #E87928;
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
    transition: 0.25s;
    margin-top: 25px;
}

.filter-btn:hover {
    background: #E879281A;
    color: #E87928;
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
    border: 1px solid #E87928;
}

/* POPULAR TOUR */
.popular-tours {
    position: relative;
    overflow: hidden;
    margin-top: 42px;
    background: radial-gradient(72.69% 289.36% at 50% 50%,
            #F4F4F4 0%,
            #FFFFFF 100%);

    width: 100%;
}

.tours-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* POPULAR CARD */
.popular-card {
    border-radius: 30px;
    overflow: visible;
    transition: 0.3s;
    height: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.popular-card img {
    width: 255px;
    height: 340px;
    object-fit: cover;
    border-radius: 50px;
    transition: transform .4s ease;
    display: block;
    margin: 0 auto;
}

.popular-card h6 {
    margin: 14px auto 0;
    font-weight: 500;
    background: #FAFAFA;
    height: 42px;
    border-radius: 60px;
    font-family: 'Poppins', sans-serif;

    padding: 6px 66px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.side-img {
    position: absolute;
    top: 0;
}

.side-left {
    left: -310px;
}

.side-right {
    right: -310px;
}

.side-img img {
    width: 280px;
    height: 340px;
    object-fit: cover;
    border-radius: 50px;
}

/* VEHICLE */
.vehicle-card-wrap {
    position: relative;
}

.vehicle-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: #4f6f1f;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.vehicle-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.vehicle-badge.active::before {
    background: #ffd54f;
}

.vehicle-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px 25px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 24px 0px #0000001A;
}

.vehicle-card.active {
    border: 1.5px solid #E87928;
    box-shadow: 0px 4px 16px rgba(194, 0, 0, 0.16);
}

.vehicle-card.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: rgba(232, 121, 40, 0.35);
    filter: blur(70px);
    border-radius: 50%;
    transform: translate(40px, -40px);
    z-index: 0;
}

.vehicle-card>* {
    position: relative;
    z-index: 1;
}

.vehicle-img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.vehicle-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.vehicle-desc {
    font-size: 13px;
    color: #999;
}

.book-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #405F11;
    color: #405F11;
    background: #405F111A;
    text-decoration: none;
}

.book-btn.orange {
    background: #E87928;
    border-color: #E87928;
    color: #fff;
}

.vehicle-include {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    background: #f2f2f2;
    padding: 6px 12px;
    border-radius: 20px;
}

.vehicle-include .label {

    color: #888;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f3f3;
    padding: 0px 2px 0px 0px;
    border-radius: 30px;
    color: #000;
    font-weight: 500;
}

.include-item img {
    width: 26px;
    height: 26px;
    background: #E87928;
    padding: 6px;
    border-radius: 50%;
    object-fit: contain;
}

/* VISA SECTION */
.visa-section {
    margin-top: 50px;
}

.visa-wrapper {
    background: #F4F4F4;
    border-radius: 64px;
    padding: 50px 60px;
}

.visa-title {
    font-size: 36px;
    font-weight: 600;
    color: #8cc63f;
}

.visa-subtitle {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.visa-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
}

.visa-card.active {
    position: relative;
    background:
        linear-gradient(0deg, #FFFFFF, #FFFFFF),
        linear-gradient(135deg,
            rgba(232, 121, 40, 0) 60%,
            rgba(232, 121, 40, 0.45) 115%);
    border: 1.5px solid #E87928;
    box-shadow: 0px 4px 16px 0px rgba(194, 0, 0, 0.16);
    overflow: hidden;
}

.visa-card.active::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg,
            rgba(232, 121, 40, 0) 35%,
            rgba(232, 121, 40, 0.6) 100%);
    filter: blur(45px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.visa-card.active>* {
    position: relative;
    z-index: 1;
}

.visa-card h4 {
    font-size: 20px;
    font-weight: 600;
}

.visa-desc {
    font-size: 13px;
    color: #999;
    margin: 10px 0 25px;
}

.visa-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.visa-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #333;
}

.visa-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: #8fd19e;
    color: #000000;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #E87928;
    color: #fff;
    padding: 12px 0;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}