/* ==========================================================
   DAFTAR ISI
   ==========================================================
   1.  RESET & GLOBAL
   2.  VARIABEL WARNA
   3.  NAVBAR
   4.  HERO (BERANDA & TENTANG)
   5.  TENTANG
   6.  DESTINASI / KARTU WISATA
   7.  ATRAKSI
   8.  KONTAK
   9.  FOOTER
   10. FORM TAMBAH / EDIT DESTINASI
   11. PAGINATION MODERN
   12. SEARCH BAR MODERN
   13. HALAMAN CRUD (ADMIN/USER)
   14. WAVE DIVIDER
   15. HALAMAN KULINER
   16. RESTYLE "EVASION NATURE" (kartu pita, paket wisata, footer bottom)
   ========================================================== */


/* ==========================================================
   1. RESET & GLOBAL
   ========================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* Font utama seluruh halaman */
body, .navbar, .card, footer, h1, h2, h3, h4, h5, h6, p, a, span, li {
    font-family: 'Poppins', sans-serif;
}


/* ==========================================================
   2. VARIABEL WARNA
   ========================================================== */
:root {
    --hijau-tua: #0f6e66;
    --hijau-daun: #2f7a5c;
    --hijau-toska: #17a398;
    --hijau-toska-gelap: #0f6e66;
    --hijau-gelap: #084640;
    --emas-melayu: #c9a227;
    --emas-terang: #e0b930;
    --emas: #e0b930;
    --coklat-tanah: #5c4433;
    --krem-hangat: #f4ede0;
    --putih: #ffffff;
    --abu-teks: #666666;
}


/* ==========================================================
   3. NAVBAR
   ========================================================== */
.navbar-wisata {
    background: linear-gradient(120deg, var(--hijau-tua) 0%, var(--hijau-toska) 60%, var(--emas-melayu) 100%);
    padding: 6px 0;
}

.navbar-wisata .navbar-brand {
    color: var(--putih);
    font-size: 17px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.navbar-wisata .nav-link {
    color: var(--putih);
    font-weight: 500;
    font-size: 14.5px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.navbar-wisata .nav-link:hover {
    color: #d7f5f0;
}

.navbar-wisata .nav-link.active {
    color: #ffffff;
    font-weight: 700;
    position: relative;
}

.navbar-wisata .nav-link.active::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -2px;
    height: 2px;
    background-color: #c9a227;
    border-radius: 2px;
}

.navbar-logo {
    height: 55px;
    width: auto;
    margin-right: 12px;
    vertical-align: middle;
}

/* Navbar overlay: khusus Beranda, navbar "mengambang" di atas hero
   (tidak mendorong konten ke bawah, langsung menumpuk di atas foto hero) */
.navbar-wisata.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Saat halaman discroll, navbar overlay kembali ke warna aslinya (hijau-emas) */
.navbar-wisata.navbar-overlay.navbar-scrolled {
    background: linear-gradient(120deg, var(--hijau-tua) 0%, var(--hijau-toska) 60%, var(--emas-melayu) 100%);
    border-bottom-color: transparent;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}


/* ==========================================================
   4. HERO (dipakai di Beranda & Tentang)
   ========================================================== */
.hero-modern {
    position: relative;
    background: url('/images/hero-rengat.png') center center / cover no-repeat;
    padding-top: 96px;
    width: 100%;
    aspect-ratio: 24 / 5;
    height: auto;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--hijau-tua);
    overflow: hidden;
}

.hero-modern-tentang {
    position: relative;
    background: url('/images/Sungai-indragiri.png') center center / cover no-repeat;
    padding: 0;
    width: 100%;
    aspect-ratio: 24 / 5;
    height: auto;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--hijau-tua);
    overflow: hidden;
}

.hero-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 41, 33, 0.6) 0%,
        rgba(15, 41, 33, 0.28) 22%,
        transparent 48%
    );
}

.hero-modern .container {
    position: relative;
    z-index: 2;
    padding: 26px 32px 34px;
    margin: 0 auto 30px auto;
    max-width: 640px;
    background: transparent;
}

@media (max-width: 768px) {
    .hero-modern {
        aspect-ratio: 16 / 9;
        min-height: 280px;
        padding-top: 84px;
        background-position: center center;
    }
    .hero-modern .container {
        margin-bottom: 20px;
        padding: 20px 22px 26px;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        aspect-ratio: 4 / 5;
        min-height: 320px;
        padding-top: 76px;
        background-position: center center;
    }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

/* Denyut kecil pada titik di hero-badge */
@keyframes softPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--hijau-tua);
    padding: 7px 20px 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    opacity: 0;
    animation: heroFadeInUp 0.7s ease-out 0.1s forwards;
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emas-melayu);
    animation: softPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    color: var(--putih);
    text-shadow: 0 3px 18px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.5);
    opacity: 0;
    animation: heroFadeInUp 0.8s ease-out 0.25s forwards;
}

.hero-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--emas-melayu), var(--emas-terang));
    opacity: 0;
    animation: heroFadeInUp 0.6s ease-out 0.5s forwards;
}

.hero-text {
    font-size: 18px;
    max-width: 600px;
    margin: 22px auto 34px auto;
    color: #f4ede0;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    opacity: 0;
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

@media (max-width: 576px) {
    .hero-modern .container .hero-title {
        font-size: 30px;
    }
    .hero-modern .container .hero-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--emas-melayu);
    color: var(--hijau-tua) !important;
    font-weight: 700;
    font-size: 15.5px;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease-out 0.6s forwards;
}

.btn-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.btn-hero:hover::before {
    transform: translateX(120%);
}

.btn-hero:hover,
.btn-hero:focus {
    background-color: var(--emas-terang);
    color: var(--hijau-tua) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.btn-hero:active {
    transform: translateY(-1px) scale(0.97);
}

/* ---------- HERO SLIDESHOW (Beranda) ---------- */
.hero-slideshow {
    background: none; /* gambar sekarang datang dari layer .hero-slide */
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.4s cubic-bezier(0.45, 0, 0.2, 1),
        transform 7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 1s ease;
        transform: none !important;
    }
}

.hero-slideshow .hero-modern-overlay {
    z-index: 1;
}

.hero-slideshow .container {
    z-index: 2;
}

/* Dots navigasi + progress fill */
.hero-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    position: relative;
    width: 34px;
    height: 4px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: background 0.3s ease, transform 0.25s ease;
}

.hero-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--emas-melayu);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-dot.active::after {
    animation: heroDotFill var(--hero-slide-duration, 6s) linear forwards;
}

@keyframes heroDotFill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .hero-slide-dots {
        bottom: 18px;
        gap: 8px;
    }
    .hero-dot {
        width: 24px;
    }
}


/* ==========================================================
   5. TENTANG
   ========================================================== */
.tentang-hero {
    background: linear-gradient(135deg, var(--hijau-tua) 0%, var(--hijau-daun) 45%, var(--hijau-toska) 100%);
    color: var(--putih);
    padding: 90px 20px;
    text-align: center;
}

.tentang-isi {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.tentang-isi::before,
.tentang-isi::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.tentang-isi::before {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(23, 163, 152, 0.16) 0%, transparent 70%);
}

.tentang-isi::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -70px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.16) 0%, transparent 70%);
}

.tentang-isi > * {
    position: relative;
    z-index: 1;
}

/* Aksen latar statis bertema Sungai Indragiri (dipakai lewat elemen
   .tentang-bg-wave -- pengganti animasi ombak lama, tanpa gerakan) */
.tentang-bg-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.tentang-isi > .tentang-bg-wave {
    position: absolute;
    z-index: 0;
}

.tentang-bg-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Latar animasi air Sungai Indragiri (dipakai lewat elemen .tentang-water-bg
   di dalam .tentang-isi -- kalau tidak ada elemen ini di HTML, aturan di
   bawah otomatis tidak berpengaruh) */
.tentang-water-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 230px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Rule .tentang-isi > * di atas memaksa semua anak jadi position:relative & z-index:1 —
   override khusus di sini supaya lapisan air tetap jadi latar belakang paling bawah */
.tentang-isi > .tentang-water-bg {
    position: absolute;
    z-index: 0;
}

.tentang-water-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 163, 152, 0) 0%, rgba(23, 163, 152, 0.08) 40%, rgba(15, 110, 102, 0.14) 100%);
}

.tentang-water-bg svg {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 200%;
    height: 100%;
    display: block;
}

