* {
    font-family: "Inter", sans-serif;
}

body {
    background: #f5f7fb;
    color: #1f2937;
}

a {
    text-decoration: none;
}
/* =========================================
HERO MOBILE APP MODE
========================================= */

@media (max-width: 991px) {
    .hero {
        padding-top: 120px !important;
        padding-bottom: 90px;

        border-radius: 0 0 38px 38px;

        background-position: center;
    }

    .hero::before {
        background: linear-gradient(
            to bottom,
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.78)
        );
    }

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* HERO TEXT */

    .hero-badge {
        margin-bottom: 18px;

        padding: 10px 16px;

        font-size: 12px;

        border-radius: 999px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.1;

        letter-spacing: -1.5px;

        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;

        color: rgba(255, 255, 255, 0.82);

        margin-bottom: 26px;

        padding: 0 6px;
    }

    /* FEATURE */

    .hero-features {
        justify-content: center;
        gap: 10px;

        margin-bottom: 20px;
    }

    .hero-feature-item {
        width: auto;

        padding: 12px 16px;

        border-radius: 16px;

        font-size: 12px;

        background: rgba(255, 255, 255, 0.1);

        backdrop-filter: blur(14px);

        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-feature-item i {
        font-size: 15px;
    }

    /* =========================================
    BOOKING CARD MOBILE
    ========================================= */

    .booking-card {
        margin-top: 35px;

        padding: 24px;

        border-radius: 28px;

        background: rgba(255, 255, 255, 0.96);

        backdrop-filter: blur(18px);

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);

        border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .booking-card::before {
        height: 5px;
    }

    .booking-header {
        text-align: center;
        margin-bottom: 22px;
    }

    .booking-header h3 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .booking-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* INPUT */

    .booking-input-group {
        margin-bottom: 14px;
    }

    .booking-input {
        height: 58px;

        border-radius: 16px;

        font-size: 14px;

        padding-left: 18px;
        padding-right: 52px;
    }

    .booking-input-group i {
        right: 18px;
        font-size: 17px;
    }

    /* BUTTON */

    .booking-btn {
        height: 58px;

        border-radius: 16px;

        font-size: 15px;
        font-weight: 700;

        margin-top: 10px;
    }

    .booking-note {
        font-size: 12px;
        line-height: 1.7;

        margin-top: 14px;
    }

    /* MOBILE APP STYLE */

    .booking-card,
    .hero-feature-item,
    .hero-badge {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }
}
/* =========================
TESTIMONI
========================= */

.testimonial-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eef2f7;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================
PARTNER
========================= */

.partner-box {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #eef2f7;
    transition: 0.3s;
    height: 140px;

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

.partner-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-logo {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.partner-box:hover .partner-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* =========================
GALLERY
========================= */

.gallery-card {
    overflow: hidden;
    border-radius: 28px;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.large-image {
    height: 420px;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}
/* NAVBAR */

/* =========================
   NAVBAR PROFESSIONAL STYLE
========================= */
.navbar {
    padding: 14px 0;
    background: #fff;
    border-bottom: 1.5px solid #f1f5f9;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
    transition:
        box-shadow 0.3s,
        border 0.3s;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.navbar-brand span {
    color: #0ea5a4;
    font-weight: 900;
}

.navbar-nav {
    gap: 2px;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    margin: 0 8px;
    padding: 8px 18px !important;
    border-radius: 10px;
    position: relative;
    transition:
        background 0.18s,
        color 0.18s,
        box-shadow 0.18s;
    z-index: 1;
}
.nav-link:hover,
.nav-link:focus {
    background: linear-gradient(90deg, #e0f2fe 0%, #f0f9ff 100%);
    color: #0ea5a4 !important;
    box-shadow: 0 2px 8px rgba(0, 165, 255, 0.07);
}
.nav-link.active,
.nav-link[aria-current="page"] {
    background: linear-gradient(90deg, #bae6fd 0%, #e0f2fe 100%);
    color: #0ea5a4 !important;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(0, 165, 255, 0.1);
}

/* Pesan Sekarang Button */
.btn-main {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);
    border: none;
    color: white;
    border-radius: 14px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(0, 165, 255, 0.1);
    letter-spacing: 0.5px;
    transition:
        background 0.2s,
        box-shadow 0.2s,
        transform 0.18s;
    position: relative;
    z-index: 2;
}
.btn-main:hover,
.btn-main:focus {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 165, 255, 0.18);
}

@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
    }
    .nav-link {
        margin: 0 2px;
        padding: 10px 12px !important;
        font-size: 15px;
    }
    .btn-main {
        padding: 12px 18px;
        font-size: 15px;
    }
}
/* =========================================
HERO
========================================= */

.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;

    background:
        linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.65)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop");

    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(14, 165, 233, 0.18),
        transparent 35%
    );

    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(12px);

    padding: 12px 18px;
    border-radius: 999px;

    color: white;
    font-weight: 600;
    font-size: 14px;

    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 900;
    color: white;

    margin-bottom: 24px;

    letter-spacing: -2px;
}

