/* ==========================================
   GLOBAL
========================================== */
html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f8fafc;
    color: #374151;
}

.section-padding {
    padding: 55px 0;
}

/* ==========================================
   PREMIUM SECTION BOX
========================================== */
.ua-section-box {
    background: #fff;
    border-radius: 34px;
    padding: 34px;
    box-shadow:
        0 15px 50px rgba(15, 23, 42, .05);
    border: 1px solid rgba(15, 23, 42, .04);
    overflow: hidden;
}

@media(max-width:991px) {
    .ua-section-box {
        padding: 21px 15px;
        border-radius: 25px;
    }
}

.section-label {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #fff7e0;
    color: #f4b400;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
}

.section-text {
    color: #6b7280;
    line-height: 1.9;
    font-size: 1.05rem;
}

.image-large {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

/* ==========================================
   HERO
========================================== */
.hero-campuhan {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-campuhan .container {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-badge i {
    color: #f4b400;
    font-size: 1.2rem;
}

.hero-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 25px 0;
    margin-bottom: 20px;
}

.hero-content {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.hero-text {
    max-width: 650px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn {
    min-width: 180px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.hero-btn-primary {
    background: #f4b400;
    color: #111827;
}

.hero-btn-secondary {
    background: #fff;
    color: #111827;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .hero-campuhan {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: .8rem;
        padding: 10px 18px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .hero-content {
        background:
            rgba(0, 0, 0, .28);
        backdrop-filter:
            blur(10px);
        padding: 28px;
        border-radius: 24px;
        border:
            1px solid rgba(255, 255, 255, .08);
    }
}

.hero-stats {
    margin-top: 35px;
    margin-bottom: 21px;
    background: rgba(17, 24, 39, .55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 13px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hero-stat {
    text-align: center;
}

.hero-stat i {
    font-size: 1.8rem;
    color: #f4b400;
    margin-bottom: 10px;
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-size: 1.4rem;
}

.hero-stat span {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
}

/* ==========================================
   HERO BREADCRUMB
========================================== */

.hero-breadcrumb {
    margin-top: 30px;
}

.hero-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    justify-content: center;
}

.hero-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: #f4b400;
}

/* separator */

.hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .85);
    content: "/";
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #f4b400;
    font-weight: 700;
}

/* ==========================================
   HIGHLIGHTS
========================================== */
.highlight-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 32px;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow:
        0 12px 35px rgba(15, 23, 42, .05);
    transition: .35s;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(15, 23, 42, .1);
}

.highlight-box i {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #fff7e0;
    color: #f4b400;
    font-size: 2rem;
}

.highlight-box h4 {
    font-weight: 800;
    margin-bottom: 15px;
}

.highlight-box p {
    color: #6b7280;
    margin: 0;
}

/* ==========================================
   TIMELINE
========================================== */
.timeline {
    max-width: 900px;
    margin: auto;
}

.timeline-item {
    position: relative;
    padding: 35px 35px 35px 95px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, .05);
}

.timeline-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4b400;
    color: #111827;
    font-weight: 800;
}

.timeline-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.timeline-item p {
    margin: 0;
    color: #6b7280;
}

/* ==========================================
   GALLERY
========================================== */
.gallery-grid img {
    width: 100%;
    border-radius: 28px;
    transition: .4s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ==========================================
   FAQ
========================================== */
.accordion-item {
    border: none;
    border-radius: 24px !important;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, .05);
}

.accordion-button {
    padding: 24px 30px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #f4b400;
}

.accordion-body {
    padding: 0 30px 30px;
    line-height: 1.9;
}

/* ==========================================
   DESTINATION CTA PREMIUM
========================================== */
.cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 50px;
    border-radius: 40px;
    background:
        linear-gradient(135deg,
            #111827 0%,
            #1f2937 50%,
            #111827 100%);
    box-shadow:
        0 25px 70px rgba(15, 23, 42, .18);
}

/* GLOW EFFECT */
.cta-box::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    top: -120px;
    right: -100px;
    border-radius: 50%;
    background:
        rgba(244, 180, 0, .15);
    filter: blur(50px);
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -120px;
    left: -80px;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, .05);
    filter: blur(50px);
}

/* CONTENT */
.cta-box>* {
    position: relative;
    z-index: 2;
}

/* TITLE */
.cta-box h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