.wave-layer-1 { animation: tentangWaveScroll 24s linear infinite; }
.wave-layer-2 { animation: tentangWaveScroll 17s linear infinite reverse; }
.wave-layer-3 { animation: tentangWaveScroll 11s linear infinite; }

@keyframes tentangWaveScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Kilau cahaya kecil mengambang di atas air, seperti pantulan sinar matahari */
.water-glint {
    position: absolute;
    bottom: 40px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    filter: blur(1px);
    opacity: 0;
    animation: waterGlintFloat 6s ease-in-out infinite;
}
.water-glint:nth-child(4) { left: 12%; animation-delay: 0s; }
.water-glint:nth-child(5) { left: 34%; animation-delay: 1.4s; bottom: 70px; }
.water-glint:nth-child(6) { left: 58%; animation-delay: 2.8s; }
.water-glint:nth-child(7) { left: 76%; animation-delay: 0.8s; bottom: 90px; }
.water-glint:nth-child(8) { left: 90%; animation-delay: 3.6s; }

@keyframes waterGlintFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
    50%      { opacity: 0.9; transform: translateY(-10px) scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
    .wave-layer-1,
    .wave-layer-2,
    .wave-layer-3,
    .water-glint {
        animation: none !important;
    }
}

.tentang-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.tentang-grid .tentang-teks {
    flex: 1 1 50%;
}

.tentang-grid .tentang-foto-wrap {
    flex: 1 1 50%;
    position: relative;
}

.tentang-grid .tentang-judul,
.tentang-grid .tentang-judul::after {
    margin-left: 0;
}

.tentang-grid .tentang-paragraf {
    margin-left: 0;
    max-width: none;
}

@media (max-width: 860px) {
    .tentang-grid {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .tentang-grid .tentang-judul,
    .tentang-grid .tentang-judul::after {
        margin-left: auto;
    }
    .tentang-grid .tentang-paragraf {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
}

@keyframes tentangFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

.tentang-foto {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 41, 33, 0.18);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    animation: tentangFadeInUp 0.8s ease-out 0.1s forwards;
}

.tentang-foto:hover {
    transform: scale(1.02);
    box-shadow: 0 22px 48px rgba(15, 41, 33, 0.25);
}

.tentang-judul {
    display: inline-block;
    color: var(--hijau-toska-gelap);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
    opacity: 0;
    animation: tentangFadeInUp 0.7s ease-out 0.05s forwards;
}

.tentang-judul::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--hijau-toska), var(--emas-melayu));
}

.tentang-paragraf {
    color: var(--abu-teks);
    font-size: 16.5px;
    max-width: 640px;
    margin: 22px auto 28px;
    opacity: 0;
    animation: tentangFadeInUp 0.7s ease-out 0.2s forwards;
}

.tentang-isi .btn,
.tentang-isi a[class*="btn"] {
    opacity: 0;
    animation: tentangFadeInUp 0.7s ease-out 0.35s forwards;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tentang-isi .btn:hover,
.tentang-isi a[class*="btn"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15, 41, 33, 0.2);
}

.tentang-highlight {
    background-color: var(--krem-hangat);
    padding: 60px 20px;
}

.highlight-card {
    background-color: var(--putih);
    border-radius: 14px;
    padding: 30px 22px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(15, 41, 33, 0.08);
    border-top: 3px solid var(--emas-melayu);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(15, 41, 33, 0.14);
}

.highlight-card h3 {
    color: var(--hijau-toska-gelap);
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
}

.highlight-card p {
    color: var(--abu-teks);
    font-size: 14.5px;
    margin-bottom: 0;
}


/* ==========================================================
   6. DESTINASI / KARTU WISATA
   ========================================================== */
.destinasi {
    background: linear-gradient(180deg, #eef6f3 0%, var(--krem-hangat) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.destinasi h2 {
    text-align: center;
    color: var(--hijau-toska-gelap);
    font-weight: 800;
    position: relative;
    margin-bottom: 44px;
}

.destinasi h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--hijau-toska), var(--emas-melayu));
}

.destinasi-hero {
    background: linear-gradient(135deg, var(--hijau-tua) 0%, var(--hijau-daun) 45%, var(--hijau-toska) 100%);
    color: var(--putih);
    padding: 90px 20px;
    text-align: center;
}

.destinasi-list {
    background: linear-gradient(180deg, #eef6f3 0%, var(--krem-hangat) 100%);
    padding: 80px 20px;
}

.kartu-wisata {
    background: linear-gradient(160deg, #ffffff 0%, var(--krem-hangat) 100%);
    border: 1px solid var(--emas-melayu);
    border-top: 4px solid var(--hijau-daun);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    animation: fadeInUp 0.6s ease both;
}

.kartu-wisata:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 20px 40px rgba(15, 41, 33, 0.22) !important;
    border-color: var(--emas-terang);
}

.kartu-wisata .card-img-top {
    height: 180px;
    object-fit: cover;
}

.kartu-wisata h3 {
    color: var(--hijau-toska-gelap);
    transition: color 0.3s ease;
}

.kartu-wisata:hover h3 {
    color: var(--hijau-tua);
}

.kartu-wisata strong {
    color: var(--emas-melayu);
}

.col-lg-4:nth-child(1) .kartu-wisata { animation-delay: 0.05s; }
.col-lg-4:nth-child(2) .kartu-wisata { animation-delay: 0.2s; }
.col-lg-4:nth-child(3) .kartu-wisata { animation-delay: 0.35s; }

/* PENTING: keyframe ini dipakai juga oleh .animate-page (lihat section 10).
   "to" HARUS transform: none (bukan translateY(0)) — kalau tidak, elemen yang
   memakainya (dengan animation-fill-mode forwards/both) akan terus punya
   transform aktif setelah animasi selesai, dan itu membuat elemen tersebut
   jadi containing block baru untuk descendant position:fixed (modal Bootstrap,
   backdrop-nya, dsb). Efeknya modal/backdrop salah posisi & terlihat hitam
   penuh serta tidak bisa ditutup. */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: none; }
}

.img-hover-wrap {
    overflow: hidden;
    display: block;
    position: relative;
}

.img-hover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 41, 33, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.img-hover-wrap:hover::after {
    opacity: 1;
}

.img-hover-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.img-hover-wrap:hover img {
    transform: scale(1.08);
    filter: brightness(0.92);
}

.badge {
    font-size: 0.8rem;
    padding: 0.45em 0.9em;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.badge.bg-success {
    animation: pulseBuka 2s infinite;
}

@keyframes pulseBuka {
    0%  { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(25, 135, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}

.kategori-badge {
    display: inline-block;
    background: linear-gradient(120deg, var(--hijau-toska-gelap), var(--hijau-toska));
    color: var(--putih);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(15, 110, 102, 0.3);
    transition: transform 0.25s ease;
}

.kartu-wisata:hover .kategori-badge {
    transform: scale(1.05);
}

.lokasi-text {
    font-size: 13px;
    color: var(--abu-teks);
    margin-bottom: 10px;
}

.jam-info {
    font-size: 12px;
    color: var(--abu-teks);
}

.status-buka {
    color: #1e8e5c;
}

.status-tutup {
    color: #c0392b;
}

.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d3b7a, #1a5fb4);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 10px rgba(13, 59, 122, 0.25);
}

.btn-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a5fb4, #ffb703);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-modern:hover::before {
    left: 0;
}

.btn-modern:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 59, 122, 0.35);
}

.btn-modern:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 4px 8px rgba(13, 59, 122, 0.3);
}

.btn-modern i {
    transition: transform 0.35s ease;
}

.btn-modern:hover i {
    transform: translateX(6px);
}

.btn-modern:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.35);
}


/* ==========================================================
   7. ATRAKSI
   ========================================================== */
.atraksi-hero {
    background: linear-gradient(135deg, var(--hijau-tua) 0%, var(--hijau-daun) 45%, var(--hijau-toska) 100%);
    color: var(--putih);
    padding: 90px 20px 70px;
}