.hero-title span {
    color: #0ea5a4;
}

.hero-description {
    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.9;

    max-width: 580px;

    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    border-radius: 18px;

    padding: 14px 18px;

    color: white;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-item i {
    color: #0ea5a4;
    font-size: 18px;
}

/* =========================================
BOOKING CARD
========================================= */

.booking-card {
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);

    border-radius: 32px;

    padding: 38px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.4);

    position: relative;
}

.booking-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 6px;

    border-radius: 32px 32px 0 0;

    background: linear-gradient(135deg, #0ea5a4, #22c55e);
}

.booking-header {
    margin-bottom: 28px;
}

.booking-header h3 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;

    margin-bottom: 8px;
}

.booking-header p {
    margin: 0;
    color: #64748b;
}

/* INPUT */

.booking-input-group {
    position: relative;
    margin-bottom: 18px;
}

.booking-input-group i {
    position: absolute;
    top: 50%;
    right: 20px;

    transform: translateY(-50%);

    color: #64748b;
    font-size: 18px;
}

.booking-input {
    width: 100%;
    height: 64px;

    border: 1.5px solid #e2e8f0;
    border-radius: 18px;

    padding: 0 58px 0 20px;

    font-size: 15px;
    font-weight: 500;

    background: #fff;

    transition: 0.3s;
}

.booking-input:focus {
    outline: none;

    border-color: #0ea5a4;

    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

/* BUTTON */

.booking-btn {
    width: 100%;
    height: 64px;

    border: none;
    border-radius: 18px;

    background: linear-gradient(135deg, #16a34a, #15803d);

    color: white;
    font-size: 18px;
    font-weight: 700;

    margin-top: 8px;

    transition: 0.3s;
}

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

    box-shadow: 0 16px 35px rgba(22, 163, 74, 0.35);
}

.booking-note {
    margin-top: 16px;

    text-align: center;

    color: #64748b;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 991px) {
    .hero {
        padding: 140px 0 90px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        margin: auto auto 35px;
    }

    .hero-features {
        justify-content: center;
    }

    .booking-card {
        margin-top: 40px;
        padding: 28px;
    }

    .booking-header h3 {
        font-size: 28px;
    }
}

/* SECTION */
.section {
    padding: 90px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
}

.section-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: auto;
}

/* DESTINATION CARD */
.destination-card {
    border: none;
    overflow: hidden;
    border-radius: 28px;
    background: white;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.price-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: white;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #0ea5a4;
}

.destination-content {
    padding: 24px;
}

.destination-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.rating {
    color: #f59e0b;
    font-size: 14px;
}

/* FEATURES */
.feature-box {
    background: white;
    padding: 35px;
    border-radius: 28px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eef2f7;
}

.feature-box:hover {
    transform: translateY(-6px);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: #e0f2fe;
    color: #0ea5a4;
    border-radius: 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);
    border-radius: 35px;
    padding: 60px;
    color: white;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
}

.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
}

@media (max-width: 991px) {
    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-box {
        padding: 40px 25px;
        text-align: center;
    }
}
/* =========================================
MOBILE BOTTOM NAVBAR
========================================= */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e5e7eb;
    z-index: 9999;
    display: none;
    padding: 10px 0 8px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06);
}

.mobile-bottom-nav .nav-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav a {
    text-decoration: none;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    transition: 0.3s;
}

.mobile-bottom-nav a i {
    font-size: 22px;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: #0ea5a4;
}

.mobile-bottom-nav .center-button {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -36px;
    box-shadow:
        0 16px 36px rgba(0, 132, 255, 0.22),
        0 2px 8px rgba(0, 132, 255, 0.1);
    border: 3.5px solid #fff;
    z-index: 2;
    transition:
        box-shadow 0.18s,
        transform 0.18s,
        background 0.18s;
    font-weight: 800;
    font-size: 15px;
    gap: 2px;
    position: relative;
    animation: floatBtn 2.2s ease-in-out infinite alternate;
}
/* Center button icon and label */
.mobile-bottom-nav .center-button i {
    color: #fff !important;
    font-size: 28px;
    margin-bottom: 0px;
    display: block;
}
.mobile-bottom-nav .center-button span {
    display: block;
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    margin-top: 2px;
    line-height: 1.1;
}
@keyframes floatBtn {
    0% {
        transform: translateY(-2px) scale(1.08);
    }
    100% {
        transform: translateY(-12px) scale(1.13);
    }
}

