* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
}

/* ================================
   HEADER
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(0,0,0,0.06);

    backdrop-filter: blur(12px);

    transition: all .3s ease;
}


/* NAVBAR */

.navbar {
    max-width: 1250px;
    height: 78px;

    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================================
   LOGO
================================ */

.brand-logo {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    min-width: 190px;
}

.brand-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #0b8f75;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(11,143,117,.25);
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    font-size: 18px;
    color: #161616;
    letter-spacing: .5px;
}

.brand-text span {
    font-size: 9px;
    color: #0b8f75;

    letter-spacing: 2px;
    font-weight: 700;

    margin-top: 4px;
}


/* ================================
   MENU
================================ */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    position: relative;
    display: block;

    padding: 10px 12px;

    color: #444;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border-radius: 8px;

    transition: all .25s ease;
}

.nav-menu a.active {
    color: #0b8f75;
}

/* GARIS BAWAH MENU AKTIF */
.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 22px;
    height: 3px;

    transform: translateX(-50%);

    background: #0b8f75;

    border-radius: 10px;

    display: block;
}

/* ================================
   ACTION BUTTON
================================ */

.nav-action {
    min-width: 190px;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 8px;
}

.nav-whatsapp,
.nav-booking {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 40px;

    padding: 0 15px;

    border-radius: 25px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all .25s ease;
}


/* WHATSAPP */

.nav-whatsapp {
    color: #0b8f75;
    background: #edf8f5;
}

.nav-whatsapp span {
    margin-right: 5px;
}

.nav-whatsapp:hover {
    background: #dff3ed;
    transform: translateY(-2px);
}


/* BOOKING */

.nav-booking {
    color: white;
    background: #0b8f75;

    box-shadow: 0 5px 15px rgba(11,143,117,.2);
}

.nav-booking:hover {
    background: #08755f;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(11,143,117,.3);
}


/* ================================
   MOBILE BUTTON
================================ */

.mobile-menu-btn {
    display: none;

    border: none;
    background: transparent;

    font-size: 28px;

    cursor: pointer;

    color: #222;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 0;
    }

    .nav-menu a {
        padding: 9px 8px;
        font-size: 12px;
    }

    .brand {
        min-width: 170px;
    }

    .nav-action {
        min-width: 170px;
    }
}


@media (max-width: 900px) {

    .navbar {
        height: 70px;
    }

    .nav-menu {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 15px 20px;

        background: white;

        box-shadow: 0 10px 25px rgba(0,0,0,.1);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        padding: 13px 15px;
        font-size: 14px;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-action {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}


@media (max-width: 500px) {

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 8px;
    }

    .brand-icon {
        width: 39px;
        height: 39px;
    }

    .navbar {
        padding: 0 18px;
    }
}

.btn,
.btn-outline {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn {
    background: #0b8f75;
    color: white;
}

.btn:hover {
    background: #076b59;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 10px;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("image/air-terjun-sendang-gile.jpg.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 100px 25px 0;
    color: white;
}

.subtitle,
.section-title p,
.contact p {
    color: #0b8f75;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero .subtitle {
    color: white;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 85px);
    line-height: 1;
    margin: 20px 0;
}

.hero h1 span {
    color: #36d2b2;
}

.hero-content > p {
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 100px 25px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    margin-top: 10px;
}

.destination-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.card-content p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-content span {
    color: #0b8f75;
    font-weight: bold;
}

.package-section {
    max-width: 1200px;
    margin: auto;
    padding: 100px 25px;
    background: #fff;
}

.package-section .section-title span {
    display: block;
    color: #777;
    margin-top: 10px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.10);
    transition: .3s;
    border: 1px solid #eee;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.package-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-body {
    padding: 25px;
}

.duration {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: #e8f7f3;
    color: #0b8f75;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.package-body h3 {
    font-size: 22px;
    margin: 15px 0;
    min-height: 52px;
}

.package-body p {
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}

.package-body .highlight {
    color: #444;
    min-height: 50px;
    margin-bottom: 8px;
}

.package-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
}

.package-bottom small {
    display: block;
    color: #999;
    font-size: 11px;
}

.package-bottom strong {
    display: block;
    color: #0b8f75;
    font-size: 18px;
    margin-top: 5px;
}