.hero-title-alt {
    font-size: 40px;
    font-weight: 800;
    margin: 16px 0 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.hero-text-alt {
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    color: #eef7f3;
}

.atraksi-judul {
    color: var(--hijau-tua);
    font-weight: 700;
}

.kategori-badge-float {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.harga-badge-float {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    color: var(--hijau-toska-gelap);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.atraksi-kosong {
    background: var(--krem-hangat);
    border-radius: 16px;
    padding: 50px 20px;
    color: var(--abu-teks);
}

.atraksi-kosong p {
    margin-bottom: 16px;
    font-size: 15px;
}


/* ==========================================================
   8. KONTAK
   ========================================================== */
.kontak-hero {
    position: relative;
    background: url('/images/latar-kontak.png') center center / cover no-repeat;
    color: var(--putih);
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
}

.kontak-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 41, 33, 0.82) 0%,
        rgba(15, 41, 33, 0.65) 45%,
        rgba(15, 110, 102, 0.6) 100%
    );
    z-index: 0;
}

.kontak-hero .container {
    position: relative;
    z-index: 1;
}

.kontak-info {
    padding: 60px 20px;
}

.info-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.info-card {
    background: linear-gradient(160deg, #ffffff 0%, var(--krem-hangat) 100%);
    border-radius: 14px;
    padding: 30px 18px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-card-link:hover .info-card {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(15, 41, 33, 0.18);
    border-top-color: var(--emas-melayu);
}

.info-card-static {
    border-top: 3px solid var(--hijau-toska);
}

.info-icon-wrap {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hijau-toska-gelap), var(--hijau-toska));
    box-shadow: 0 6px 14px rgba(15, 110, 102, 0.3);
    transition: transform 0.3s ease;
}

.info-card-link:hover .info-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
}

.info-icon {
    font-size: 24px;
    filter: brightness(3);
}

.info-card h3 {
    font-size: 16px;
    color: var(--hijau-toska-gelap);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: var(--abu-teks);
    margin-bottom: 10px;
}

.info-card-cta {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--emas-melayu);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.info-card-link:hover .info-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.info-card-cta-static {
    opacity: 1;
    transform: none;
    color: var(--hijau-toska-gelap);
}

.kontak-utama {
    padding: 40px 20px 90px;
}

.kontak-judul {
    color: var(--hijau-toska-gelap);
    font-size: 22px;
    margin-bottom: 6px;
}

.kontak-subjudul,
.kontak-sub {
    color: var(--abu-teks);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.kontak-alert-sukses {
    background-color: #e9f7f0;
    border: 1px solid #b6e6cc;
    color: var(--hijau-toska-gelap);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.form-kontak-group .form-label {
    color: var(--hijau-tua);
    font-weight: 600;
    font-size: 14px;
}

.form-kontak .form-control {
    border-radius: 10px;
    border: 1.5px solid #e2e0d5;
    padding: 12px 14px;
}

.form-kontak .form-control:focus {
    border-color: var(--hijau-toska);
    box-shadow: 0 0 0 0.2rem rgba(23, 163, 152, 0.15);
}

.btn-kirim {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--emas-melayu);
    color: var(--hijau-tua);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 16px rgba(201, 162, 39, 0.3);
}

.btn-kirim-icon {
    transition: transform 0.3s ease;
}

.btn-kirim:hover {
    background-color: var(--emas-terang);
    color: var(--hijau-tua);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.4);
}

.btn-kirim:hover .btn-kirim-icon {
    transform: translateX(4px);
}

.peta-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 41, 33, 0.12);
}

.peta-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    color: var(--hijau-tua);
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.peta-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.sosial-link {
    background-color: var(--krem-hangat);
    color: var(--hijau-toska-gelap);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sosial-link:hover {
    background-color: var(--hijau-toska);
    color: var(--putih);
    transform: translateY(-3px);
}

.sosial-link-wa {
    background-color: #25d366;
    color: var(--putih);
}

.sosial-link-wa:hover {
    background-color: #1fb955;
    color: var(--putih);
}


/* ==========================================================
   9. FOOTER
   ========================================================== */
.site-footer {
    background: linear-gradient(160deg, var(--hijau-tua) 0%, #14332b 100%);
    color: #d9ece5;
    padding: 64px 24px 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hijau-toska), var(--emas-melayu), var(--hijau-toska));
}

.site-footer::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 163, 152, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(217, 236, 229, 0.15);
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
    color: var(--putih);
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--emas-melayu);
}

.footer-brand p {
    line-height: 1.7;
    font-size: 14px;
    color: #b9d4cb;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    transition: padding-left 0.2s ease;
    color: #cfe6df;
    position: relative;
}

.footer-col ul li a:hover {
    padding-left: 4px;
    color: var(--emas-terang);
    text-decoration: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .icon {
    font-size: 15px;
    filter: brightness(1.3);
}

/* Baris bawah footer: copyright | link legal | ikon sosial, dalam satu baris rapi */
.footer-bottom {
    background: #f4efe6;
    color: #6b6b6b;
    padding: 14px 24px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 24px;
    font-size: .82rem;
}

.footer-copy { white-space: nowrap; }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: #6b6b6b;
    text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--hijau-tua); }
.footer-dot { opacity: .5; }

.footer-bottom-social {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.footer-bottom-social a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--hijau-tua);
    color: #fff;
    transition: background .2s ease;
}
.footer-bottom-social a:hover { background: var(--hijau-gelap); }

@media (max-width: 576px) {
    .footer-bottom { justify-content: center; text-align: center; }
}

.footer-col {
    opacity: 0;
    animation: footerColFadeIn 0.6s ease-out forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.05s; }
.footer-col:nth-child(2) { animation-delay: 0.15s; }
.footer-col:nth-child(3) { animation-delay: 0.25s; }

@keyframes footerColFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}


/* ==========================================================
   10. FORM TAMBAH / EDIT DESTINASI
   ========================================================== */
.tambah-destinasi-page {
    background: radial-gradient(circle at top right, #eaf1fb 0%, #f7f9fc 45%, #ffffff 100%);
    padding-bottom: 2rem;
}

.breadcrumb-modern {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb-modern .breadcrumb-item a {
    color: #0d3b7a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-modern .breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-modern .breadcrumb-item.active {
    color: #8a94a6;
}

.form-eyebrow {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    background: rgba(13, 59, 122, 0.08);
    color: #0d3b7a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0d3b7a;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7688;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.card-modern {
    border: none;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(13, 59, 122, 0.1);
    overflow: hidden;
    position: relative;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 59, 122, 0.1);
}

.card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0d3b7a, #1a5bb8, #4d8fe0);
}

.field-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e6e9f0;
}

.field-section-last {
    border-bottom: none;
    padding-bottom: 0;
}

.field-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #4d8fe0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}