.mobile-bottom-nav .nav-wrapper a {
    background: none;
    box-shadow: none;
    border-radius: 14px;
    padding: 4px 0 0 0;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    transition:
        color 0.18s,
        background 0.18s,
        font-weight 0.18s;
}
.mobile-bottom-nav .nav-wrapper a.active,
.mobile-bottom-nav .nav-wrapper a:active,
.mobile-bottom-nav .nav-wrapper a:focus {
    color: #0ea5a4;
    background: #e0f2fe;
    font-weight: 700;
}
.mobile-bottom-nav .nav-wrapper a i {
    font-size: 20px;
    margin-bottom: 1px;
    transition: color 0.18s;
}
.mobile-bottom-nav .nav-wrapper a.active i,
.mobile-bottom-nav .nav-wrapper a:active i {
    color: #0ea5a4;
}

/* =========================================
RESPONSIVE NAVBAR MODE
========================================= */

@media (max-width: 991px) {
    /* navbar atas disembunyikan */
    .navbar {
        display: none;
    }

    /* tampilkan navbar bawah */
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 90px;
    }
}
/* =========================================
MOBILE TOP HEADER
========================================= */

.mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);

    z-index: 9999;

    border-bottom: 1px solid #eef2f7;

    display: none;
    align-items: center;
}

.mobile-topbar .topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

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

    color: white;
    font-size: 20px;
}

.mobile-logo h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.mobile-logo small {
    display: block;
    color: #64748b;
    margin-top: -2px;
    font-size: 11px;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;

    background: #25d366;
    color: white;

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

    font-size: 22px;

    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);

    transition: 0.3s;
}
/* =========================================
MOBILE APP TOPBAR
========================================= */

.mobile-topbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 9999;

    padding: 14px 0;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(24px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);

    display: none;
}

/* WRAPPER */

.mobile-appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================
BRAND
========================================= */

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}

/* LOGO */

.mobile-brand-logo {
    width: 46px;
    height: 46px;

    border-radius: 16px;

    background: linear-gradient(135deg, #ffffff, #f8fbff);

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

    overflow: hidden;

    border: 1px solid rgba(0, 132, 255, 0.08);

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(0, 132, 255, 0.08);
}

.mobile-brand-logo img {
    width: 76%;
    height: 76%;

    object-fit: contain;
}

/* TEXT */

.mobile-brand-text {
    line-height: 1.05;
}

.mobile-brand-text h6 {
    margin: 0;

    font-size: 16px;

    font-weight: 800;

    color: #0f172a;

    letter-spacing: -0.3px;
}

.mobile-brand-text small {
    color: #0ea5a4;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}

/* =========================================
WHATSAPP BUTTON
========================================= */

.mobile-wa-btn {
    width: 50px;
    height: 50px;

    border-radius: 18px;

    background: linear-gradient(135deg, #25d366, #16a34a);

    color: white;

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

    text-decoration: none;

    font-size: 24px;

    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);

    transition: 0.3s ease;
}

/* HOVER */

.mobile-wa-btn:hover {
    transform: translateY(-3px) scale(1.03);

    color: white;

    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.32);
}

/* =========================================
SHOW ONLY MOBILE
========================================= */

@media (max-width: 991px) {
    .mobile-topbar {
        display: block;
    }

    .navbar {
        display: none;
    }

    body {
        padding-top: 88px;
    }
}
/* =========================================
MOBILE APP NAVBAR PREMIUM
========================================= */

.mobile-bottom-nav {
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 30px;

    padding: 10px 14px;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.1),
        0 8px 20px rgba(15, 23, 42, 0.05);

    display: none;
}

.mobile-bottom-nav .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ITEM */

.mobile-bottom-nav a {
    flex: 1;

    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    height: 58px;

    border-radius: 18px;

    color: #64748b;

    font-size: 11px;
    font-weight: 700;

    transition: 0.28s ease;

    position: relative;
}

/* ICON */

.mobile-bottom-nav a i {
    font-size: 20px;
    transition: 0.28s;
}

/* HOVER */

.mobile-bottom-nav a:hover {
    background: rgba(14, 165, 233, 0.08);

    color: #0ea5a4;

    transform: translateY(-2px);
}

.mobile-bottom-nav a:hover i {
    transform: scale(1.08);
}

/* ACTIVE */

.mobile-bottom-nav a.active {
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.14),
        rgba(59, 130, 246, 0.12)
    );

    color: #0ea5a4;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mobile-bottom-nav a.active::before {
    content: "";

    position: absolute;

    top: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #0ea5a4;
}

/* =========================================
CENTER BUTTON
========================================= */

.mobile-bottom-nav .center-button {
    width: 72px;
    height: 72px;

    min-width: 72px;

    border-radius: 24px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

    color: white !important;

    margin-top: -38px;

    box-shadow:
        0 20px 40px rgba(0, 132, 255, 0.28),
        0 8px 20px rgba(0, 132, 255, 0.18);

    border: 4px solid rgba(255, 255, 255, 0.95);

    position: relative;

    z-index: 2;

    animation: floatingButton 2.6s ease-in-out infinite;
}