.package-bottom button {
    border: none;
    background: #0b8f75;
    color: white;
    padding: 11px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
}

.package-bottom button:hover {
    background: #076b59;
}

@media (max-width: 900px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-section {
        padding: 70px 20px;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: .3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

.testimonial {
    background: #f5f8f7;
    padding: 100px 25px;
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    color: #0b8f75;
}

.contact {
    padding: 70px 10%;
    background: #0b8f75;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact p {
    color: white;
}

.contact h2 {
    margin-top: 10px;
    font-size: 35px;
}

.contact .btn {
    background: white;
    color: #0b8f75;
}

footer {
    background: #111;
    color: white;
    padding: 60px 10% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-content h2 {
    margin-bottom: 15px;
}

.footer-content h3 {
    margin-bottom: 15px;
}

.footer-content p {
    color: #aaa;
    margin: 8px 0;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
}

@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .navbar .btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .destination-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .popular {
        transform: none;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.about-label {
    color: #0b8f75;
    font-weight: bold;
}

.about-text h2 {
    font-size: 40px;
    margin: 15px 0 20px;
}

.about-text p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
    font-weight: bold;
}

.services {
    background: #f5f8f7;
    max-width: none;
    padding-left: 10%;
    padding-right: 10%;
}

.services-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.service-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: #777;
    line-height: 1.6;
}

.contact-section {
    background: #0b8f75;
    color: white;
    padding: 80px 10%;
}

.contact-container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-label {
    letter-spacing: 2px;
    font-weight: bold;
}

.contact-container h2 {
    font-size: 40px;
    margin: 15px 0;
}

.contact-description {
    max-width: 600px;
    line-height: 1.7;
}

.contact-info {
    min-width: 280px;
}

.contact-info p {
    margin: 15px 0;
}

.whatsapp-btn {
    background: white;
    color: #0b8f75;
    margin-top: 10px;
}

.map-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.testimonial-section {
    padding: 100px 10%;
    background: #f5f8f7;
}

.testimonial-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.stars {
    color: #f5b301;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    color: #0b8f75;
}

.testimonial-card span {
    color: #999;
    font-size: 14px;
}

.booking-section {
    max-width: 1000px;
}

.booking-container {
    max-width: 850px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 35px rgba(0,0,0,.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b8f75;
}

.booking-button {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 30px;
    background: #0b8f75;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.booking-button:hover {
    background: #076b59;
}

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-container {
        padding: 25px 20px;
    }

    .about-text h2,
    .contact-container h2 {
        font-size: 30px;
    }
}

.floating-wa {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

/* =========================
   BOOKING PAGE
========================= */

.booking-page {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background: #f7faf9;
}

.booking-page .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.booking-page .section-title p {
    color: #0b8f75;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.booking-page .section-title h1 {
    font-size: 40px;
    margin: 0 0 10px;
    color: #171717;
}

.booking-page .section-title span {
    color: #777;
    font-size: 15px;
}

.booking-container {
    max-width: 750px;
    margin: auto;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b8f75;
    box-shadow: 0 0 0 3px rgba(11,143,117,.08);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-submit {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 10px;
    background: #0b8f75;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.booking-submit:hover {
    background: #08755f;
    transform: translateY(-2px);
}

@media (max-width: 600px) {

    .booking-page {
        padding: 110px 15px 50px;
    }

    .booking-page .section-title h1 {
        font-size: 30px;
    }

    .booking-container {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* =================================
   PACKAGE MEDIA SLIDER
================================= */

.media-slider {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #111;
}

.media-slider .media {
    display: none;
    transition: opacity .4s ease;
}

.media-slider .media.active {
    display: block;
}


/* TOMBOL SLIDER */

.slider-prev,
.slider-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.5);
    color: white;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transition: .2s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0,0,0,.8);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}


/* DOT */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 12px;

    transform: translateX(-50%);

    display: flex;
    gap: 6px;

    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.5);

    cursor: pointer;

    transition: .2s;
}

.slider-dot.active {
    background: white;
    transform: scale(1.25);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .media-slider {
        height: 230px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;

        font-size: 24px;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .slider-dots {
        bottom: 9px;

        gap: 5px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-dot.active {
        width: 8px;
        height: 8px;
    }
}

.media-slider {
    touch-action: pan-y;
    user-select: none;
}