.form-modern .form-control {
    border: 1.5px solid #e2e6ee;
    border-radius: 12px;
    padding: 1rem 0.9rem;
    font-size: 0.97rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-modern .form-control:focus {
    border-color: #1a5bb8;
    box-shadow: 0 0 0 4px rgba(26, 91, 184, 0.12);
}

.form-modern .form-floating > label {
    color: #8a94a6;
}

.form-modern .form-text {
    font-size: 0.82rem;
    color: #8a94a6;
}

.form-modern .form-text code {
    background: #f1f4f9;
    padding: 1px 6px;
    border-radius: 6px;
    color: #0d3b7a;
}

.alert-modern-danger {
    background: #fdecec;
    border: none;
    border-left: 4px solid #d64545;
    border-radius: 12px;
    color: #a12a2a;
    padding: 1rem 1.2rem;
    margin-bottom: 1.75rem;
}

.alert-modern-danger i {
    font-size: 1.1rem;
    margin-top: 2px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.btn-submit-modern,
.btn-cancel-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-submit-modern {
    color: #fff;
    background: linear-gradient(135deg, #0d3b7a 0%, #1a5bb8 100%);
    box-shadow: 0 6px 16px rgba(13, 59, 122, 0.3);
}

.btn-submit-modern:hover,
.btn-submit-modern:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(13, 59, 122, 0.4);
    color: #fff;
}

.btn-cancel-modern {
    color: #5b6474;
    background: #f1f4f9;
}

.btn-cancel-modern:hover,
.btn-cancel-modern:focus-visible {
    background: #e6e9f0;
    color: #333c4d;
    transform: translateY(-2px);
}

@media (max-width: 575.98px) {
    .form-actions {
        flex-direction: column-reverse;
    }
    .btn-submit-modern,
    .btn-cancel-modern {
        width: 100%;
        justify-content: center;
    }
}

/* Animasi masuk halaman — memakai keyframe "fadeInUp" yang sama di section 6.
   Elemen ini membungkus SELURUH konten halaman detail destinasi (termasuk
   modal atraksi), jadi keyframe-nya wajib berakhir di transform: none. */
.animate-page {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Efek hover foto destinasi */
.img-container {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(13, 59, 122, 0.1);
}
.img-zoom {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-container:hover .img-zoom {
    transform: scale(1.06);
}

/* Breadcrumb glassmorphism */
.custom-breadcrumb {
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(13, 59, 122, 0.04);
    display: inline-block;
}

/* Badge fasilitas */
.facility-badge {
    background-color: #e4ebf8;
    color: #0d3b7a;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
}
.facility-badge:hover {
    background-color: #0d3b7a;
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(13, 59, 122, 0.15);
}
.facility-badge i {
    font-size: 1.25rem;
}

/* Tombol dengan efek sapuan (fill) */
.btn-animate {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
    border: none;
}
.btn-animate-primary {
    background: #0d3b7a;
    color: #ffffff;
}
.btn-animate-outline {
    background: transparent;
    color: #0d3b7a;
    border: 2px solid #0d3b7a !important;
}
.btn-animate-danger-outline {
    background: transparent;
    color: #d64545;
    border: 2px solid #d64545 !important;
}
.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
}
.btn-animate-primary::before {
    background: linear-gradient(45deg, #1e5bb0, #0d3b7a);
}
.btn-animate-outline::before {
    background: #0d3b7a;
}
.btn-animate-danger-outline::before {
    background: linear-gradient(45deg, #e35c5c, #c23a3a);
}
.btn-animate:hover {
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(13, 59, 122, 0.2);
    transform: translateY(-2px);
}
.btn-animate-danger-outline:hover {
    box-shadow: 0 8px 20px rgba(214, 69, 69, 0.25);
}
.btn-animate:hover::before {
    transform: scaleX(1);
}
.btn-animate i {
    transition: transform 0.3s ease;
    display: inline-block;
}
.btn-animate:hover i {
    transform: translateX(3px);
}
.btn-animate-danger-outline:hover i {
    transform: translateX(0) rotate(-8deg);
}
.btn-animate-danger-outline:active {
    transform: translateY(0) scale(0.98);
}

.form-hapus-destinasi {
    display: inline-block;
    margin: 0;
}


/* ==========================================================
   11. PAGINATION MODERN
   ========================================================== */
.pagination-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: flex;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    background: #ffffff;
    color: #0d3b7a;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #dbe4f3;
    cursor: pointer;
    transition: all 0.25s ease;
}

.page-item:not(.active):not(.disabled) .page-link:hover {
    background: #0d3b7a;
    color: #ffffff;
    border-color: #0d3b7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(13, 59, 122, 0.25);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #0d3b7a, #1a5bb8);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(13, 59, 122, 0.35);
    animation: popActive 0.3s ease;
}

@keyframes popActive {
    0%   { transform: scale(0.8); }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.page-item.disabled .page-link {
    color: #b7c2d6;
    background: #f3f6fb;
    cursor: not-allowed;
    border-color: #e7ecf5;
}

.page-arrow svg {
    transition: transform 0.25s ease;
}
.page-item:not(.disabled) .page-arrow:hover svg {
    transform: scale(1.15);
}
.page-item:not(.disabled):first-child .page-arrow:hover svg {
    transform: translateX(-3px) scale(1.1);
}
.page-item:not(.disabled):last-child .page-arrow:hover svg {
    transform: translateX(3px) scale(1.1);
}

.page-dots {
    background: transparent;
    border: none;
    cursor: default;
}

.pagination-info {
    font-size: 13.5px;
    color: #5a6b8c;
    margin: 0;
}

@media (max-width: 480px) {
    .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13.5px;
        padding: 0 8px;
    }
}


/* ==========================================================
   12. SEARCH BAR MODERN
   ========================================================== */
.search-modern-wrap {
    width: 100%;
}

.search-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    border: 2px solid #e2e8f5;
    padding: 6px;
    max-width: 720px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(13, 59, 122, 0.06);
}

.search-modern:focus-within {
    border-color: #0d3b7a;
    box-shadow: 0 0 0 4px rgba(13, 59, 122, 0.12), 0 6px 16px rgba(13, 59, 122, 0.15);
    transform: translateY(-2px);
}

.search-icon {
    color: #8a97b3;
    margin-left: 14px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-modern:focus-within .search-icon {
    color: #0d3b7a;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 15px;
    color: #1f2a44;
}

.search-input::placeholder {
    color: #a3adc2;
}

.search-btn {
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d3b7a, #1a5bb8);
    color: #ffffff;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.search-btn:hover {
    background: linear-gradient(135deg, #0a2f61, #144a99);
    transform: scale(1.04);
    box-shadow: 0 6px 16px rgba(13, 59, 122, 0.35);
}

.search-btn:active {
    transform: scale(0.97);
}

.search-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.search-btn:active::after {
    width: 200px;
    height: 200px;
    transition: 0s;
}

@media (max-width: 576px) {
    .search-modern {
        border-radius: 20px;
        flex-wrap: wrap;
    }
    .search-icon {
        margin-left: 10px;
    }
    .search-input {
        min-width: 0;
    }
    .search-btn {
        padding: 10px 20px;
        font-size: 13.5px;
    }
}


/* ==========================================================
   13. HALAMAN CRUD (ADMIN/USER)
   ========================================================== */
@keyframes userFadeInUpPage {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

.container.my-5 {
    animation: userFadeInUpPage 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes userSlideInLeft {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: none; }
}

.breadcrumb {
    animation: userSlideInLeft 0.5s ease-out both;
    animation-delay: 0.05s;
}

.breadcrumb-item a {
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease;
    color: var(--hijau-toska-gelap);
    font-weight: 600;
}

.breadcrumb-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1.5px;
    background: var(--hijau-toska-gelap, #0f6e66);
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumb-item.active {
    color: var(--abu-teks);
}

@keyframes userCardPopIn {
    from { opacity: 0; transform: scale(0.96) translateY(16px); }
    to   { opacity: 1; transform: none; }
}

.card.shadow-sm {
    animation: userCardPopIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    border: none;
    border-radius: 16px;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    position: relative;
    overflow: hidden;
}

.card.shadow-sm:hover {
    box-shadow: 0 16px 34px rgba(13, 59, 122, 0.12) !important;
}

.card.shadow-sm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hijau-tua), var(--hijau-toska), var(--emas-melayu));
}

.card-title {
    position: relative;
    padding-bottom: 10px;
    color: var(--hijau-tua);
    font-weight: 700;
}

.card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--hijau-toska), var(--emas-melayu));
    animation: userGrowWidth 0.6s ease-out 0.4s both;
}

@keyframes userGrowWidth {
    from { width: 0; }
    to   { width: 46px; }
}

.card form .mb-3,
.card form .mb-4 {
    opacity: 0;
    animation: userFadeInUpPage 0.5s ease-out forwards;
}

.card form .mb-3:nth-of-type(1) { animation-delay: 0.15s; }
.card form .mb-3:nth-of-type(2) { animation-delay: 0.22s; }
.card form .mb-3:nth-of-type(3) { animation-delay: 0.29s; }
.card form .mb-4               { animation-delay: 0.36s; }

.form-control,
.form-select {
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--hijau-toska) !important;
    box-shadow: 0 0 0 4px rgba(23, 163, 152, 0.15) !important;
    transform: translateY(-1px);
}

.form-label {
    color: var(--hijau-tua);
    font-weight: 600;
}

.form-text {
    opacity: 0;
    animation: userFadeInUpPage 0.4s ease-out 0.2s forwards;
    color: var(--abu-teks);
}

.form-text code {
    background: #f1f4f9;
    padding: 1px 6px;
    border-radius: 6px;
    color: #0d3b7a;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.45s ease, height 0.45s ease;
    z-index: -1;
}

.btn:active::before {
    width: 260px;
    height: 260px;
    transition: 0s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--hijau-tua), var(--hijau-toska));
    border: none;
    color: var(--putih);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--hijau-toska-gelap), var(--hijau-toska));
    color: var(--putih);
    box-shadow: 0 10px 20px rgba(31, 64, 55, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline-primary {
    color: var(--hijau-toska-gelap);
    border-color: var(--hijau-toska-gelap);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--hijau-toska-gelap);
    border-color: var(--hijau-toska-gelap);
    color: var(--putih);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 59, 122, 0.25);
}

.btn-outline-secondary {
    color: var(--coklat-tanah);
    border-color: #d8cdbf;
    background: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--krem-hangat);
    border-color: var(--coklat-tanah);
    color: var(--coklat-tanah);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 59, 122, 0.25);
}