/* ICON CENTER */

.mobile-bottom-nav .center-button i {
    font-size: 28px;
    color: white;
}

/* GLOW */

.mobile-bottom-nav .center-button::before {
    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 28px;

    background: radial-gradient(rgba(14, 165, 233, 0.28), transparent 70%);

    z-index: -1;
}

/* HOVER CENTER */

.mobile-bottom-nav .center-button:hover {
    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 28px 50px rgba(0, 132, 255, 0.34),
        0 12px 30px rgba(0, 132, 255, 0.2);
}

/* FLOATING EFFECT */

@keyframes floatingButton {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}
.mobile-bottom-nav .center-button {
    display: flex !important;
} /* =========================================
MOBILE MODE
========================================= */

@media (max-width: 991px) {
    /* DESKTOP NAVBAR HIDE */
    .navbar {
        display: none !important;
    }

    /* TOPBAR SHOW */
    .mobile-topbar {
        display: block;
    }

    /* BOTTOM NAV SHOW */
    .mobile-bottom-nav {
        display: block !important;
    }

    body {
        padding-top: 88px;
        padding-bottom: 110px;
    }
}
/* =========================================
SHOW ONLY MOBILE
========================================= */

@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 110px;
    }
}
.whatsapp-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.mobile-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;

    background: #f1f5f9;
    color: #0f172a;

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

    font-size: 22px;
}

/* =========================================
SHOW ONLY MOBILE
========================================= */

@media (max-width: 991px) {
    .mobile-topbar {
        display: flex;
    }

    .hero {
        padding-top: 130px !important;
    }
}
/* =========================================
TRAVELOKA STYLE BRANDING
========================================= */
/* =========================================
TRAVELOKA STYLE BRANDING
========================================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* DESKTOP LOGO */

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;

    background: linear-gradient(135deg, #ffffff, #f8fbff);

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

    overflow: hidden;

    border: 1px solid rgba(0, 132, 255, 0.1);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(0, 132, 255, 0.08);

    flex-shrink: 0;
}

.brand-logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;

    filter: brightness(1.15) contrast(1.05) saturate(1.1);
}

/* TEXT */

.brand-text {
    line-height: 1.05;
}

.brand-text h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
}

.brand-text small {
    color: #0ea5a4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
MOBILE TOPBAR LOGO
========================================= */

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;

    background: linear-gradient(135deg, #ffffff, #f8fbff);

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

    overflow: hidden;

    border: 1px solid rgba(0, 132, 255, 0.1);

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.05),
        0 2px 6px rgba(0, 132, 255, 0.08);

    flex-shrink: 0;
}

.mobile-logo-icon img {
    width: 76%;
    height: 76%;
    object-fit: contain;

    filter: brightness(1.15) contrast(1.05) saturate(1.1);
}

.mobile-logo-text {
    line-height: 1.05;
}

.mobile-logo-text h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.mobile-logo-text small {
    color: #0ea5a4;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.brand-accent {
    color: #0ea5a4;
}
/* =========================================
FIX MOBILE APPS NAVBAR BUTTON
TAMBAHKAN PALING BAWAH CSS
========================================= */