/* TEXT */
.cta-box p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.cta-btn-primary {
    background: #f4b400;
    color: #111827;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    background: #ffd54a;
    color: #111827;
}

.cta-btn-outline {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
}

.hero-btn-dark {
    background: rgba(17, 24, 39, .75);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
}

.hero-btn-dark:hover {
    background: #111827;
    color: #fff;
    transform: translateY(-3px);
}

.cta-btn-outline:hover {
    background: #fff;
    color: #111827;
}

/* MOBILE */
@media(max-width:991px) {
    .cta-box {
        padding: 60px 25px;
        border-radius: 28px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   MOBILE
========================================== */
@media(max-width:991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-text {
        font-size: 1rem;
    }

    #overview .row {
        padding: 21px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-box {
        padding: 70px 25px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   GLASS NAVBAR
========================================== */
.ua-navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1320px;
    padding: 14px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .10);
    transition: .35s ease;
    z-index: 1050;
}

.ua-navbar.scrolled {
    background: #e4e3e3;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.ua-navbar.scrolled .nav-link {
    color: #374151 !important;
}

.ua-navbar.scrolled .navbar-toggler i {
    color: #111827;
}

.ua-navbar.scrolled .ua-logo span {
    color: #111827;
}

.ua-navbar.scrolled .ua-logo strong {
    color: #f4b400;
}

/* LOGO */
.ua-logo {
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 800;
}

.ua-logo span {
    color: #fff;
}

.ua-logo strong {
    color: #f4b400;
}

/* MENU */
.ua-navbar .nav-link {
    color: #fff;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    transition: .3s;
}

.ua-navbar .nav-link:hover {
    color: #f4b400 !important;
}

.ua-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #f4b400;
    transition: .3s;
}

.ua-navbar .nav-link:hover::after {
    width: 100%;
}

/* BUTTON */
.btn-book-nav {
    background: #f4b400;
    color: #111827;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.btn-book-nav:hover {
    background: #ffd44d;
    transform: translateY(-2px);
}

/* MOBILE */
@media(max-width:991px) {
    .ua-navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 20px;
        border-radius: 20px;
        background: rgba(17, 24, 39, .96);
        backdrop-filter: blur(18px);
    }

    .ua-navbar .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        border-radius: 24px;
        background: #111827;
    }

    .ua-navbar .nav-link {
        padding: 12px 0;
    }

    .btn-book-nav {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

/* MOBILE NAVBAR */
@media (max-width:991px) {
    .navbar-toggler {
        border: none;
        box-shadow: none !important;
    }

    .navbar-toggler i {
        color: #ffffff !important;
        font-size: 1.5rem;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: rgba(17, 24, 39, .98);
        border-radius: 20px;
        padding: 15px;
        backdrop-filter: blur(20px);
    }

    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 12px 0;
    }

    .btn-book-nav {
        width: 100%;
        margin-top: 10px;
    }
}

.ua-card-header {
    margin-bottom: 50px
}

.ua-related-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff7e0;
    color: #f4b400;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.ua-section-title {
    margin-top: 18px;
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1
}

.ua-section-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.9
}

.ua-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.ua-related-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
    transition: all .35s ease;
    height: 100%
}

.ua-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .10)
}

.ua-related-image {
    position: relative;
    height: 260px;
    overflow: hidden
}

.ua-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease
}

.ua-related-card:hover .ua-related-image img {
    transform: scale(1.08)
}

.ua-related-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: .75rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .10)
}

.ua-related-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px
}

.ua-related-meta {
    margin-bottom: 15px;
    color: #f4b400;
    font-size: .9rem;
    font-weight: 700
}

.ua-related-meta i {
    margin-right: 4px
}

.ua-related-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    margin-bottom: 12px
}

.ua-related-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1
}

.ua-related-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 20px
}

.ua-related-footer small {
    display: block;
    color: #9ca3af;
    margin-bottom: 4px
}

.ua-related-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827
}

.ua-related-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #f4b400;
    color: #111827;
    font-size: .9rem;
    font-weight: 700;
    transition: .3s
}

.ua-related-card:hover .ua-related-btn {
    background: #ffd54d
}

@media(max-width:991px) {
    .ua-related-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .ua-section-title {
        font-size: 2.2rem
    }

    .ua-related-image {
        height: 220px
    }

    .ua-related-content {
        padding: 22px
    }

    .ua-related-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px
    }

    .ua-related-btn {
        width: 100%
    }
}