.btn-outline-danger {
    color: #b5433a;
    border-color: #b5433a;
    background: transparent;
}

@keyframes userShakeWarn {
    0%, 100% { transform: translateX(0) translateY(-2px); }
    25%      { transform: translateX(-2px) translateY(-2px); }
    75%      { transform: translateX(2px) translateY(-2px); }
}

.btn-outline-danger:hover {
    background-color: #b5433a;
    border-color: #b5433a;
    color: var(--putih);
    animation: userShakeWarn 0.35s ease;
    box-shadow: 0 6px 14px rgba(214, 69, 69, 0.25);
}

.table-responsive {
    animation: userFadeInUpPage 0.6s ease-out 0.15s both;
}

.table thead.table-dark {
    background: none;
}

.table thead.table-dark th {
    letter-spacing: 0.03em;
    font-size: 0.82rem;
    text-transform: uppercase;
    background: linear-gradient(120deg, var(--hijau-tua) 0%, var(--hijau-toska) 100%);
    color: var(--putih);
    border-color: var(--hijau-tua);
}

.table.table-bordered {
    border-color: #e7e0d3;
}

.table.table-bordered td,
.table.table-bordered th {
    border-color: #e7e0d3;
}

.table tbody tr {
    opacity: 0;
    animation: userRowFadeIn 0.45s ease-out forwards;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

@keyframes userRowFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

.table tbody tr:nth-child(1)  { animation-delay: 0.05s; }
.table tbody tr:nth-child(2)  { animation-delay: 0.10s; }
.table tbody tr:nth-child(3)  { animation-delay: 0.15s; }
.table tbody tr:nth-child(4)  { animation-delay: 0.20s; }
.table tbody tr:nth-child(5)  { animation-delay: 0.25s; }
.table tbody tr:nth-child(6)  { animation-delay: 0.30s; }
.table tbody tr:nth-child(7)  { animation-delay: 0.35s; }
.table tbody tr:nth-child(8)  { animation-delay: 0.40s; }
.table tbody tr:nth-child(9)  { animation-delay: 0.45s; }
.table tbody tr:nth-child(10) { animation-delay: 0.50s; }

.table tbody tr:hover {
    background-color: var(--krem-hangat);
    transform: scale(1.003);
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.25);
}

tr .badge {
    border-radius: 20px;
    padding: 0.4em 0.85em;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease;
}

tr .badge.bg-danger {
    background-color: var(--emas-melayu) !important;
    color: var(--hijau-tua) !important;
    animation: userBadgePulse 2.4s ease-in-out infinite;
}

tr .badge.bg-secondary {
    background-color: var(--hijau-toska) !important;
    color: var(--putih) !important;
}

@keyframes userBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(201, 162, 39, 0); }
}

.table tbody tr:hover .badge {
    transform: scale(1.06);
}

@keyframes userSlideInRight {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: none; }
}

.d-flex.justify-content-between .btn-primary {
    animation: userSlideInRight 0.5s ease-out 0.15s both;
}

.d-flex.justify-content-between h2 {
    animation: userSlideInLeft 0.5s ease-out both;
    color: var(--hijau-tua);
    font-weight: 700;
}

td[colspan] {
    animation: userFadeInUpPage 0.6s ease-out 0.2s both;
    color: #a89b87;
    font-style: italic;
    padding: 2.5rem 0 !important;
}


/* ==========================================================
   14. WAVE DIVIDER
   ========================================================== */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    line-height: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .wave-divider svg {
        height: 30px;
    }
}


/* ==========================================================
   15. HALAMAN KULINER
   ========================================================== */

/* --- Hero kuliner --- */
.hero-kuliner {
    position: relative;
    overflow: hidden;
}
.hero-kuliner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255,255,255,0.08) 0, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255,255,255,0.08) 0, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255,255,255,0.06) 0, transparent 50%);
    pointer-events: none;
}
.hero-kuliner .btn-back-home {
    position: relative;
    z-index: 1;
}
.hero-kuliner h1,
.hero-kuliner p {
    position: relative;
    z-index: 1;
}
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 1.25rem;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}
.btn-back-home:hover {
    background: rgba(255,255,255,0.28);
}

/* --- Filter kategori --- */
.filter-kategori {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid #d1d5db;
    color: #4b5563;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-btn:hover {
    border-color: #059669;
    color: #059669;
}
.filter-btn.active {
    background: linear-gradient(135deg, #0f766e, #059669);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

/* --- Card kuliner --- */
.kuliner-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kuliner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px -10px rgba(15, 118, 110, 0.25);
}
.kuliner-card .img-wrap {
    position: relative;
    overflow: hidden;
}
.kuliner-card .img-wrap img {
    transition: transform 0.5s ease;
}
.kuliner-card:hover .img-wrap img {
    transform: scale(1.08);
}

.kuliner-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}
.badge-berat      { background: #fee2e2; color: #b91c1c; }
.badge-pelengkap  { background: #fef3c7; color: #92400e; }
.badge-kue        { background: #dbeafe; color: #1d4ed8; }
.badge-olehole    { background: #dcfce7; color: #15803d; }

.harga-menu {
    font-size: 1.05rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f766e, #b45309);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-pesan {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #16a34a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-pesan:hover {
    background: #15803d;
    transform: translateY(-2px);
}

/* --- Cara Pesan --- */
.cara-pesan-step {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cara-pesan-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.15);
}
.cara-pesan-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #059669);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* --- Reveal on scroll (dipakai di halaman kuliner) --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}
.hero-animate {
    animation: heroFadeIn 0.8s ease both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: none; }
}


/* ==========================================================
   16. RESTYLE "EVASION NATURE" — kartu pita, paket wisata, footer bottom
   ========================================================== */

/* ---------- KARTU PITA (dipakai di Destinasi Unggulan & Paket Wisata) ---------- */
.kartu-pita-wrap { transition: transform .25s ease; }
.kartu-pita-wrap:hover { transform: translateY(-6px); }

.kartu-pita {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
    background: #fff;
    height: 100%;
}
.kartu-pita-foto {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.kartu-pita-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.kartu-pita-wrap:hover .kartu-pita-foto img,
.kartu-pita:hover .kartu-pita-foto img {
    transform: scale(1.06);
}
.kartu-pita-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: .72rem;
    padding: 4px 10px;
}

/* pita judul hijau tua yang menutup bagian bawah foto */
.kartu-pita-judul {
    background: var(--hijau-tua);
    color: #fff;
    padding: 14px 16px 10px;
}
.kartu-pita-judul h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}
.kartu-pita-judul p {
    font-size: .85rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
}

/* Di halaman Destinasi, .kartu-pita dipakai di dalam .card bawaan Bootstrap —
   pastikan tidak dobel padding/border dengan .card-body di bawah pita */
.destinasi .kartu-pita.card {
    border: 0;
}
.destinasi .kartu-pita .card-body {
    padding-top: 16px;
}

/* ---------- SECTION PAKET WISATA ---------- */
.paket-wisata {
    position: relative;
    padding: 70px 0 50px;
    background: linear-gradient(rgba(8,70,66,.6), rgba(8,70,66,.6)),
                url('/images/paket-wisata-bg.jpg') center/cover no-repeat fixed;
}
.paket-judul {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.paket-sub {
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin: 0 auto;
}

/* ============ ULASAN SECTION ============ */
.ulasan-section {
    padding: 0;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4a418;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.ulasan-section .section-title {
    font-weight: 800;
    font-size: 1.85rem;
    color: #0d3b7a;
    background: linear-gradient(90deg, #0d3b7a, #16825d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tombol Tulis Ulasan */
.btn-modern.btn-tulis-ulasan {
    background: linear-gradient(90deg, #0d3b7a, #16825d);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(13, 59, 122, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-modern.btn-tulis-ulasan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(13, 59, 122, 0.32);
    color: #fff;
}

/* ============ ULASAN CARD ============ */
.ulasan-card {
    border: 1px solid rgba(13, 59, 122, 0.06) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    position: relative;
}

.ulasan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #16825d, #d4a418);
    border-radius: 4px 0 0 4px;
}

.ulasan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(13, 59, 122, 0.12) !important;
}

.ulasan-card .card-body {
    padding: 1.4rem 1.5rem 1.4rem 1.75rem;
}

/* ============ AVATAR ============ */
.ulasan-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(13, 59, 122, 0.18);
}

.ulasan-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ulasan-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #0d3b7a, #16825d);
}

/* ============ RATING BINTANG ============ */
.rating-stars-static i {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-left: 1px;
}

.rating-stars-static i.bi-star-fill {
    color: #f5b301;
}

.rating-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0d3b7a;
    background: rgba(13, 59, 122, 0.08);
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

/* ============ EMPTY STATE ============ */
.ulasan-empty {
    padding: 3rem 1rem;
    background: #fafbfd;
    border-radius: 1.5rem;
    border: 1px dashed rgba(13, 59, 122, 0.15);
}

.ulasan-empty-icon {
    font-size: 2.5rem;
    color: rgba(13, 59, 122, 0.25);
    margin-bottom: 0.75rem;
}

.ulasan-empty p {
    color: #6c757d;
    font-size: 1rem;
}

/* ============ ATRAKSI SECTION ============ */
.atraksi-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(13, 59, 122, 0.08);
    border: 1px solid rgba(13, 59, 122, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atraksi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(13, 59, 122, 0.16);
}

.atraksi-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.atraksi-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.atraksi-card:hover .atraksi-img-wrap img {
    transform: scale(1.08);
}

.atraksi-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.atraksi-kategori {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #0d3b7a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.atraksi-harga {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(90deg, #16825d, #0d3b7a);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 6px 14px rgba(13, 59, 122, 0.35);
}

.atraksi-body {
    padding: 1.1rem 1.25rem 1.3rem;
}

.atraksi-title {
    font-weight: 700;
    color: #0d3b7a;
    margin: 0;
    font-size: 1.02rem;
}

.atraksi-title i {
    color: #d4a418;
}

/* ============ MENU TITIK TIGA DI CARD ATRAKSI ============ */
.atraksi-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.atraksi-menu-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #0d3b7a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.2s ease;
}

.atraksi-menu-btn:hover {
    background: #fff;
}

.atraksi-menu .dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 0.4rem;
    min-width: 140px;
}