@media (max-width: 991px) {
    /* NAVBAR APPS MUNCUL */
    .mobile-bottom-nav {
        display: block !important;

        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;

        z-index: 99999;

        padding: 10px 14px;

        border-radius: 30px;

        background: rgba(255, 255, 255, 0.92);

        backdrop-filter: blur(24px);

        border: 1px solid rgba(255, 255, 255, 0.5);

        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    }

    /* WRAPPER */
    .mobile-bottom-nav .nav-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    /* ITEM */
    .mobile-bottom-nav .nav-wrapper a {
        flex: 1;

        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        height: 58px;

        border-radius: 18px;

        color: #64748b !important;

        font-size: 11px;
        font-weight: 700;

        gap: 4px;

        position: relative;

        transition: 0.3s;
    }

    /* ICON */
    .mobile-bottom-nav .nav-wrapper a i {
        display: block !important;
        font-size: 20px;
    }

    /* TEXT */
    .mobile-bottom-nav .nav-wrapper a span {
        display: block !important;
        line-height: 1;
    }

    /* ACTIVE */
    .mobile-bottom-nav .nav-wrapper a.active {
        background: #eff8ff;
        color: #0ea5a4 !important;
    }

    /* HOVER */
    .mobile-bottom-nav .nav-wrapper a:hover {
        background: #eff8ff;
        color: #0ea5a4 !important;
    }

    /* =====================================
    CENTER BUTTON
    ===================================== */

    .mobile-bottom-nav .center-button {
        width: 72px !important;
        height: 72px !important;

        min-width: 72px;

        margin-top: -38px;

        border-radius: 24px;

        background: linear-gradient(135deg, #0ea5a4, #0ea5a4) !important;

        color: white !important;

        border: 4px solid #fff;

        box-shadow: 0 20px 40px rgba(0, 132, 255, 0.28);

        z-index: 10;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 2px;

        animation: floatingButton 2.5s ease-in-out infinite;
    }

    /* CENTER ICON */
    .mobile-bottom-nav .center-button i {
        font-size: 28px !important;
        color: white !important;

        display: block !important;
    }

    /* CENTER TEXT */
    .mobile-bottom-nav .center-button span {
        display: block !important;

        color: white !important;

        font-size: 12px;
        font-weight: 800;
    }

    /* FLOAT */
    @keyframes floatingButton {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-5px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    body {
        padding-bottom: 110px;
    }
}
/* =========================================
FIX MOBILE APPS NAVBAR
TIDAK MERUBAH DESAIN UTAMA
========================================= */

@media (max-width: 991px) {
    /* DESKTOP NAVBAR */
    .navbar {
        display: none !important;
    }

    /* =====================================
    MOBILE TOPBAR
    ===================================== */

    .mobile-topbar {
        display: block !important;

        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        z-index: 9999;

        padding: 14px 0;

        background: rgba(255, 255, 255, 0.78);

        backdrop-filter: blur(24px);

        border-bottom: 1px solid rgba(255, 255, 255, 0.45);

        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    }

    .mobile-appbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* BRAND */

    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 12px;

        text-decoration: none;
    }

    .mobile-brand-logo {
        width: 46px;
        height: 46px;

        border-radius: 16px;

        background: linear-gradient(135deg, #ffffff, #f8fbff);

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

        overflow: hidden;

        border: 1px solid rgba(0, 132, 255, 0.08);

        box-shadow:
            0 8px 20px rgba(15, 23, 42, 0.06),
            0 2px 8px rgba(0, 132, 255, 0.08);
    }

    .mobile-brand-logo img {
        width: 76%;
        height: 76%;
        object-fit: contain;
    }

    .mobile-brand-text {
        line-height: 1.05;
    }

    .mobile-brand-text h6 {
        margin: 0;

        font-size: 16px;

        font-weight: 800;

        color: #0f172a;
    }

    .mobile-brand-text small {
        color: #0ea5a4;

        font-size: 9px;

        font-weight: 700;

        letter-spacing: 1px;
    }

    .brand-accent {
        color: #0ea5a4;
    }

    /* WA BUTTON */

    .mobile-wa-btn {
        width: 50px;
        height: 50px;

        border-radius: 18px;

        background: linear-gradient(135deg, #25d366, #16a34a);

        color: white;

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

        text-decoration: none;

        font-size: 24px;

        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);

        transition: 0.3s ease;
    }

    .mobile-wa-btn:hover {
        transform: translateY(-3px) scale(1.03);

        color: white;
    }

    /* =====================================
    MOBILE APPS NAVBAR
    ===================================== */

    .mobile-bottom-nav {
        display: block !important;

        position: fixed;

        left: 14px;
        right: 14px;
        bottom: 14px;

        z-index: 99999;

        background: rgba(255, 255, 255, 0.92);

        backdrop-filter: blur(24px);

        border: 1px solid rgba(255, 255, 255, 0.45);

        border-radius: 30px;

        padding: 10px 14px;

        box-shadow:
            0 20px 45px rgba(15, 23, 42, 0.1),
            0 8px 20px rgba(15, 23, 42, 0.05);
    }

    /* WRAPPER */

    .mobile-bottom-nav .nav-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;

        gap: 8px;
    }

    /* ITEM */

    .mobile-bottom-nav .nav-wrapper a {
        flex: 1;

        text-decoration: none;

        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 4px;

        height: 58px;

        border-radius: 18px;

        color: #64748b;

        font-size: 11px;
        font-weight: 700;

        transition: 0.28s ease;

        position: relative;
    }

    /* ICON */

    .mobile-bottom-nav .nav-wrapper a i {
        display: block !important;

        font-size: 20px;

        transition: 0.28s;
    }

    /* TEXT */

    .mobile-bottom-nav .nav-wrapper a span {
        display: block !important;
        line-height: 1;
    }

    /* HOVER */

    .mobile-bottom-nav .nav-wrapper a:hover {
        background: rgba(14, 165, 233, 0.08);

        color: #0ea5a4;

        transform: translateY(-2px);
    }

    .mobile-bottom-nav .nav-wrapper a:hover i {
        transform: scale(1.08);
    }

    /* ACTIVE */

    .mobile-bottom-nav .nav-wrapper a.active {
        background: linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.14),
            rgba(59, 130, 246, 0.12)
        );

        color: #0ea5a4;

        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .mobile-bottom-nav .nav-wrapper a.active::before {
        content: "";

        position: absolute;

        top: 8px;

        width: 5px;
        height: 5px;

        border-radius: 50%;

        background: #0ea5a4;
    }

    /* =====================================
    CENTER BUTTON
    ===================================== */

    .mobile-bottom-nav .center-button {
        width: 72px !important;
        height: 72px !important;

        min-width: 72px;

        border-radius: 24px;

        background: linear-gradient(135deg, #0ea5a4, #0ea5a4) !important;

        color: white !important;

        margin-top: -38px;

        border: 4px solid rgba(255, 255, 255, 0.95);

        position: relative;

        z-index: 2;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 2px;

        box-shadow:
            0 20px 40px rgba(0, 132, 255, 0.28),
            0 8px 20px rgba(0, 132, 255, 0.18);

        animation: floatingButton 2.6s ease-in-out infinite;
    }

    .mobile-bottom-nav .center-button i {
        font-size: 28px !important;
        color: white !important;
    }

    .mobile-bottom-nav .center-button span {
        color: white !important;

        font-size: 12px;
        font-weight: 800;
    }

    .mobile-bottom-nav .center-button::before {
        content: "";

        position: absolute;

        inset: -10px;

        border-radius: 28px;

        background: radial-gradient(rgba(14, 165, 233, 0.28), transparent 70%);

        z-index: -1;
    }

    .mobile-bottom-nav .center-button:hover {
        transform: translateY(-4px) scale(1.05);

        color: white !important;
    }

    /* FLOAT */

    @keyframes floatingButton {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-5px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* BODY SPACE */

    body {
        padding-top: 88px;
        padding-bottom: 110px;
    }

    /* HERO */

    .hero {
        padding-top: 130px !important;
    }
}
/* =========================================
PREMIUM NAVBAR BOOKING BUTTON
========================================= */

.nav-booking-btn {
    position: relative;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 12px 16px 12px 20px;

    border-radius: 20px;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid rgba(15, 23, 42, 0.08);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

    transition: 0.3s ease;

    overflow: hidden;
}

/* LEFT ACCENT */

.nav-booking-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 4px;

    background: linear-gradient(180deg, #0ea5a4, #0ea5a4);
}

/* CONTENT */

.nav-booking-content {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.nav-booking-content small {
    font-size: 11px;

    font-weight: 700;

    color: #64748b;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 4px;
}

.nav-booking-content span {
    font-size: 15px;

    font-weight: 800;

    color: #0f172a;

    letter-spacing: -0.2px;
}

/* ARROW */

.nav-booking-arrow {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

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

    flex-shrink: 0;

    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.18);

    transition: 0.3s;
}

.nav-booking-arrow i {
    color: white;

    font-size: 18px;
}

/* HOVER */

.nav-booking-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);

    border-color: rgba(0, 132, 255, 0.18);
}

