* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eef6f7;
    overflow-x: hidden;
}

/* HERO */

.hero-section {
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.hero-title {
    font-size: 78px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-text {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.8;
}

.badge-custom {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.search-box {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.search-box label {
    font-size: 13px;
    font-weight: 600;
    color: gray;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    border: none;
    background: #f5f5f5;
    padding: 14px;
    border-radius: 12px;
}

.btn-orange {
    background: linear-gradient(to right, #ff9966, #ff5e62);
    border: none;
    color: white;
}

.search-btn {
    height: 55px;
    border-radius: 14px;
}

/* SECTION */

.section-label {
    color: #00bcd4;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #082032;
    line-height: 1.2;
}

/* KATEGORI */

.kategori-section {
    padding: 100px 0;
}

.kategori-card {
    background: white;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.kategori-card:hover {
    transform: translateY(-8px);
}

.kategori-card i {
    font-size: 32px;
    color: #00bcd4;
    margin-bottom: 15px;
}

.kategori-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* DESTINASI */

.destinasi-section {
    padding: 80px 0;
}

.destination-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.destination-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.destination-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.destination-content p {
    color: #777;
    margin-bottom: 20px;
}

.destination-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.destination-bottom h5 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.destination-bottom .btn {
    padding: 10px 24px;
    border-radius: 50px;
}

/* TESTIMONI */

.testimoni-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
} */

.stars {
    color: orange;
    font-size: 20px;
}

/* FAQ */

.faq-section {
    padding: 80px 0;
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
}

/* STATS SECTION */

.stats-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.testimoni-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-section {
    background: #062b33;
    padding-top: 80px;
    padding-bottom: 40px;
    color: white;
}

.stats-wrapper {
    background: linear-gradient(to right, #00bcd4, #0097a7);
    padding: 45px 30px;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stats-item h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 16px;
}

/* FOOTER */

.footer-section {
    background: #062b33;
    padding-top: 150px;
    padding-bottom: 40px;
    color: white;
}

.footer-brand h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00bcd4;
    transform: translateY(-5px);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00bcd4;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
    display: flex;
    gap: 12px;
    line-height: 1.7;
}

.footer-contact i {
    color: #00bcd4;
    margin-top: 5px;
}

.footer-line {
    border-color: rgba(255,255,255,0.1);
    margin: 50px 0 25px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* TABLET */

@media (max-width: 992px) {

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 38px;
    }

    .destination-card img {
        height: 220px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .search-box {
        padding: 20px;
        border-radius: 20px;
    }

    .navbar-collapse {
        background: rgba(0,0,0,0.8);
        padding: 20px;
        border-radius: 20px;
        margin-top: 20px;
    }

    .destination-card img {
        height: 200px;
    }

    .destination-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .destination-bottom .btn {
        width: 100%;
    }

    /* .testimonial-card {
        padding: 24px;
    } */

    .stats-section {
        margin-top: 20px;
        margin-bottom: -60px;
    }

    .stats-wrapper {
        padding: 35px 20px;
        border-radius: 25px;
    }

    .stats-item h2 {
        font-size: 28px;
    }

    .stats-item p {
        font-size: 14px;
    }

    .footer-section {
        padding-top: 120px;
    }

    .footer-brand h2 {
        font-size: 28px;
    }

    .footer-title {
        margin-top: 10px;
    }
}

/* HP KECIL */

@media (max-width: 576px) {

    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-text {
        font-size: 15px;
    }

    .destination-card img {
        height: 180px;
    }

    .destination-content h4 {
        font-size: 20px;
    }

    .destination-bottom h5 {
        font-size: 18px;
    }

}
/* ===== DETAIL DESTINATION ===== */

.destination-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.destination-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
    z-index: 1;
}

.destination-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.hero-content {
    color: white;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin: 0;
}

/* DETAIL CARD */

.detail-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #082032;
    margin-bottom: 15px;
}

.detail-description {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

/* SIDEBAR */

.sidebar-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
}

.info-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item small {
    display: block;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: #082032;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .destination-hero {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .detail-card {
        padding: 22px;
        border-radius: 18px;
    }

    .sidebar-card {
        padding: 22px;
        position: static;
    }
}

@media (max-width: 576px) {

    .destination-hero {
        height: 280px;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}
/* GALLERY */

.gallery-item {
    border-radius: 24px;
    overflow: hidden;

    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
.review-scroll-wrapper {
    max-height: 650px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

/* scrollbar */
.review-scroll-wrapper::-webkit-scrollbar {
    width: 8px;
}

.review-scroll-wrapper::-webkit-scrollbar-track {
    background: #e9f3f4;
    border-radius: 20px;
}

.review-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #00bcd4;
    border-radius: 20px;
}

.review-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #0097a7;
}
/* =====================================
   REVIEW SCROLL AREA
===================================== */
.review-scroll-wrapper {
    max-height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    height: 100%;
}

.review-scroll-wrapper::-webkit-scrollbar {
    width: 8px;
}

.review-scroll-wrapper::-webkit-scrollbar-track {
    background: #e9f3f4;
    border-radius: 20px;
}

.review-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #00bcd4;
    border-radius: 20px;
}

.review-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #0097a7;
}

@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-scroll-wrapper {
        max-height: 500px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
}
/* Halaman hero pengganti search */
.hero-actions {
    max-width: 900px;
}

.hero-action-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 24px;
    color: #fff;
    height: 100%;
    transition: 0.3s ease;
}

.hero-action-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.hero-action-card i {
    font-size: 28px;
    margin-bottom: 14px;
    color: #00d4ff;
}

.hero-action-card h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-action-card p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}