.atraksi-menu .dropdown-item {
    border-radius: 0.5rem;
    font-size: 0.88rem;
    padding: 0.45rem 0.7rem;
}

.atraksi-menu .dropdown-item:hover {
    background: rgba(13, 59, 122, 0.08);
}

.atraksi-menu form {
    margin: 0;
}

/* ==========================================================
   Wisata Rengat — Auth Pages (Login & Daftar)
   Disamakan dengan identitas admin panel: teal danau/sungai
   + emas songket, tipografi Fraunces (judul) + Plus Jakarta
   Sans (body).
   ========================================================== */

:root{
    --ink:#16211F;
    --ink-soft:#5B655F;
    --paper:#F5F6F2;
    --card:#FFFFFF;
    --border:#E7E8E2;

    --teal:#0B6E68;
    --teal-dark:#084F4A;
    --teal-tint:#E3F1EF;

    --gold:#B8862E;
    --gold-dark:#8A661F;
    --gold-tint:#FBF1DD;

    --clay:#A8502E;
    --clay-tint:#F7E9E3;

    --radius-lg:20px;
    --radius-md:14px;
    --radius-sm:10px;
    --shadow-md:0 10px 32px rgba(11,110,104,.14);

    --font-display:'Fraunces', Georgia, serif;
    --font-body:'Plus Jakarta Sans', -apple-system, sans-serif;
}

*{ box-sizing:border-box; }

.auth-page{
    min-height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:2rem 1.25rem;
    background:
        radial-gradient(circle at 15% 15%, rgba(184,134,46,.18), transparent 45%),
        linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #0a615c 100%);
    font-family:var(--font-body);
}

.auth-card{
    background:var(--card);
    border-radius:var(--radius-lg);
    padding:2.5rem 2.1rem;
    width:100%;
    max-width:420px;
    box-shadow:var(--shadow-md);
}

.auth-icon{
    width:56px; height:56px;
    margin:0 auto 1.1rem;
    border-radius:16px;
    background:linear-gradient(135deg, var(--gold), var(--gold-dark));
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 16px rgba(184,134,46,.35);
}
.auth-icon svg{ width:26px; height:26px; color:#fff; }

.auth-title{
    font-family:var(--font-display);
    font-weight:600;
    font-size:1.6rem;
    color:var(--ink);
    text-align:center;
    margin:0 0 1.5rem;
}

.auth-form .form-group{
    position:relative;
    margin-bottom:1rem;
}

.form-control{
    width:100%;
    padding:.78rem 2.75rem .78rem 1rem;
    border:1.5px solid var(--border);
    border-radius:var(--radius-sm);
    font-family:var(--font-body);
    font-size:.92rem;
    color:var(--ink);
    background:var(--paper);
    transition:.15s ease;
}
.form-control::placeholder{ color:var(--ink-soft); opacity:.8; }
.form-control:focus{
    outline:none;
    border-color:var(--teal);
    background:#fff;
    box-shadow:0 0 0 3px var(--teal-tint);
}
.form-control.is-invalid{
    border-color:var(--clay);
    background:var(--clay-tint);
}

.form-control{ position:relative; z-index:1; }

.field-icon{
    position:absolute;
    right:.4rem;
    top:50%;
    transform:translateY(-50%);
    color:var(--ink-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:.55rem;
    z-index:5;
    pointer-events:auto;
    transition:.15s ease;
}
.field-icon svg{ pointer-events:none; }
.field-icon[onclick]{ cursor:pointer; }
.field-icon[onclick]:hover{ color:var(--gold-dark); }

.invalid-feedback{
    display:block;
    color:var(--clay);
    font-size:.76rem;
    font-weight:600;
    margin-top:.35rem;
}

.form-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:.82rem;
    color:var(--ink-soft);
    margin:.2rem 0 1.4rem;
}
.form-meta label{ display:flex; align-items:center; gap:.4rem; cursor:pointer; }
.form-meta input[type="checkbox"]{ accent-color:var(--teal); width:15px; height:15px; }
.form-meta a{ color:var(--teal-dark); font-weight:600; text-decoration:none; }
.form-meta a:hover{ text-decoration:underline; }

.btn-auth-primary{
    width:100%;
    padding:.85rem;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg, var(--teal), var(--teal-dark));
    color:#fff;
    font-family:var(--font-body);
    font-weight:700;
    font-size:.95rem;
    cursor:pointer;
    box-shadow:0 6px 16px rgba(11,110,104,.28);
    transition:.15s ease;
}
.btn-auth-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(11,110,104,.34);
}
.btn-auth-primary:active{ transform:translateY(0); }

.auth-divider{
    display:flex;
    align-items:center;
    gap:.75rem;
    color:var(--ink-soft);
    font-size:.78rem;
    font-weight:600;
    margin:1.3rem 0;
}
.auth-divider::before,
.auth-divider::after{
    content:'';
    flex:1;
    height:1px;
    background:var(--border);
}

.btn-auth-google{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
    width:100%;
    padding:.75rem;
    border:1.5px solid var(--border);
    border-radius:30px;
    background:#fff;
    color:var(--ink);
    font-family:var(--font-body);
    font-weight:600;
    font-size:.9rem;
    text-decoration:none;
    transition:.15s ease;
}
.btn-auth-google svg{ width:20px; height:20px; }
.btn-auth-google:hover{
    border-color:var(--gold);
    box-shadow:0 4px 14px rgba(184,134,46,.18);
    transform:translateY(-1px);
    color:var(--ink);
}

.auth-switch-text{
    text-align:center;
    font-size:.85rem;
    color:var(--ink-soft);
    margin:1.3rem 0 .6rem;
}

.btn-auth-secondary{
    display:block;
    text-align:center;
    width:100%;
    padding:.7rem;
    border:1.5px solid var(--teal);
    border-radius:30px;
    color:var(--teal-dark);
    font-family:var(--font-body);
    font-weight:700;
    font-size:.9rem;
    text-decoration:none;
    transition:.15s ease;
}
.btn-auth-secondary:hover{
    background:var(--teal);
    color:#fff;
}

@media (max-width:480px){
    .auth-card{ padding:2rem 1.4rem; }
    .auth-title{ font-size:1.4rem; }
}

/* ===== Profile Edit Page ===== */
.profile-page{
    background:#f6f8f9;
    min-height:80vh;
    padding:2.5rem 1rem 4rem;
}

.profile-shell{
    max-width:640px;
    margin:0 auto;
}