.nav-booking-btn:hover .nav-booking-arrow {
    transform: rotate(45deg) scale(1.05);
}

/* MOBILE */

@media (max-width: 991px) {
    .nav-booking-btn {
        width: 100%;

        justify-content: space-between;
    }
}
/* =========================================
PREMIUM ELEGANT FOOTER
========================================= */

.footer-premium {
    background: linear-gradient(180deg, #0f172a, #020617);

    color: rgba(255, 255, 255, 0.75);

    position: relative;

    overflow: hidden;
}

/* TOP */

.footer-top {
    padding: 90px 0 50px;

    position: relative;
}

/* LIGHT EFFECT */

.footer-premium::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: radial-gradient(rgba(14, 165, 233, 0.18), transparent 70%);
}

/* BRAND */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 24px;
}

.footer-brand-logo {
    width: 64px;
    height: 64px;

    border-radius: 22px;

    background: linear-gradient(135deg, #ffffff, #f8fbff);

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

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.footer-brand-logo img {
    width: 78%;
    height: 78%;

    object-fit: contain;
}

.footer-brand h4 {
    margin: 0;

    font-size: 28px;

    font-weight: 800;

    color: white;
}

.footer-brand small {
    color: #0ea5a4;

    letter-spacing: 1px;

    font-size: 10px;

    font-weight: 700;
}

/* DESCRIPTION */

.footer-description {
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.65);

    max-width: 420px;

    margin-bottom: 30px;
}

/* SOCIAL */

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 48px;
    height: 48px;

    border-radius: 18px;

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

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 20px;

    transition: 0.3s;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

    transform: translateY(-4px);
}

/* TITLE */

.footer-title {
    color: white;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 24px;
}

/* LINKS */

.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #0ea5a4;

    padding-left: 4px;
}

/* CONTACT */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
}

.footer-contact-icon {
    width: 46px;
    height: 46px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.06);

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

    color: #0ea5a4;

    flex-shrink: 0;
}

.footer-contact-item small {
    display: block;

    color: rgba(255, 255, 255, 0.45);

    margin-bottom: 4px;
}

.footer-contact-item span {
    color: white;

    font-weight: 600;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 24px 0;
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);

    text-decoration: none;

    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #0ea5a4;
}

/* MOBILE */

@media (max-width: 991px) {
    .footer-top {
        padding: 70px 0 40px;
    }

    .footer-brand h4 {
        font-size: 24px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;

        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;

        flex-wrap: wrap;
    }
}
/* =========================================
PREMIUM SERVICES SECTION
========================================= */

.services-premium-section {
    position: relative;

    padding: 110px 0;

    background: linear-gradient(180deg, #ffffff, #f8fbff);

    overflow: hidden;
}

/* BACKGROUND GLOW */

.services-premium-section::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: radial-gradient(rgba(14, 165, 233, 0.12), transparent 70%);
}

/* HEADER */

.services-header {
    margin-bottom: 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(14, 165, 233, 0.08);

    border: 1px solid rgba(14, 165, 233, 0.12);

    color: #0ea5a4;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 24px;
}

.services-title {
    font-size: 52px;

    font-weight: 900;

    color: #0f172a;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.services-title span {
    color: #0ea5a4;
}

.services-subtitle {
    max-width: 760px;

    margin: auto;

    color: #64748b;

    line-height: 1.9;

    font-size: 17px;
}

/* CARD */

.service-card-premium {
    position: relative;

    background: white;

    border-radius: 32px;

    padding: 40px 34px;

    overflow: hidden;

    height: 100%;

    border: 1px solid rgba(15, 23, 42, 0.05);

    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);

    transition: 0.4s ease;
}

/* TOP GLOW */

.service-glow {
    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: radial-gradient(rgba(14, 165, 233, 0.14), transparent 70%);
}

/* HOVER */

.service-card-premium:hover {
    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

/* ICON */

.service-icon-box {
    width: 82px;
    height: 82px;

    border-radius: 28px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

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

    margin-bottom: 28px;

    box-shadow: 0 18px 35px rgba(0, 132, 255, 0.18);
}

.service-icon-box i {
    color: white;

    font-size: 34px;
}

/* CONTENT */

.service-content small {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 800;

    color: #0ea5a4;

    letter-spacing: 1.2px;
}

.service-content h4 {
    font-size: 28px;

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 16px;
}

.service-content p {
    margin: 0;

    color: #64748b;

    line-height: 1.9;

    font-size: 15px;
}

/* MOBILE */

@media (max-width: 991px) {
    .services-premium-section {
        padding: 90px 0;
    }

    .services-title {
        font-size: 38px;
    }

    .services-subtitle {
        font-size: 15px;
    }

    .service-card-premium {
        padding: 32px 26px;
    }

    .service-content h4 {
        font-size: 24px;
    }
}
/* =========================================
DESTINATION PREMIUM SECTION
========================================= */

.destination-section {
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

/* BADGE */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 999px;

    background: #eff8ff;

    color: #0ea5a4;

    font-size: 13px;
    font-weight: 700;

    border: 1px solid #dbeafe;
}

.section-badge i {
    font-size: 15px;
}

/* CARD */

.premium-card {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background: #fff;

    border: 1px solid #eef2f7;

    transition: 0.4s ease;

    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}

.premium-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* IMAGE */

.destination-image-wrapper {
    position: relative;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 300px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.premium-card:hover .destination-image {
    transform: scale(1.08);
}

/* OVERLAY */

.destination-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.55),
        transparent 60%
    );
}

/* PRICE */

.price-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    padding: 12px 16px;

    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);

    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.price-badge small {
    color: #64748b;
    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.price-badge strong {
    color: #0ea5a4;

    font-size: 18px;
    font-weight: 800;
}

/* FAVORITE */

.wishlist-btn {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 46px;
    height: 46px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

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

    color: #ef4444;

    font-size: 18px;

    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

/* CONTENT */

.destination-content {
    padding: 28px;
}

/* TOP */

.destination-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

/* RATING */

.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #fef3c7;

    color: #d97706;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
}

.rating-box i {
    font-size: 12px;
}

/* TOUR TYPE */

.tour-type {
    background: #eff6ff;

    color: #2563eb;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

/* TITLE */

.destination-title {
    font-size: 24px;
    font-weight: 800;

    color: #0f172a;

    margin-bottom: 14px;

    letter-spacing: -0.5px;
}

/* DESCRIPTION */

.destination-description {
    color: #64748b;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 24px;
}

/* FOOTER */

.destination-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

/* TOUR INFO */

.tour-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #64748b;

    font-size: 13px;
    font-weight: 600;
}

.tour-info i {
    color: #0ea5a4;
}

/* BUTTON */

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    padding: 14px 18px;

    border-radius: 16px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

    color: white;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;

    box-shadow: 0 10px 24px rgba(0, 132, 255, 0.18);
}

.explore-btn:hover {
    transform: translateY(-2px);

    color: white;

    box-shadow: 0 18px 34px rgba(0, 132, 255, 0.25);
}

/* MOBILE */