.profile-heading{
    margin-bottom:1.75rem;
}
.profile-heading h1{
    font-size:1.6rem;
    font-weight:700;
    color:#0d3b7a;
    margin:0 0 .3rem;
}
.profile-heading p{
    color:#6b7280;
    margin:0;
    font-size:.92rem;
}

/* ===== Alert ===== */
.p-alert{
    display:flex;
    align-items:center;
    gap:.6rem;
    background:#e8f8ee;
    color:#16825d;
    border:1px solid #bfead0;
    border-radius:12px;
    padding:.85rem 1.1rem;
    font-size:.88rem;
    font-weight:500;
    margin-bottom:1.5rem;
}

/* ===== Card ===== */
.p-card{
    background:#fff;
    border:1px solid #eef0f2;
    border-radius:16px;
    box-shadow:0 4px 18px rgba(16,24,40,.04);
    padding:1.75rem;
    margin-bottom:1.5rem;
}
.p-card-title{
    font-size:1.05rem;
    font-weight:700;
    color:#111827;
    margin:0 0 .25rem;
}
.p-card-desc{
    font-size:.85rem;
    color:#6b7280;
    margin:0 0 1.25rem;
}

/* ===== Foto profil ===== */
.photo-row{
    display:flex;
    align-items:center;
    gap:1.25rem;
    flex-wrap:wrap;
}

.photo-preview-wrap{
    position:relative;
    width:96px;
    height:96px;
    flex-shrink:0;
}

.photo-preview{
    width:96px;
    height:96px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    border:3px solid #f0f2f4;
    box-shadow:0 2px 10px rgba(16,24,40,.08);
}

.photo-edit-btn{
    position:absolute;
    bottom:-2px;
    right:-2px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#0d3b7a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border:3px solid #fff;
    cursor:pointer;
    transition:.15s ease;
}
.photo-edit-btn:hover{
    background:#16825d;
    transform:scale(1.06);
}
.photo-edit-btn input[type="file"]{
    display:none;
}

.photo-meta .name{
    font-weight:700;
    font-size:1rem;
    color:#111827;
    margin:0 0 .2rem;
}
.photo-meta .hint{
    font-size:.82rem;
    color:#9aa5b1;
    margin:0;
}

/* ===== Form fields ===== */
.p-field{
    margin-bottom:1.2rem;
}
.p-field label{
    display:block;
    font-size:.85rem;
    font-weight:600;
    color:#374151;
    margin-bottom:.4rem;
}
.p-field input[type="text"],
.p-field input[type="email"]{
    width:100%;
    padding:.65rem .9rem;
    border:1px solid #e0e3e8;
    border-radius:10px;
    font-size:.92rem;
    color:#111827;
    transition:border-color .15s ease, box-shadow .15s ease;
}
.p-field input:focus{
    outline:none;
    border-color:#0d3b7a;
    box-shadow:0 0 0 3px rgba(13,59,122,.12);
}
.p-field input.is-invalid{
    border-color:#dc3545;
}
.p-field-hint{
    font-size:.78rem;
    color:#9aa5b1;
    margin:.4rem 0 0;
}
.error{
    font-size:.8rem;
    color:#dc3545;
    margin-top:.35rem;
}

.p-form-footer{
    display:flex;
    justify-content:flex-end;
    margin-top:.5rem;
}
.btn-p-primary{
    background:#0d3b7a;
    color:#fff;
    border:none;
    padding:.65rem 1.5rem;
    border-radius:10px;
    font-weight:600;
    font-size:.9rem;
    transition:.15s ease;
}
.btn-p-primary:hover{
    background:#16825d;
}

/* ===== Responsive ===== */
@media (max-width:480px){
    .photo-row{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
}

/* ===== Fix ukuran foto profil admin di navbar ===== */
.profile-dd {
    position: relative;
}

.profile-dd-trigger {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.profile-dd-avatar-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .6);
    flex-shrink: 0;
}

.profile-dd-avatar-ring--lg {
    width: 56px;
    height: 56px;
}

.profile-dd-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    font-size: .9rem;
}

.profile-dd-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.profile-dd-chevron {
    color: #fff;
    transition: transform .2s ease;
    flex-shrink: 0;
}

.profile-dd.open .profile-dd-chevron {
    transform: rotate(180deg);
}

/* ===== Dropdown menu ===== */
.profile-dd-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,.16);
    padding: .6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 1050;
}

.profile-dd.open .profile-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dd-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .5rem .5rem .8rem;
}

.profile-dd-header-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.profile-dd-name {
    font-weight: 600;
    font-size: .9rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-dd-email {
    font-size: .78rem;
    color: #8b93a1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-dd-divider {
    height: 1px;
    background: #eee;
    margin: .4rem 0;
}

.profile-dd-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .55rem .6rem;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #333;
    font-size: .87rem;
    text-decoration: none;
    text-align: left;
    transition: background .15s ease;
}

.profile-dd-item:hover {
    background: #f3f4f6;
    color: #111;
}

.profile-dd-item--danger {
    color: #dc3545;
}

.profile-dd-item--danger:hover {
    background: #fdecec;
    color: #dc3545;
}

.profile-dd-icon {
    flex-shrink: 0;
}

.dash-dark{
    --c-teal:#2dd4bf;
    --c-amber:#fbbf24;
    --c-blue:#60a5fa;
    --c-rose:#fb7185;
}

/* ===== Hero Banner ===== */
.dash-hero{
    background:linear-gradient(135deg,#16332c 0%, #0d1f1a 100%);
    border:1px solid rgba(255,255,255,.07);
    border-radius:18px;
    padding:1.85rem 2.1rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:1.75rem;
    flex-wrap:wrap;
    gap:1rem;
    position:relative;
    overflow:hidden;
}
.dash-hero::after{
    content:"";
    position:absolute;
    top:-60px; right:-60px;
    width:220px; height:220px;
    background:radial-gradient(circle, rgba(201,162,39,.16) 0%, transparent 70%);
    pointer-events:none;
}
.dash-chip{
    display:inline-block;
    background:rgba(201,162,39,.16);
    color:#e0b93a;
    font-size:.74rem;
    font-weight:700;
    letter-spacing:.03em;
    text-transform:uppercase;
    padding:.3rem .75rem;
    border-radius:20px;
    margin-bottom:.7rem;
}
.dash-hero-text h2{
    font-size:1.7rem;
    font-weight:700;
    margin:0 0 .45rem 0;
    color:#ffffff;
}
.dash-hero-text .wave{ display:inline-block; animation:wave 1.6s infinite; }
@keyframes wave{
    0%,60%,100%{ transform:rotate(0deg); }
    10%,30%{ transform:rotate(14deg); }
    20%{ transform:rotate(-8deg); }
}
.dash-hero-text p{
    margin:0; color:#9aa7b0; font-size:.92rem;
}
.dash-hero-btn{
    display:flex; align-items:center; gap:.5rem;
    background:linear-gradient(135deg,#e0b93a,#c9a227);
    color:#12160f;
    font-weight:700; font-size:.85rem;
    padding:.7rem 1.3rem; border-radius:12px;
    text-decoration:none; white-space:nowrap;
    box-shadow:0 6px 18px rgba(201,162,39,.25);
    transition:.18s ease;
}
.dash-hero-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(201,162,39,.35);
    color:#12160f;
}

/* ===== Stat Cards ===== */
.dash-stats{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:1.25rem;
    margin-bottom:1.75rem;
}
.stat-tile{
    background:#171d27;
    border:1px solid rgba(255,255,255,.06);
    border-left:3px solid transparent;
    border-radius:16px;
    padding:1.4rem 1.3rem;
    transition:.2s ease;
    position:relative;
    box-shadow:0 4px 16px rgba(0,0,0,.18);
}
.stat-tile:nth-child(1){ border-left-color:#2dd4bf; }
.stat-tile:nth-child(2){ border-left-color:#fbbf24; }
.stat-tile:nth-child(3){ border-left-color:#60a5fa; }
.stat-tile:nth-child(4){ border-left-color:#fb7185; }
.stat-tile:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 28px rgba(0,0,0,.28);
    border-color:rgba(255,255,255,.12);
}
.stat-tile-top{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:1.1rem;
}
.stat-icon{
    width:44px; height:44px; border-radius:13px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.15rem; color:#fff;
}
.stat-icon.bg-teal{ background:linear-gradient(135deg,#2dd4bf,#0f766e); }
.stat-icon.bg-amber{ background:linear-gradient(135deg,#fbbf24,#b45309); }
.stat-icon.bg-blue{ background:linear-gradient(135deg,#60a5fa,#1d4ed8); }
.stat-icon.bg-rose{ background:linear-gradient(135deg,#fb7185,#be123c); }
.stat-trend{
    font-size:.73rem; color:#9aa7b0;
    background:#1e2530;
    padding:.22rem .65rem; border-radius:20px;
    font-weight:600;
}
.stat-value{ font-size:2.1rem; font-weight:800; color:#ffffff; line-height:1; letter-spacing:-.02em; }
.stat-label{ font-size:.85rem; color:#8b93a1; margin-top:.4rem; font-weight:500; }

/* ===== Bottom Grid ===== */
.dash-bottom{
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:1.25rem;
}
.dash-panel{
    background:#171d27;
    border:1px solid rgba(255,255,255,.06);
    border-radius:16px;
    padding:1.6rem;
    box-shadow:0 4px 16px rgba(0,0,0,.18);
}
.dash-panel h5{
    font-size:1.02rem; font-weight:700; color:#ffffff;
    margin-bottom:1.2rem; display:flex; align-items:center; gap:.55rem;
}
.dash-panel h5 i{ color:#e0b93a; }

/* ---- Quick actions ---- */
.qa-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
}
.qa-item{
    display:flex; align-items:center; gap:.85rem;
    background:#1c2330;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    padding:1rem;
    text-decoration:none;
    color:#e8eaed;
    transition:.18s ease;
}
.qa-item:hover{
    border-color:#e0b93a;
    background:#232b3a;
    color:#e8eaed;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}
.qa-icon{
    width:38px; height:38px; border-radius:11px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:1rem;
}
.qa-icon.bg-teal{ background:linear-gradient(135deg,#2dd4bf,#0f766e); }
.qa-icon.bg-amber{ background:linear-gradient(135deg,#fbbf24,#b45309); }
.qa-icon.bg-blue{ background:linear-gradient(135deg,#60a5fa,#1d4ed8); }
.qa-icon.bg-rose{ background:linear-gradient(135deg,#fb7185,#be123c); }
.qa-text{ display:flex; flex-direction:column; font-size:.89rem; font-weight:700; color:#f2f3f5; }
.qa-text small{ font-weight:400; color:#8b93a1; font-size:.76rem; margin-top:.15rem; }

/* ---- Info panel ---- */
.info-desc{
    font-size:.87rem; color:#9aa7b0;
    line-height:1.6; margin-bottom:1.3rem;
}
.info-row{
    display:flex; align-items:center; gap:.65rem;
    font-size:.86rem; color:#e8eaed;
    padding:.7rem 0; border-top:1px solid rgba(255,255,255,.07);
}
.info-row strong{ color:#ffffff; }
.info-row i{ color:#e0b93a; font-size:1rem; flex-shrink:0; }

/* ===== Responsive ===== */
@media (max-width:992px){
    .dash-stats{ grid-template-columns:repeat(2, 1fr); }
    .dash-bottom{ grid-template-columns:1fr; }
}
@media (max-width:576px){
    .dash-stats{ grid-template-columns:1fr; }
    .qa-grid{ grid-template-columns:1fr; }
}

/* ==========================================================
   Wisata Rengat — Admin Dashboard Styles
   Melengkapi variabel dari layouts/admin.blade.php
   ========================================================== */

.dash-light {
    --card-radius: 16px;
}

/* ===== Greeting ===== */
.dash-heading h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: .35rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.dash-heading .wave {
    display: inline-block;
    animation: wave-hand 1.8s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave-hand {
    0%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
}

.dash-heading p {
    color: var(--text-muted);
    font-size: .92rem;
    margin: 0;
}

/* ===== Stat Cards ===== */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .dash-stats { grid-template-columns: 1fr; }
}

.stat-tile {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--card-radius);
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(31, 36, 48, .04);
    transition: transform .15s ease, box-shadow .15s ease;
}

.stat-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(31, 36, 48, .08);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
}

.stat-icon.bg-teal   { background: linear-gradient(135deg, #0d9488, #0f766e); }
.stat-icon.bg-amber  { background: linear-gradient(135deg, #f59e0b, #b45309); }
.stat-icon.bg-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.stat-icon.bg-rose   { background: linear-gradient(135deg, #f43f5e, #be123c); }

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: .15rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

/* ===== Generic Panel ===== */
.dash-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--card-radius);
    padding: 1.4rem 1.5rem;
    box-shadow: 0 2px 10px rgba(31, 36, 48, .04);
}

.dash-panel h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.dash-panel h5 i {
    color: var(--accent-teal);
}

.dash-panel-sub {
    font-size: .8rem;
    color: var(--text-muted);
    background: #f4f6f8;
    padding: .25rem .7rem;
    border-radius: 30px;
}

/* ===== Aksi Cepat ===== */
.qa-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.qa-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1rem;
    border-radius: 30px;
    background: #f4f6f8;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    transition: .15s ease;
}

.qa-pill i {
    color: var(--accent-teal);
    font-size: .9rem;
}

.qa-pill:hover {
    background: var(--accent-teal);
    color: #fff;
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.qa-pill:hover i {
    color: #fff;
}

/* ===== Chart panel ===== */
#chartTrenUlasan {
    width: 100% !important;
}

/* ===== Aktivitas Terbaru + Rating Tertinggi ===== */
.dash-chart-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

@media (max-width: 900px) {
    .dash-chart-grid { grid-template-columns: 1fr; }
}

.activity-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border-soft);
}

.activity-row:last-child { border-bottom: none; }

.activity-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: .4rem;
    flex-shrink: 0;
}

.activity-dot.bg-rose { background: #f43f5e; }
.activity-dot.bg-blue { background: #3b82f6; }

.activity-text {
    font-size: .88rem;
    color: var(--text-main);
    font-weight: 500;
}

.activity-time {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .1rem;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: .88rem;
    color: var(--text-main);
    font-weight: 500;
}

.rating-row:last-child { border-bottom: none; }

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fff7e6;
    color: #b45309;
    padding: .25rem .65rem;
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 700;
}

.rating-badge i {
    color: #f59e0b;
}

/* ============ FILTER KATEGORI (CHIP/PILL) — Halaman Destinasi ============ */
.kategori-filter-wrap {
    margin-top: 4px;
}

.kategori-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(13, 59, 122, 0.18);
    background: #ffffff;
    color: #0d3b7a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.kategori-chip:hover {
    background: rgba(13, 59, 122, 0.06);
    border-color: rgba(13, 59, 122, 0.35);
    color: #0d3b7a;
    text-decoration: none;
    transform: translateY(-1px);
}

.kategori-chip.active {
    background: #0d3b7a;
    border-color: #0d3b7a;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(13, 59, 122, 0.25);
}

.kategori-chip.active:hover {
    background: #0d3b7a;
    color: #ffffff;
    transform: none;
}

@media (max-width: 576px) {
    .kategori-chip {
        padding: 7px 16px;
        font-size: 13px;
    }
}

/* ============ CARD "TAMBAH ATRAKSI" (state kosong) ============ */
.atraksi-add-card {
    min-height: 240px;
    border: 2px dashed rgba(13, 59, 122, 0.35);
    border-radius: 1rem;
    color: #0d3b7a;
    background: rgba(13, 59, 122, 0.03);
    padding: 2rem 1rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.atraksi-add-card:hover {
    background: rgba(13, 59, 122, 0.08);
    border-color: #0d3b7a;
    color: #0d3b7a;
    transform: translateY(-2px);
}

/* ============ TOMBOL "LIHAT DETAIL" DI CARD ATRAKSI ============ */
.atraksi-detail-btn {
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border: 1.5px solid #0d3b7a;
    color: #0d3b7a;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.atraksi-detail-btn:hover {
    background: #0d3b7a;
    color: #fff;
    transform: translateY(-1px);
}

/* ============ ANIMASI POPUP MODAL DETAIL ATRAKSI ============ */
/* Bootstrap secara default hanya fade + geser vertikal tipis.
   Di sini ditambahkan efek scale-up supaya popup terasa lebih hidup. */
.atraksi-detail-modal .modal-dialog {
    transform: scale(0.85) translateY(24px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}
.atraksi-detail-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Backdrop dibuat sedikit lebih gelap + transisi lembut, senada dengan efek scale di atas */
.atraksi-detail-modal ~ .modal-backdrop.show {
    opacity: 0.55;
}