@media (max-width: 991px) {
    .destination-image {
        height: 240px;
    }

    .destination-content {
        padding: 24px;
    }

    .destination-title {
        font-size: 21px;
    }

    .destination-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .explore-btn {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
PREMIUM HERO SECTION
========================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 190px 0 130px;

    background:
        linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.78)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop");

    background-size: cover;
    background-position: center;
}

/* BLUR EFFECT */

.hero-blur {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: 0.25;

    pointer-events: none;
}

.hero-blur-1 {
    width: 320px;
    height: 320px;

    background: #0ea5a4;

    top: -80px;
    right: -80px;
}

.hero-blur-2 {
    width: 280px;
    height: 280px;

    background: #22c55e;

    bottom: -100px;
    left: -80px;
}

/* BADGE */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(18px);

    color: white;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 28px;
}

.hero-badge i {
    color: #0ea5a4;
}

/* TITLE */

.hero-title {
    font-size: 74px;
    line-height: 1.02;

    font-weight: 900;

    color: white;

    letter-spacing: -2.5px;

    margin-bottom: 26px;

    max-width: 650px;
}

.hero-title span {
    color: #0ea5a4;
}

/* DESCRIPTION */

.hero-description {
    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;

    line-height: 1.9;

    max-width: 560px;

    margin-bottom: 38px;
}

/* FEATURES */

.hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 38px;
}

.hero-feature-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(14px);

    min-width: 210px;
}

.feature-icon-box {
    width: 52px;
    height: 52px;

    border-radius: 18px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

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

    color: white;

    font-size: 20px;

    flex-shrink: 0;
}

.hero-feature-item strong {
    display: block;

    color: white;

    font-size: 15px;
    font-weight: 700;
}

.hero-feature-item small {
    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 42px;
}

.hero-btn-primary,
.hero-btn-secondary {
    text-decoration: none;

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

    gap: 10px;

    height: 60px;

    padding: 0 28px;

    border-radius: 18px;

    font-size: 15px;
    font-weight: 700;

    transition: 0.3s ease;
}

/* PRIMARY */

.hero-btn-primary {
    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

    color: white;

    box-shadow: 0 16px 35px rgba(0, 132, 255, 0.25);
}

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

    color: white;
}

/* SECONDARY */

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;

    backdrop-filter: blur(14px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);

    color: white;
}

/* STATS */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 24px;
}

.hero-stat-box {
    min-width: 120px;
}

.hero-stat-box h4 {
    color: white;

    font-size: 34px;
    font-weight: 900;

    margin-bottom: 4px;
}

.hero-stat-box span {
    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
}

/* =========================================
BOOKING CARD
========================================= */

.booking-card {
    position: relative;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(24px);

    border-radius: 34px;

    padding: 34px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* TOP */

.booking-top {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}

.booking-icon {
    width: 68px;
    height: 68px;

    border-radius: 22px;

    background: linear-gradient(135deg, #0ea5a4, #0ea5a4);

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

    color: white;

    font-size: 28px;

    flex-shrink: 0;
}

.booking-top h3 {
    font-size: 30px;
    font-weight: 800;

    color: #0f172a;

    margin-bottom: 6px;
}

.booking-top p {
    margin: 0;

    color: #64748b;

    line-height: 1.7;
}

/* GRID */

.booking-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

/* INPUT */

.booking-input-group {
    margin-bottom: 18px;
}

.booking-input-group label {
    display: block;

    margin-bottom: 10px;

    color: #0f172a;

    font-size: 14px;
    font-weight: 700;
}

.booking-input-wrap {
    position: relative;
}

.booking-input-wrap i {
    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: #64748b;

    font-size: 16px;
}

.booking-input {
    width: 100%;
    height: 60px;

    border-radius: 18px;

    border: 1.5px solid #e2e8f0;

    padding: 0 18px 0 52px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.booking-input:focus {
    outline: none;

    border-color: #0ea5a4;

    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* BUTTON */

.booking-btn {
    width: 100%;
    height: 62px;

    border: none;

    border-radius: 20px;

    background: linear-gradient(135deg, #16a34a, #15803d);

    color: white;

    font-size: 16px;
    font-weight: 800;

    margin-top: 8px;

    transition: 0.3s ease;

    box-shadow: 0 16px 35px rgba(22, 163, 74, 0.22);
}

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

    box-shadow: 0 24px 45px rgba(22, 163, 74, 0.3);
}

/* NOTE */

.booking-note {
    margin-top: 18px;

    text-align: center;

    color: #64748b;

    font-size: 13px;

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

    gap: 8px;
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 991px) {
    .hero {
        padding: 140px 0 90px;

        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        margin: auto auto 34px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;

        flex-wrap: wrap;
    }

    .booking-card {
        margin-top: 20px;

        padding: 26px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-top {
        align-items: flex-start;
    }
}

/* //details page */
