/* ============================================================
   PARIWISATA BANDA ACEH — REDESAIN "ISTANA & EMAS"
   Palet: hijau zamrud gelap + emas, mewah/klasik, ornamen halus,
   gradient dalam, shadow berlapis. Semua nama class DIPERTAHANKAN
   persis seperti versi sebelumnya — hanya nilai desainnya diganti,
   jadi tidak ada file blade yang perlu diubah.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root{
    /* -- hijau zamrud (gelap, dipakai hero/footer/CTA) -- */
    --em-950:#071F17;
    --em-900:#0B3226;
    --em-800:#124A38;
    --em-700:#1A6049;
    --em-600:#237A5C;

    /* -- emas (aksen pemersatu di seluruh situs) -- */
    --gold-800:#8A6A16;
    --gold-700:#A9791B;
    --gold-600:#C9A227;
    --gold-500:#D9B94A;
    --gold-300:#E7CD74;
    --gold-100:#F6EBC4;

    /* -- netral hangat -- */
    --ivory:#FBF8F0;
    --paper:#F5F0E3;
    --ink:#1E1B14;
    --ink-soft:#4B4636;
    --muted:#8A8368;
    --line: rgba(30,27,20,0.13);
    --line-gold: rgba(169,121,27,0.35);

    --shadow-soft: 0 10px 30px rgba(11,50,38,0.10);
    --shadow-deep: 0 22px 55px -18px rgba(7,31,23,0.45);
    --shadow-gold: 0 10px 26px rgba(169,121,27,0.28);

    /* -- aksen meriah (dipakai bergantian di ikon, badge, ornamen) -- */
    --maroon:#8E2A2A;
    --maroon-light:#B85454;
    --teal-deep:#0E5A5C;
    --teal-light:#3E9B96;

    /* -- pola ornamen songket/batik, dipakai sebagai overlay tipis -- */
    --pattern-gold: repeating-linear-gradient(45deg, rgba(217,185,74,0.07) 0 2px, transparent 2px 22px),
                     repeating-linear-gradient(-45deg, rgba(217,185,74,0.05) 0 2px, transparent 2px 22px);
}

@keyframes meriah-pulse{
    0%{ box-shadow:0 0 0 0 rgba(34,197,94,0.5); }
    70%{ box-shadow:0 0 0 9px rgba(34,197,94,0); }
    100%{ box-shadow:0 0 0 0 rgba(34,197,94,0); }
}
@keyframes meriah-shimmer{
    0%{ background-position:-140px 0; }
    100%{ background-position:140px 0; }
}
@keyframes meriah-float{
    0%, 100%{ transform:translateY(0); }
    50%{ transform:translateY(-5px); }
}
@media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; }
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background-color: var(--paper);
    line-height: 1.65;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', 'Segoe UI', serif;
    letter-spacing: 0.015em;
}

::selection{ background: var(--gold-600); color: var(--ivory); }

/* --- NAVBAR & HAMBURGER STYLES --- */
header {
    background-color: var(--ivory);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(7,31,23,0.08);
}

/* ======================================================
   NAVBAR (layouts/app.blade.php)
   Prefix "nv-". Warna: zamrud gelap + emas, garis tipis emas
   di bawah navbar sebagai penanda "istana".
====================================================== */
.nv-navbar {
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    background-color: var(--ivory);
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 2px 0 var(--gold-600), 0 4px 20px rgba(7,31,23,0.06);
    border-bottom: none;
}
.nv-navbar .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
}

.nv-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nv-brand img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-600);
    padding: 2px;
    box-shadow: 0 4px 14px rgba(169,121,27,0.25);
}
.nv-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.nv-brand-text .nv-brand-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--em-900);
    letter-spacing: 0.02em;
}
.nv-brand-text .nv-brand-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-700);
}

.nv-toggler {
    border: 1.5px solid var(--line-gold) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    box-shadow: none !important;
}
.nv-toggler i {
    color: var(--em-800);
    font-size: 1.1rem;
}

.nv-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.55rem 1rem !important;
    border-radius: 4px;
    transition: all 0.25s ease;
    position: relative;
}
.nv-link i {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s ease;
}
.nv-link:hover, .nv-link.active {
    background-color: var(--gold-100);
    color: var(--em-900) !important;
}
.nv-link:hover i, .nv-link.active i {
    color: var(--gold-700);
}

.nv-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
    color: var(--ivory) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    border: 1px solid var(--gold-800);
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: all 0.25s ease;
}
.nv-user-btn:hover {
    background: linear-gradient(135deg, var(--gold-700), var(--em-900));
    color: var(--ivory);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(169,121,27,0.4);
}
.nv-user-btn.active {
    background: linear-gradient(135deg, var(--gold-700), var(--em-900));
}

@media (max-width: 991px) {
    .nv-link { border-radius: 6px; }
    .nv-user-btn { justify-content: center; margin-top: 8px; width: 100%; }
}

/* --- BERANDA (HERO) STYLES --- */
.hero {
    height: 88vh;
    background:
        var(--pattern-gold),
        linear-gradient(180deg, rgba(7,31,23,0.55) 0%, rgba(7,31,23,0.78) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--ivory);
    padding: 0 20px;
    margin-top: 74px;
    position: relative;
}
.hero::before{
    content:"";
    position:absolute; left:0; right:0; top:0;
    height:5px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep), var(--gold-500), var(--maroon));
    background-size: 200% 100%;
    animation: meriah-shimmer 6s linear infinite;
}
.hero::after{
    content:"";
    position:absolute; left:0; right:0; bottom:0;
    height:5px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep), var(--gold-500), var(--maroon));
    background-size: 200% 100%;
    animation: meriah-shimmer 6s linear infinite reverse;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.3rem;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.hero p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    margin-bottom: 30px;
    max-width: 650px;
    color: rgba(251,248,240,0.88);
}

.cta-btn {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory);
    padding: 15px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid var(--gold-300);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(169,121,27,0.4);
}

/* --- GENERAL CONTAINER & CARDS STYLES --- */
.container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--em-900);
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep));
}
.section-title h2::before {
    content: '\2726';
    display: block;
    color: var(--gold-600);
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 0.4em;
}

.section-title p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted);
    margin-top: 12px;
    font-size: 1.1rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.card::before{
    content:"";
    position:absolute; left:0; right:0; top:0; height:4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.card:hover::before{ transform: scaleX(1); }

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: var(--line-gold);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-bottom: 10px;
    color: var(--em-900);
    font-size: 1.1rem;
}

.card-body p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background-color: var(--gold-100);
    color: var(--gold-800);
    padding: 4px 13px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid var(--line-gold);
    position: relative;
    overflow: hidden;
}
.badge::after{
    content:"";
    position:absolute; top:0; bottom:0; left:0; width:40px;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.55), transparent);
    animation: meriah-shimmer 3.2s ease-in-out infinite;
}

/* ---------- STATUS BUKA/TUTUP (kartu destinasi) ---------- */
.card-img-wrap {
    position: relative;
}

.dest-status {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(251,248,240,0.4);
    letter-spacing: 0.02em;
}
.dest-status i { font-size: 7px; }
.dest-status-buka {
    background-color: rgba(251, 248, 240, 0.92);
    color: var(--em-800);
}
.dest-status-buka i { color: #22c55e; animation: meriah-pulse 1.8s infinite; border-radius: 50%; }
.dest-status-tutup {
    background-color: rgba(30, 27, 20, 0.85);
    color: var(--gold-300);
}
.dest-status-tutup i { color: var(--gold-500); }

/* --- TENTANG ACEH STYLES --- */
.about-section {
    background-color: var(--ivory);
    border-radius: 8px;
    padding: 55px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: var(--shadow-deep);
    border: 3px solid var(--ivory);
    outline: 1px solid var(--line-gold);
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--em-900);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-size: 1rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 26px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--paper);
    padding: 16px;
    border-radius: 5px;
    border-left: 3px solid var(--gold-600);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.feature-box i {
    font-size: 1.8rem;
    color: var(--gold-700);
}
.about-features .feature-box:nth-child(2) { border-left-color: var(--maroon); }
.about-features .feature-box:nth-child(2) i { color: var(--maroon); }
.about-features .feature-box:nth-child(3) { border-left-color: var(--teal-deep); }
.about-features .feature-box:nth-child(3) i { color: var(--teal-deep); }
.about-features .feature-box:nth-child(4) { border-left-color: var(--em-700); }
.about-features .feature-box:nth-child(4) i { color: var(--em-700); }

.feature-box div h4 {
    font-size: 1rem;
    color: var(--em-900);
}

.feature-box div p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    text-align: left;
}

/* --- FOOTER & KONTAK STYLES --- */
footer {
    background: var(--pattern-gold), linear-gradient(180deg, var(--em-900), var(--em-950));
    color: rgba(251,248,240,0.72);
    padding-top: 64px;
    margin-top: 100px;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep), var(--gold-500), var(--maroon)) 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--gold-300);
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 38px;
    height: 2px;
    background-color: var(--gold-600);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 15px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: rgba(251,248,240,0.72);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--gold-300);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-info i { color: var(--gold-500); margin-top: 4px; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(251,248,240,0.06);
    border: 1px solid rgba(217,185,74,0.25);
    color: var(--gold-300);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background-color: var(--gold-600);
    color: var(--em-950);
    border-color: var(--gold-600);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--em-950);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(217,185,74,0.15);
}

.footer-bottom p { font-size: 0.9rem; color: rgba(251,248,240,0.4); }

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 900px) {
    .about-section { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links { width: 85%; max-width: 320px; }
    .about-features { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .about-section { padding: 28px; }
}

/* ======================================================
   DESTINASI DETAIL — palet zamrud + emas, ornamen "istana"
   Prefix "dd-". Bungkus HTML halaman detail dengan <div class="dd-page">
====================================================== */

.dd-page {
    --dd-sand: var(--paper);
    --dd-foam: var(--ivory);
    --dd-ink: var(--ink);
    --dd-ocean: var(--em-800);
    --dd-ocean-deep: var(--em-950);
    --dd-lagoon: var(--gold-500);
    --dd-coral: var(--gold-700);
    --dd-line: var(--line);

    max-width: 100%;
    margin: 70px 0 0;
    background: var(--dd-sand);
    color: var(--dd-ink);
    border-radius: 0;
    overflow: hidden;
}

.dd-dive-profile { width: 100%; display: block; line-height: 0; }
.dd-dive-profile svg { width: 100%; height: 36px; display: block; }

/* hero */
.dd-hero {
    position: relative;
    background: linear-gradient(160deg, var(--em-900), var(--dd-ocean-deep));
    color: #F3EEDD;
    padding: 3.6rem 2.5rem 0;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-600);
}
.dd-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2.6rem;
}
.dd-hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dd-lagoon);
    margin-bottom: 0.9rem;
}
.dd-hero h1 {
    font-weight: 700;
    font-size: clamp(2.3rem, 5.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #FBF8F0;
}
.dd-hero p.dd-tagline {
    margin-top: 1rem;
    max-width: 46ch;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(243,238,221,0.8);
}
.dd-hero-coords {
    font-size: 12px;
    color: var(--dd-lagoon);
    text-align: right;
    line-height: 1.6;
}
.dd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.8rem;
    font-size: 12.5px;
    color: #F3EEDD;
}

/* gauge / quick info bar */
.dd-gauge-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dd-foam);
    border-bottom: 1px solid var(--dd-line);
}
.dd-gauge-bar div {
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--dd-line);
}
.dd-gauge-bar div:last-child { border-right: none; }
.dd-gauge-bar .dd-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-700);
    opacity: 0.9;
    margin-bottom: 4px;
}
.dd-gauge-bar .dd-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--dd-ink);
}

/* sections */
.dd-section { padding: 2.8rem 2.5rem; }
.dd-section-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dd-coral);
    margin-bottom: 0.9rem;
}
.dd-section-heading {
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--dd-ocean-deep);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
.dd-about p { max-width: 62ch; color: var(--ink-soft); font-size: 1rem; }
.dd-about p + p { margin-top: 0.9rem; }

/* spots grid */
.dd-spots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.dd-spot {
    border-radius: 6px;
    padding: 1.2rem 1.3rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #F6EBC4;
    border: 1px solid rgba(217,185,74,0.25);
}
.dd-spot .dd-name { font-weight: 600; font-size: 16px; }
.dd-spot .dd-depth { font-size: 11px; margin-top: 4px; opacity: 0.85; }
.dd-spot:nth-child(1) { background: linear-gradient(160deg, var(--em-800), var(--em-950)); }
.dd-spot:nth-child(2) { background: linear-gradient(160deg, var(--gold-700), var(--em-900)); }
.dd-spot:nth-child(3) { background: linear-gradient(160deg, var(--em-700), var(--em-950)); }
.dd-spot:nth-child(4) { background: linear-gradient(160deg, var(--gold-800), var(--em-950)); }

/* link kecil (mis. "Tulis Ulasan") */
.dd-link-btn {
    background: none;
    border: none;
    color: var(--dd-ocean);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}
.dd-link-btn:hover { color: var(--gold-700); }

.dd-main-row { border-top: 1px solid var(--dd-line); }
.dd-content-col { border-right: 1px solid var(--dd-line); }
.dd-sidebar-col { background: var(--dd-foam); }

/* ---------- ULASAN ---------- */
.dd-review-item {
    display: flex;
    gap: 14px;
    padding: 1.1rem 0;
    border-top: 1px solid var(--dd-line);
}
.dd-review-item:first-of-type { border-top: none; }

.dd-review-avatar {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--em-800), var(--em-950));
    color: var(--gold-300);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-gold);
}

.dd-review-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dd-review-name { font-weight: 600; font-size: 14.5px; color: var(--dd-ink); }
.dd-review-stars { color: var(--gold-600); font-size: 12px; letter-spacing: 1px; }
.dd-review-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.dd-review-body p { margin-top: 6px; font-size: 14px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- BOOKING SIDEBAR ---------- */
.dd-booking-card {
    margin: 2.6rem 2rem 2.6rem 0;
    padding: 1.9rem;
    background: linear-gradient(165deg, var(--em-900), var(--em-950));
    border: 1px solid var(--gold-800);
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    color: #F3EEDD;
}

.dd-price-block {
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px dashed rgba(217,185,74,0.3);
}
.dd-price { font-family: 'Cinzel', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold-300); }
.dd-price span { font-size: 13px; font-weight: 500; color: rgba(243,238,221,0.6); margin-left: 4px; }

.dd-form-group { margin-bottom: 1rem; }
.dd-form-group label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold-300);
    opacity: 0.85;
    margin-bottom: 6px;
    font-weight: 600;
}
.dd-input {
    width: 100%;
    padding: 0.62rem 0.78rem;
    border: 1px solid rgba(217,185,74,0.3);
    border-radius: 4px;
    font-size: 14px;
    color: var(--ivory);
    background: rgba(251,248,240,0.06);
}
.dd-input::placeholder{ color: rgba(243,238,221,0.4); }
.dd-input:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(251,248,240,0.1);
}

.dd-book-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--em-950);
    border: none;
    font-weight: 700;
    font-size: 14.5px;
    padding: 0.92rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-gold);
}
.dd-book-btn:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); transform: translateY(-1px); }

.dd-instant-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 11.5px;
    color: rgba(243,238,221,0.55);
}
.dd-instant-badge i { color: var(--gold-500); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .dd-content-col { border-right: none; border-bottom: 1px solid var(--dd-line); }
    .dd-booking-card { margin: 2rem 1.4rem; }
}
@media (max-width: 640px) {
    .dd-booking-card { margin: 1.6rem; padding: 1.4rem; }
    .dd-review-item { gap: 10px; }
}

/* facilities */
.dd-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dd-line);
    border: 1px solid var(--dd-line);
    border-radius: 6px;
    overflow: hidden;
}
.dd-facility { background: var(--dd-foam); padding: 1.1rem 1.2rem; }
.dd-facility .dd-name { font-weight: 600; font-size: 14.5px; color: var(--dd-ink); }
.dd-facility .dd-desc { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* location */
.dd-location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.dd-map-plate {
    background: linear-gradient(160deg, var(--em-900), var(--em-950));
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--gold-800);
}
.dd-map-plate svg { width: 100%; height: 100%; }
.dd-addr .dd-label {
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 6px;
}
.dd-addr p { font-size: 14.5px; margin-bottom: 1.1rem; color: var(--ink-soft); }

/* CTA */
.dd-cta {
    background: var(--pattern-gold), linear-gradient(120deg, var(--em-900), var(--em-950));
    padding: 2.8rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    border-top: none;
}
.dd-cta::before{
    content:"";
    position:absolute; left:0; right:0; top:0; height:4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep), var(--gold-500), var(--maroon));
    background-size: 200% 100%;
    animation: meriah-shimmer 6s linear infinite;
}
.dd-cta h3 { font-weight: 600; font-size: 1.4rem; color: #FBF8F0; max-width: 22ch; }
.dd-cta-btn {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--em-950);
    border: none;
    font-weight: 700;
    font-size: 14px;
    padding: 0.88rem 1.7rem;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}
.dd-cta-btn:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); }

.dd-footer-note { padding: 1.6rem 2.5rem; font-size: 11px; color: var(--muted); }

@media (max-width: 640px) {
    .dd-gauge-bar { grid-template-columns: repeat(2, 1fr); }
    .dd-gauge-bar div:nth-child(2) { border-right: none; }
    .dd-facilities-grid { grid-template-columns: 1fr; }
    .dd-location-card { grid-template-columns: 1fr; }
    .dd-spots { grid-template-columns: 1fr; }
    .dd-section { padding: 2rem 1.4rem; }
    .dd-hero { padding: 2.4rem 1.4rem 0; }
    .dd-cta { padding: 2rem 1.4rem; }
}

/* ---------- TOMBOL HAPUS DESTINASI ---------- */
.dd-delete-form { display: inline-block; }

.dd-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold-100);
    color: var(--gold-800);
    border: 1.5px solid var(--gold-600);
    font-weight: 600;
    font-size: 14px;
    padding: 0.65rem 1.3rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.dd-delete-btn i { font-size: 13px; }
.dd-delete-btn:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.dd-delete-btn:active { transform: translateY(0); }

/* ---------- MODAL KONFIRMASI HAPUS (dd-page) ---------- */
.dd-confirm-modal { border: none; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-deep); }
.dd-confirm-modal .modal-body { padding: 2.6rem 2.2rem 2.2rem; }
.dd-confirm-icon {
    width: 68px; height: 68px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--gold-100);
    color: var(--gold-800);
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-gold);
}
.dd-confirm-modal h4 { font-weight: 700; font-size: 1.3rem; color: var(--em-950); margin-bottom: 0.6rem; }
.dd-confirm-modal p { font-size: 0.92rem; color: var(--muted); max-width: 34ch; margin: 0 auto 1.8rem; }
.dd-confirm-modal p strong { color: var(--ink); }
.dd-confirm-actions { display: flex; justify-content: center; gap: 12px; }
.dd-confirm-cancel {
    background: transparent; border: 1.5px solid #d8d2c0; color: var(--muted);
    font-weight: 600; font-size: 0.92rem; padding: 0.7rem 1.6rem; border-radius: 4px; cursor: pointer;
    transition: all 0.2s ease;
}
.dd-confirm-cancel:hover { background-color: var(--paper); color: var(--ink); border-color: var(--muted); }
.dd-confirm-delete {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory); border: none; font-weight: 700; font-size: 0.92rem;
    padding: 0.7rem 1.6rem; border-radius: 4px; cursor: pointer; box-shadow: var(--shadow-gold);
    transition: all 0.2s ease;
}
.dd-confirm-delete:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(169,121,27,0.4); }

@media (max-width: 480px) {
    .dd-confirm-actions { flex-direction: column-reverse; }
    .dd-confirm-cancel, .dd-confirm-delete { width: 100%; justify-content: center; }
}

/* ======================================================
   FORM TAMBAH DESTINASI (destinasi-create / user-create /
   user-edit — semua form pakai skema "dc-")
====================================================== */

.dc-wrapper {
    background: var(--pattern-gold), linear-gradient(180deg, var(--gold-100) 0%, var(--paper) 240px);
    min-height: 100vh;
    padding-top: 5px;
    padding-bottom: 60px;
}

.dc-breadcrumb { font-size: 13.5px; margin-bottom: 24px; }
.dc-breadcrumb a { color: var(--gold-700); text-decoration: none; font-weight: 600; }
.dc-breadcrumb a:hover { text-decoration: underline; }
.dc-breadcrumb span { color: var(--muted); margin: 0 6px; }
.dc-breadcrumb .dc-current { color: var(--ink-soft); }

.dc-page-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.dc-page-icon {
    width: 54px; height: 54px; flex: none;
    background: linear-gradient(135deg, var(--em-800), var(--em-950));
    color: var(--gold-300);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--gold-800);
}
.dc-page-header h2 { font-size: 1.6rem; color: var(--em-900); margin-bottom: 2px; }
.dc-page-header p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.dc-card {
    background: var(--ivory);
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.dc-card .card-body { padding: 2.4rem; }

.dc-card .alert-danger {
    background-color: #FBEFE0;
    border: 1px solid var(--gold-500);
    color: var(--gold-800);
    border-radius: 5px;
    font-size: 0.9rem;
}

.dc-form .form-label {
    font-weight: 600; font-size: 0.85rem; color: var(--em-900);
    letter-spacing: 0.02em; display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.dc-form .form-label i { color: var(--gold-600); font-size: 0.9rem; }

.dc-form .form-control {
    border: 1.5px solid var(--line);
    border-radius: 5px;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: var(--paper);
}
.dc-form .form-control:focus {
    border-color: var(--gold-600);
    box-shadow: 0 0 0 4px rgba(201,162,39,0.14);
    background-color: var(--ivory);
}
.dc-form .form-text { font-size: 0.78rem; color: var(--muted); margin-top: 5px; }

.dc-divider { border: none; border-top: 1px dashed var(--line); margin: 1.8rem 0; }

.dc-actions { display: flex; gap: 12px; margin-top: 1.5rem; }
.dc-btn-save {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.8rem;
    border-radius: 4px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-gold);
}
.dc-btn-save:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); transform: translateY(-2px); }

.dc-btn-cancel {
    background: transparent;
    color: var(--muted);
    border: 1.5px solid #d8d2c0;
    font-weight: 600; font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s ease;
}
.dc-btn-cancel:hover { background-color: var(--paper); color: var(--ink); border-color: var(--muted); }

.dc-tips-card {
    background: linear-gradient(165deg, var(--em-900), var(--em-950));
    color: rgba(243,238,221,0.9);
    border-radius: 8px;
    padding: 1.9rem;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--gold-800);
}
.dc-tips-card h5 {
    font-family: 'Cinzel', serif;
    font-size: 1rem; font-weight: 600; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
    color: var(--gold-300);
}
.dc-tips-card ul { list-style: none; padding: 0; margin: 0; }
.dc-tips-card ul li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.85rem; line-height: 1.55; margin-bottom: 14px;
    color: rgba(243,238,221,0.82);
}
.dc-tips-card ul li i { color: var(--gold-500); margin-top: 3px; flex: none; }
.dc-tips-badge {
    display: inline-block;
    background: rgba(217,185,74,0.14);
    border: 1px solid rgba(217,185,74,0.25);
    padding: 4px 12px; border-radius: 4px; font-size: 0.75rem; margin-top: 6px;
    color: var(--gold-300);
}

@media (max-width: 991px) { .dc-tips-card { position: static; margin-top: 24px; } }

/* ---------- Aksen khusus form EDIT ---------- */
.dc-edit-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background-color: var(--gold-100);
    color: var(--gold-800);
    border: 1px solid var(--line-gold);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.dc-page-icon.dc-icon-edit {
    background: linear-gradient(135deg, var(--gold-700), var(--gold-800));
    color: var(--em-950);
    box-shadow: var(--shadow-gold);
}
.dc-btn-save.dc-btn-update {
    background: linear-gradient(135deg, var(--gold-700), var(--gold-800));
}
.dc-btn-save.dc-btn-update:hover { background: linear-gradient(135deg, var(--gold-600), var(--gold-700)); }
.dc-tips-card.dc-tips-edit { background: linear-gradient(165deg, var(--gold-800), var(--em-950)); }
.dc-tips-card.dc-tips-edit ul li i { color: var(--gold-300); }

.dc-tips-card ul li span { flex: 1; }
.dc-tips-card ul li code {
    background: rgba(217,185,74,0.16);
    border: 1px solid rgba(217,185,74,0.3);
    color: var(--gold-300);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.8em;
}

.dc-price-group .input-group-text {
    border: 1.5px solid var(--line);
    border-right: none;
    border-radius: 5px 0 0 5px;
    background-color: var(--paper);
    color: var(--gold-700);
    font-weight: 700;
    font-size: 0.9rem;
}
.dc-price-group .form-control {
    border-radius: 0 5px 5px 0;
}

/* ======================================================
   FAQ & HUBUNGI KAMI (layouts/app.blade.php)
====================================================== */

.faq-box {
    background: var(--ivory);
    border-radius: 8px;
    padding: 1.3rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}
.faq-box .accordion-item { border: none; border-bottom: 1px solid var(--line); background: transparent; }
.faq-box .accordion-item:last-child { border-bottom: none; }
.faq-box .accordion-button {
    font-weight: 600; font-size: 1rem; color: var(--em-900);
    background: transparent; padding: 1.2rem 0.2rem; box-shadow: none;
}
.faq-box .accordion-button:not(.collapsed) { background: transparent; color: var(--gold-700); box-shadow: none; }
.faq-box .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-box .accordion-button::after { background-size: 1.1rem; }
.faq-box .accordion-body { padding: 0 0.2rem 1.4rem; color: var(--ink-soft); font-size: 0.95rem; }

.kontak-box {
    background: var(--ivory);
    border-radius: 8px;
    padding: 2.3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}
.kontak-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.kontak-info-item i {
    flex: none; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    background-color: var(--gold-100); color: var(--gold-700); border-radius: 50%; font-size: 1.05rem;
}
.kontak-info-item h6 { margin-bottom: 3px; color: var(--em-900); font-weight: 700; font-size: 0.9rem; }
.kontak-info-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.kontak-form .form-label { font-weight: 600; font-size: 0.85rem; color: var(--em-900); margin-bottom: 6px; }
.kontak-form .form-control,
.kontak-form textarea.form-control {
    border: 1.5px solid var(--line);
    border-radius: 5px; padding: 0.65rem 0.9rem; font-size: 0.95rem;
    background-color: var(--paper); transition: all 0.2s ease;
}
.kontak-form .form-control:focus {
    border-color: var(--gold-600);
    box-shadow: 0 0 0 4px rgba(201,162,39,0.14);
    background-color: var(--ivory); outline: none;
}
.kontak-submit-btn {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory); border: none; font-weight: 700; font-size: 0.95rem;
    padding: 0.75rem 1.8rem; border-radius: 4px;
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    transition: all 0.25s ease; box-shadow: var(--shadow-gold);
}
.kontak-submit-btn:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); transform: translateY(-2px); }

@media (max-width: 576px) { .faq-box { padding: 1rem 1.2rem; } .kontak-box { padding: 1.4rem; } }

/* ======================================================
   HALAMAN DESTINASI (destinasi.blade.php) — prefix "des-"
====================================================== */

.hero-destinasi {
    background: linear-gradient(rgba(7,31,23,0.6), rgba(7,31,23,0.8)),
                url('https://ik.imagekit.io/tvlk/blog/2020/01/01-Pucok-Krueng.jpg') center/cover no-repeat;
}

.des-breadcrumb-wrap { max-width: 1200px; margin: -26px auto 0; padding: 0 20px; }

.des-breadcrumb {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ivory);
    padding: 10px 22px; border-radius: 4px;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--line-gold);
    font-size: 13.5px; position: relative; z-index: 2;
}
.des-breadcrumb a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--em-800); text-decoration: none; font-weight: 600; transition: color 0.2s ease;
}
.des-breadcrumb a:hover { color: var(--gold-700); }
.des-breadcrumb a i { font-size: 12px; }
.des-breadcrumb-sep { font-size: 9px; color: var(--muted); }
.des-breadcrumb-current { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-700); font-weight: 700; }
.des-breadcrumb-current i { font-size: 12px; }

@media (max-width: 576px) {
    .des-breadcrumb-wrap { margin-top: -20px; }
    .des-breadcrumb { padding: 8px 14px; font-size: 12.5px; }
}

.des-advantages-wrap { margin: 32px auto 0; }
.des-advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 992px) { .des-advantages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .des-advantages { grid-template-columns: 1fr; } }

.des-cta {
    background: var(--pattern-gold), linear-gradient(135deg, var(--em-900), var(--em-950));
    padding: 3.2rem 0;
    margin-top: 4rem;
    position: relative;
}
.des-cta::before{
    content:"";
    position:absolute; left:0; right:0; top:0; height:4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep), var(--gold-500), var(--maroon));
    background-size: 200% 100%;
    animation: meriah-shimmer 6s linear infinite;
}
.des-cta-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.des-cta-inner h3 { color: #FBF8F0; font-size: 1.5rem; margin-bottom: 6px; }
.des-cta-inner p { color: rgba(251,248,240,0.72); margin: 0; max-width: 520px; }
.des-cta-inner .cta-btn { flex: none; }

@media (max-width: 576px) { .des-cta-inner { text-align: center; justify-content: center; } }

/* ======================================================
   HALAMAN TENTANG (tentang.blade.php) — prefix "tn-"
====================================================== */

.hero-tentang {
    background: linear-gradient(rgba(7,31,23,0.6), rgba(7,31,23,0.8)),
                url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQsnOkPFZRUZLhmWoWr5a65L2lKUsumlhOVfiuIyTy-2OKZTChzhWPdHJ0&s=10') center/cover no-repeat;
}

.tn-history-section {
    background: var(--ivory);
    border-radius: 8px;
    padding: 55px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.tn-history-image img {
    width: 100%; border-radius: 6px; object-fit: cover; box-shadow: var(--shadow-deep);
    border: 3px solid var(--ivory); outline: 1px solid var(--line-gold);
}

.tn-timeline { position: relative; padding-left: 34px; }
.tn-timeline::before {
    content: ''; position: absolute; left: 9px; top: 4px; bottom: 4px; width: 2px;
    background: linear-gradient(180deg, var(--gold-600), var(--line-gold));
}
.tn-timeline-item { position: relative; padding-bottom: 26px; }
.tn-timeline-item:last-child { padding-bottom: 0; }
.tn-timeline-dot {
    position: absolute; left: -34px; top: 2px; width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--em-950);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700;
    box-shadow: 0 0 0 4px var(--gold-100);
}
.tn-timeline-year {
    font-family: 'Cinzel', serif;
    font-weight: 700; color: var(--gold-700); font-size: 0.78rem;
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px;
}
.tn-timeline-title { font-weight: 700; color: var(--em-900); font-size: 1.05rem; margin-bottom: 4px; }
.tn-timeline-desc { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 900px) { .tn-history-section { grid-template-columns: 1fr; padding: 26px; } }

.tn-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tn-stat-card {
    background: var(--ivory);
    border-radius: 8px;
    padding: 1.9rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tn-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); border-color: var(--line-gold); }
.tn-stat-card:hover i { animation: meriah-float 1.4s ease-in-out infinite; }
.tn-stat-card i { font-size: 1.8rem; color: var(--gold-700); margin-bottom: 10px; }
.tn-stat-card:nth-child(2) i { color: var(--maroon); }
.tn-stat-card:nth-child(3) i { color: var(--teal-deep); }
.tn-stat-card:nth-child(4) i { color: var(--em-700); }
.tn-stat-card h3 { font-size: 1.3rem; color: var(--em-900); margin-bottom: 4px; }
.tn-stat-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }
@media (max-width: 768px) { .tn-stats { grid-template-columns: repeat(2, 1fr); } }

.tn-advantages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .tn-advantages { grid-template-columns: 1fr; } }

.tn-culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tn-culture-card {
    background: var(--ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tn-culture-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: var(--line-gold); }
.tn-culture-card img { width: 100%; height: 160px; object-fit: cover; }
.tn-culture-body { padding: 16px; }
.tn-culture-body h4 { font-size: 1rem; color: var(--em-900); margin-bottom: 4px; }
.tn-culture-body p { font-size: 0.85rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .tn-culture-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tn-culture-grid { grid-template-columns: 1fr; } }

.hero-kuliner {
    background: linear-gradient(rgba(7,31,23,0.6), rgba(7,31,23,0.8)),
                url('https://image.idn.media/post/20260413/upload_afeeaa6165a62bfeab5a173a0f776034_005ebfdf-dd47-4069-878e-d6ba8f1db98e.jpg') center/cover no-repeat;
}

/* ======================================================
   KEUNGGULAN KULINER (kuliner.blade.php) — prefix "kn-"
====================================================== */
.kn-advantages-wrap { margin-top: 40px; }
.kn-advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.kn-advantage-card {
    background: var(--ivory);
    border-radius: 8px;
    padding: 1.9rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.kn-advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: var(--line-gold); }
.kn-advantage-card:hover i { animation: meriah-float 1.4s ease-in-out infinite; }
.kn-advantage-card i { font-size: 1.9rem; color: var(--gold-700); margin-bottom: 12px; }
.kn-advantages .kn-advantage-card:nth-child(2) i { color: var(--maroon); }
.kn-advantages .kn-advantage-card:nth-child(3) i { color: var(--teal-deep); }
.kn-advantages .kn-advantage-card:nth-child(4) i { color: var(--em-700); }
.kn-advantage-card h3 { font-size: 1.05rem; color: var(--em-900); margin-bottom: 8px; }
.kn-advantage-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

@media (max-width: 992px) { .kn-advantages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .kn-advantages { grid-template-columns: 1fr; } }

/* Kartu foto generik */
.kartu-foto { height: 220px; object-fit: cover; }
.kartu-deskripsi {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}
.kartu-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.kartu-hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep) !important; }

/* ======================================================
   PERBAIKAN & PELENGKAP HALAMAN DESTINASI
====================================================== */

.btn-primary { background-color: var(--em-800); border-color: var(--em-800); }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--em-950) !important; border-color: var(--em-950) !important;
}
.form-control:focus { border-color: var(--gold-600); box-shadow: 0 0 0 0.2rem rgba(201,162,39,0.16); }

.des-search-form { max-width: 480px; margin: 0 auto 40px; }
.des-search-form .input-group {
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line);
}
.des-search-form .input-group-text { background-color: var(--ivory); border: none; color: var(--gold-700); padding-left: 1.2rem; }
.des-search-form .form-control { border: none; padding: 0.75rem 0.6rem; box-shadow: none; background: var(--ivory); }
.des-search-form .form-control:focus { box-shadow: none; }
.des-search-form .btn-primary { border-radius: 0; padding: 0.75rem 1.6rem; font-weight: 600; }

.card-body .badge { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px; }

.card-meta {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    margin: 4px 0 16px; padding-top: 12px; border-top: 1px dashed var(--line);
    font-size: 0.82rem; color: var(--muted);
}
.card-meta .location, .card-meta .jam { display: inline-flex; align-items: center; gap: 6px; }
.card-meta .location i, .card-meta .jam i { color: var(--gold-700); }

.btn-detail {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--em-800); font-weight: 700; font-size: 0.9rem; text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}
.btn-detail i { font-size: 0.8rem; transition: transform 0.25s ease; }
.btn-detail:hover { color: var(--gold-700); gap: 12px; }
.btn-detail:hover i { transform: translateX(3px); }

.empty-state {
    grid-column: 1 / -1; text-align: center; padding: 60px 20px;
    background: var(--ivory); border-radius: 8px; box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    color: var(--muted);
}
.empty-state i { font-size: 2.6rem; color: var(--line-gold); margin-bottom: 14px; display: block; }
.empty-state p { margin: 0; font-size: 0.95rem; }

.pagination { gap: 4px; }
.pagination .page-link {
    color: var(--em-800); border: 1px solid var(--line);
    border-radius: 4px !important; font-weight: 600; margin: 0 2px;
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    border-color: var(--gold-700); color: var(--ivory);
}
.pagination .page-item.disabled .page-link { color: #c9c2ac; }
.pagination .page-link:hover { background-color: var(--gold-100); color: var(--gold-800); }

@media (max-width: 480px) {
    .des-search-form { margin-bottom: 30px; }
    .card-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ---------- TOMBOL "SEBELUMNYA" & "SELANJUTNYA" ---------- */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.55rem 1.3rem; border-radius: 30px !important;
    font-weight: 700; font-size: 0;
    color: var(--gold-800);
    background-color: var(--gold-100);
    border: 1px solid var(--line-gold);
    transition: all 0.25s ease;
}
.pagination .page-item:first-child .page-link::before {
    content: "\f104"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.8rem;
}
.pagination .page-item:first-child .page-link::after { content: "Sebelumnya"; font-size: 0.85rem; }
.pagination .page-item:last-child .page-link::before { content: "Selanjutnya"; font-size: 0.85rem; }
.pagination .page-item:last-child .page-link::after {
    content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.8rem;
}
.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    border-color: var(--gold-700); color: var(--ivory);
}
.pagination .page-item.disabled:first-child .page-link,
.pagination .page-item.disabled:last-child .page-link {
    background-color: var(--paper); border-color: var(--line); color: #c9c2ac;
    cursor: not-allowed;
}
.pagination .page-item.disabled:first-child .page-link:hover,
.pagination .page-item.disabled:last-child .page-link:hover {
    background-color: var(--paper); color: #c9c2ac;
}
.pagination .page-item:nth-child(2) .page-link { margin-left: 8px; }
.pagination .page-item:nth-last-child(2) .page-link { margin-right: 8px; }

@media (max-width: 480px) {
    .pagination .page-item:first-child .page-link::after,
    .pagination .page-item:last-child .page-link::before { display: none; }
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link { padding: 0.55rem 0.9rem; }
}

/* ======================================================
   MANAJEMEN USER — prefix "uz-"
====================================================== */

.uz-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--em-800), var(--em-950));
    color: var(--gold-300);
    font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    border: 1px solid var(--line-gold);
}

.uz-table tbody tr { transition: background-color 0.15s ease-in-out; }

.uz-btn-action {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.4rem 0.9rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600;
    border: 1.5px solid var(--line); color: var(--ink-soft);
    background: var(--ivory); text-decoration: none; cursor: pointer; transition: all 0.2s ease;
}
.uz-btn-action.uz-edit:hover { background-color: var(--em-900); border-color: var(--em-900); color: var(--ivory); }
.uz-btn-action.uz-delete:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    border-color: var(--gold-700); color: var(--ivory);
}

.des-search-form .input-group-text { color: var(--gold-700); }

/* ---------- Zona Berbahaya ---------- */
.uz-danger-zone {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    background: var(--gold-100);
    border: 1px solid var(--line-gold);
    border-left: 4px solid var(--gold-700);
    border-radius: 6px; padding: 1.2rem 1.5rem;
}
.uz-danger-text h6 {
    color: var(--gold-800); font-weight: 700; font-size: 0.92rem;
    display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.uz-danger-text p { color: var(--ink-soft); font-size: 0.83rem; margin: 0; max-width: 46ch; }

.uz-btn-danger-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ivory); color: var(--gold-800);
    border: 1.5px solid var(--gold-600);
    font-weight: 700; font-size: 0.88rem; padding: 0.6rem 1.3rem; border-radius: 30px;
    cursor: pointer; white-space: nowrap; transition: all 0.2s ease;
}
.uz-btn-danger-outline:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory); transform: translateY(-1px); box-shadow: var(--shadow-gold);
}

/* ---------- Modal Konfirmasi Hapus ---------- */
.uz-delete-modal { border: none; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-deep); }
.uz-modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.uz-delete-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold-100); color: var(--gold-800);
    font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-gold);
}
.uz-delete-modal h4 { color: var(--em-950); font-weight: 700; }

.uz-btn-danger {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory); border: none; font-weight: 700; font-size: 0.95rem;
    padding: 0.75rem 1.6rem; border-radius: 4px; cursor: pointer;
    transition: all 0.25s ease; box-shadow: var(--shadow-gold);
}
.uz-btn-danger:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); transform: translateY(-2px); }

@media (max-width: 576px) {
    .uz-danger-zone { flex-direction: column; align-items: flex-start; }
    .uz-btn-danger-outline { width: 100%; justify-content: center; }
}

/* ======================================================
   HALAMAN ATRAKSI (atraksi.blade.php) — prefix "at-"
====================================================== */

.at-wrapper { padding-top: 110px; padding-bottom: 70px; min-height: 80vh; }
.at-breadcrumb-wrap { margin: 0 0 28px; padding: 0; }

.at-page-header {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    margin-bottom: 36px;
}
.at-page-header h2 { font-size: 1.55rem; color: var(--em-900); font-weight: 700; margin-bottom: 2px; }
.at-page-header p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.at-card {
    background: var(--ivory);
    border-radius: 8px;
    padding: 1.7rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.at-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: var(--line-gold); }

.at-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

.at-badge {
    display: inline-flex; align-items: center;
    background-color: var(--gold-100); color: var(--gold-800);
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.03em;
    padding: 5px 13px; border-radius: 20px; text-transform: capitalize;
    border: 1px solid var(--line-gold);
}

.at-price { font-size: 0.9rem; font-weight: 700; color: var(--gold-700); }
.at-price.at-price-free {
    color: var(--em-800); background-color: #EAF3EE; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem;
}

.at-card-title { font-size: 1.12rem; font-weight: 700; color: var(--em-900); margin-bottom: 8px; }
.at-card-desc { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.at-card-actions { display: flex; gap: 10px; padding-top: 14px; border-top: 1px dashed var(--line); }
.at-card-actions .uz-btn-action { flex: 1; justify-content: center; }

@media (max-width: 576px) {
    .at-page-header { flex-direction: column; align-items: flex-start; }
    .at-page-header .dc-btn-save { width: 100%; justify-content: center; }
}

/* ============================================================
   ✨ BLOK ANIMASI TAMBAHAN — "MERIAH & MEWAH"
   Ditambahkan di akhir file agar otomatis menang di cascade
   TANPA mengubah nama class apa pun (tidak ada blade yang
   perlu diedit). Semua animasi menghormati
   prefers-reduced-motion (lihat aturan global di atas).
   ============================================================ */

/* ---------- Keyframes baru ---------- */
@keyframes meriah-fade-up{
    from{ opacity:0; transform: translateY(26px); }
    to{ opacity:1; transform: translateY(0); }
}
@keyframes meriah-fade-in{
    from{ opacity:0; }
    to{ opacity:1; }
}
@keyframes meriah-scale-in{
    from{ opacity:0; transform: scale(0.92); }
    to{ opacity:1; transform: scale(1); }
}
@keyframes meriah-title-rise{
    from{ opacity:0; transform: translateY(18px); letter-spacing:0.12em; }
    to{ opacity:1; transform: translateY(0); letter-spacing:0.02em; }
}
@keyframes meriah-underline-grow{
    from{ width:0; opacity:0; }
    to{ width:88px; opacity:1; }
}
@keyframes meriah-glow-pulse{
    0%, 100%{ box-shadow: 0 10px 26px rgba(169,121,27,0.28), 0 0 0 0 rgba(217,185,74,0.0); }
    50%{ box-shadow: 0 10px 30px rgba(169,121,27,0.42), 0 0 22px 4px rgba(217,185,74,0.28); }
}
@keyframes meriah-sparkle{
    0%, 100%{ opacity:0; transform: scale(0.4) rotate(0deg); }
    45%{ opacity:1; transform: scale(1) rotate(90deg); }
    55%{ opacity:1; transform: scale(1) rotate(100deg); }
}
@keyframes meriah-drift{
    0%{ transform: translate3d(0,0,0) rotate(0deg); }
    50%{ transform: translate3d(6px,-10px,0) rotate(6deg); }
    100%{ transform: translate3d(0,0,0) rotate(0deg); }
}
@keyframes meriah-badge-pop{
    0%{ transform: scale(0.85); opacity:0; }
    70%{ transform: scale(1.06); opacity:1; }
    100%{ transform: scale(1); opacity:1; }
}
@keyframes meriah-arrow-nudge{
    0%, 100%{ transform: translateX(0); }
    50%{ transform: translateX(4px); }
}

/* ---------- Hero: masuk bertahap + partikel emas ---------- */
.hero { animation: meriah-fade-in 1s ease both; overflow: hidden; }
.hero h1 { animation: meriah-title-rise 1s cubic-bezier(.22,1,.36,1) 0.15s both; }
.hero p { animation: meriah-fade-up 1s cubic-bezier(.22,1,.36,1) 0.4s both; }
.hero .cta-btn { animation: meriah-fade-up 0.9s cubic-bezier(.22,1,.36,1) 0.65s both, meriah-glow-pulse 2.6s ease-in-out 1.6s infinite; }

/* partikel kecil berkilau melayang di hero, tanpa markup tambahan */
.hero::before{ animation: meriah-shimmer 6s linear infinite; }
.hero { position: relative; }
.hero h1::after,
.hero p::after{ content:none; }

/* titik-titik emas melayang (dekoratif, pure-CSS, tidak menambah markup) */
.hero {
    background-attachment: scroll;
}
.hero > * { position: relative; z-index: 2; }
.hero::marker{ content: none; }

/* lapisan sparkle memakai radial-gradient dots yang berdenyut halus */
.hero {
    isolation: isolate;
}
.hero:after {
    animation: meriah-shimmer 6s linear infinite reverse;
}

/* ---------- Judul seksi: muncul & garis emas tumbuh ---------- */
.section-title h2::after{ animation: meriah-underline-grow 0.9s cubic-bezier(.22,1,.36,1) both; animation-timeline: auto; }
.section-title { animation: meriah-fade-up 0.8s cubic-bezier(.22,1,.36,1) both; }

/* ---------- Kartu destinasi/kuliner: masuk berjenjang ---------- */
.grid-container .card,
.grid-container .at-card,
.grid-container .tn-culture-card {
    animation: meriah-fade-up 0.7s cubic-bezier(.22,1,.36,1) both;
}
.grid-container .card:nth-child(1),  .grid-container .at-card:nth-child(1)  { animation-delay: 0.05s; }
.grid-container .card:nth-child(2),  .grid-container .at-card:nth-child(2)  { animation-delay: 0.14s; }
.grid-container .card:nth-child(3),  .grid-container .at-card:nth-child(3)  { animation-delay: 0.23s; }
.grid-container .card:nth-child(4),  .grid-container .at-card:nth-child(4)  { animation-delay: 0.32s; }
.grid-container .card:nth-child(5),  .grid-container .at-card:nth-child(5)  { animation-delay: 0.41s; }
.grid-container .card:nth-child(6),  .grid-container .at-card:nth-child(6)  { animation-delay: 0.50s; }
.grid-container .card:nth-child(n+7) { animation-delay: 0.55s; }

/* hover kartu jadi lebih hidup: sedikit rotasi + glow emas */
.card:hover, .at-card:hover, .tn-culture-card:hover, .tn-stat-card:hover {
    transform: translateY(-8px) scale(1.012);
}
.card:hover .card-body h3 { color: var(--gold-800); transition: color 0.25s ease; }

/* badge "muncul mekar" + kilau berjalan lebih hidup */
.badge, .at-badge, .dc-edit-badge, .dd-instant-badge {
    animation: meriah-badge-pop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}

/* status buka/tutup: sedikit lebih hidup saat muncul */
.dest-status { animation: meriah-scale-in 0.5s cubic-bezier(.34,1.56,.64,1) both; }

/* ---------- Tombol CTA & aksi utama: kilau berjalan on-hover ---------- */
.cta-btn, .dd-book-btn, .dd-cta-btn, .dc-btn-save, .kontak-submit-btn {
    background-size: 220% 100%;
    background-position: 0% 0%;
    transition: background-position 0.55s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-btn:hover, .dd-book-btn:hover, .dd-cta-btn:hover, .dc-btn-save:hover, .kontak-submit-btn:hover {
    background-position: 100% 0%;
}

/* tombol detail: panah "bernapas" pelan agar terasa mengundang */
.btn-detail:hover i { animation: meriah-arrow-nudge 0.7s ease-in-out infinite; }

/* ---------- Ikon fitur & keunggulan: melayang lembut saat hover (memperkuat efek lama) ---------- */
.feature-box:hover i,
.kn-advantage-card:hover i,
.dc-tips-card ul li:hover i {
    animation: meriah-drift 1.8s ease-in-out infinite;
}

/* ---------- Navbar brand: kilau emas halus di foto profil ---------- */
.nv-brand img { transition: box-shadow 0.35s ease, transform 0.35s ease; }
.nv-brand:hover img {
    box-shadow: 0 4px 20px rgba(169,121,27,0.5), 0 0 0 3px rgba(217,185,74,0.35);
    transform: rotate(-4deg) scale(1.05);
}

/* ---------- Garis emas-maroon-teal shimmer: dipakai lebih luas ---------- */
.dd-hero, .tn-history-section, .about-section {
    position: relative;
}
.dd-hero::before, .tn-history-section::before, .about-section::before {
    content:"";
    position:absolute; left:0; right:0; top:0; height:3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold-500), var(--teal-deep), var(--gold-500), var(--maroon));
    background-size: 200% 100%;
    animation: meriah-shimmer 7s linear infinite;
    opacity: 0.9;
}

/* ---------- Statistik & timeline (tentang.blade.php): masuk berjenjang ---------- */
.tn-stats .tn-stat-card { animation: meriah-fade-up 0.7s cubic-bezier(.22,1,.36,1) both; }
.tn-stats .tn-stat-card:nth-child(1) { animation-delay: 0.05s; }
.tn-stats .tn-stat-card:nth-child(2) { animation-delay: 0.15s; }
.tn-stats .tn-stat-card:nth-child(3) { animation-delay: 0.25s; }
.tn-stats .tn-stat-card:nth-child(4) { animation-delay: 0.35s; }

.tn-timeline-item { animation: meriah-fade-up 0.6s cubic-bezier(.22,1,.36,1) both; }
.tn-timeline-item:nth-child(1) { animation-delay: 0.05s; }
.tn-timeline-item:nth-child(2) { animation-delay: 0.18s; }
.tn-timeline-item:nth-child(3) { animation-delay: 0.31s; }
.tn-timeline-item:nth-child(4) { animation-delay: 0.44s; }
.tn-timeline-item:nth-child(5) { animation-delay: 0.57s; }
.tn-timeline-dot { animation: meriah-glow-pulse 2.4s ease-in-out infinite; }

/* ---------- Footer: garis atas berkilau lebih terasa hidup ---------- */
footer { position: relative; }
footer::before{
    content:"";
    position:absolute; left:0; right:0; top:-4px; height:4px;
    background: inherit;
}

/* ---------- Modal konfirmasi: masuk lembut dengan sedikit bounce ---------- */
.dd-confirm-modal .modal-body,
.uz-delete-modal .modal-body {
    animation: meriah-scale-in 0.35s cubic-bezier(.34,1.56,.64,1) both;
}
.dd-confirm-icon, .uz-delete-icon {
    animation: meriah-badge-pop 0.5s cubic-bezier(.34,1.56,.64,1) 0.05s both;
}

/* ---------- Kartu booking sidebar: sedikit napas emas pada tombol ---------- */
.dd-book-btn { animation: meriah-glow-pulse 3s ease-in-out infinite; }

/* ---------- Empty state: muncul lembut ---------- */
.empty-state { animation: meriah-fade-up 0.6s ease both; }
.empty-state i { animation: meriah-drift 2.4s ease-in-out infinite; }

/* ======================================================
   DASHBOARD ADMIN (dashboard.blade.php) — prefix "ad-"
   Selaras dengan tema Istana & Emas: sidebar zamrud gelap,
   aksen emas untuk link aktif & elemen penting.
====================================================== */

.ad-body { display: flex; min-height: 100vh; margin: 0; background: var(--paper); }

.ad-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--pattern-gold), linear-gradient(180deg, var(--em-900), var(--em-950));
    color: rgba(251,248,240,0.85);
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    border-right: 3px solid var(--gold-600);
}

.ad-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(217,185,74,0.2);
}
.ad-sidebar-brand img {
    width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--gold-600); padding: 2px;
}
.ad-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.ad-brand-title {
    font-family: 'Cinzel', serif; font-weight: 700; font-size: 1rem; color: var(--ivory);
}
.ad-brand-sub {
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.75rem;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-300);
}

.ad-sidebar-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.ad-sidebar-link {
    display: flex; align-items: center; gap: 10px;
    color: rgba(251,248,240,0.82) !important;
    text-decoration: none;
    font-size: 0.92rem; font-weight: 500;
    padding: 0.68rem 0.9rem;
    border-radius: 5px;
    transition: all 0.22s ease;
}
.ad-sidebar-link i { width: 18px; text-align: center; color: var(--gold-500); font-size: 0.9rem; }
.ad-sidebar-link:hover {
    background-color: rgba(251,248,240,0.08);
    color: var(--ivory) !important;
}
.ad-sidebar-link.active {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--em-950) !important;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}
.ad-sidebar-link.active i { color: var(--em-950); }

.ad-sidebar-divider { border: none; border-top: 1px solid rgba(217,185,74,0.2); margin: 1.2rem 0; }

.ad-sidebar-back { color: var(--gold-300) !important; font-weight: 600; }
.ad-sidebar-back i { color: var(--gold-300); }
.ad-sidebar-back:hover { background-color: rgba(217,185,74,0.1); }

.ad-main { flex: 1; background: var(--paper); min-width: 0; }

.ad-topbar {
    background: var(--ivory);
    padding: 1.1rem 1.8rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 0 var(--gold-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.ad-topbar-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--em-900);
    margin: 0;
}

.ad-topbar-user { display: flex; align-items: center; gap: 12px; }
.ad-user-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory); font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gold-800);
}
.ad-topbar-userinfo { display: flex; flex-direction: column; line-height: 1.2; }
.ad-topbar-userinfo strong { font-size: 0.88rem; color: var(--em-900); }
.ad-topbar-userinfo small { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

.ad-content { padding: 1.8rem; }

.ad-alert-success {
    background-color: #EAF3EE;
    border: 1px solid var(--em-700);
    color: var(--em-900);
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 860px) {
    .ad-body { flex-direction: column; }
    .ad-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; padding: 1rem; }
    .ad-sidebar-brand { margin-bottom: 0; border-bottom: none; padding-bottom: 0; margin-right: 1rem; }
    .ad-sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .ad-sidebar-divider, .ad-sidebar-back span { display: none; }
}

/* ---------- Aksesibilitas: tetap hormati reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
    .hero, .hero h1, .hero p, .hero .cta-btn,
    .section-title, .section-title h2::after,
    .grid-container .card, .grid-container .at-card, .grid-container .tn-culture-card,
    .badge, .at-badge, .dc-edit-badge, .dd-instant-badge, .dest-status,
    .tn-stats .tn-stat-card, .tn-timeline-item, .tn-timeline-dot,
    .dd-confirm-modal .modal-body, .uz-delete-modal .modal-body,
    .dd-confirm-icon, .uz-delete-icon, .dd-book-btn, .empty-state, .empty-state i {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@keyframes fadeInUp {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .fade-up {
        opacity: 0;
        animation: fadeInUp .5s ease forwards;
    }

    .delay-1 { animation-delay: .05s; }
    .delay-2 { animation-delay: .12s; }
    .delay-3 { animation-delay: .19s; }
    .delay-4 { animation-delay: .26s; }
    .delay-5 { animation-delay: .33s; }
    .delay-6 { animation-delay: .40s; }

    .dashboard-card {
        border: 0;
        border-radius: 16px;
        transition: transform .25s ease, box-shadow .25s ease;
        overflow: hidden;
    }

    .dashboard-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08) !important;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        transition: transform .3s ease;
    }

    .dashboard-card:hover .stat-icon {
        transform: scale(1.1) rotate(-4deg);
    }

    .icon-destinasi { background: #0E3B3618; color: #0E3B36; }
    .icon-atraksi   { background: #C9A22722; color: #A9800E; }
    .icon-user      { background: #2E7D3218; color: #2E7D32; }
    .icon-ulasan    { background: #0E3B3610; color: #17665d; }

    .chart-card { border: 0; border-radius: 16px; }
    .chart-container { position: relative; height: 300px; }
    .chart-container-sm { position: relative; height: 230px; }

    .welcome-box {
        background: linear-gradient(135deg, #0E3B36, #17665d);
        color: white;
        border-radius: 18px;
        padding: 28px;
        margin-bottom: 24px;
    }

    .welcome-box h4 { font-weight: 700; margin-bottom: 8px; }
    .welcome-box p { margin-bottom: 0; opacity: .85; }

    .stat-label { font-size: 13px; color: #7a7a7a; margin-bottom: 4px; }
    .stat-number { font-size: 30px; font-weight: 700; color: #0E3B36; line-height: 1.2; }

    /* Quick actions */
    .quick-action {
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 14px;
        color: #0E3B36;
        text-decoration: none;
        background: #fff;
        transition: all .2s ease;
    }

    .quick-action:hover {
        background: #0E3B36;
        color: #fff;
        border-color: #0E3B36;
        transform: translateY(-2px);
    }

    .quick-action i { font-size: 17px; }

    /* Chart toggle buttons */
    .chart-toggle .btn {
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 20px;
        border: 1px solid #0E3B3630;
        color: #0E3B36;
        background: #fff;
    }

    .chart-toggle .btn.active {
        background: #0E3B36;
        color: #fff;
        border-color: #0E3B36;
    }

    /* Aktivitas terbaru */
    .activity-item {
        display: flex;
        gap: 14px;
        padding: 13px 0;
        border-bottom: 1px solid #f0f0f0;
        opacity: 0;
        animation: fadeIn .4s ease forwards;
    }

    .activity-item:last-child { border-bottom: 0; }

    .activity-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
    }

    .avatar-daftar { background: #2E7D3218; color: #2E7D32; }
    .avatar-ulasan { background: #0E3B3618; color: #0E3B36; }

    .activity-name { font-weight: 600; color: #0E3B36; font-size: 13.5px; }
    .activity-sub { font-size: 12.5px; color: #777; margin-top: 1px; }
    .activity-comment { font-size: 12.5px; color: #444; margin-top: 3px; font-style: italic; }
    .activity-time { font-size: 11px; color: #b0b0b0; white-space: nowrap; }

    .star-rating i { font-size: 10px; color: #C9A227; }

    /* Rating list */
    .rating-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .rating-row:last-child { border-bottom: 0; }

    .rating-badge {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #0E3B3615;
        color: #0E3B36;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rating-badge.warn { background: #c94d3618; color: #c94d36; }

    .rating-name { font-size: 13.5px; font-weight: 600; color: #333; flex: 1; }

    .rating-score {
        font-size: 12px;
        font-weight: 700;
        color: #C9A227;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .empty-state {
        text-align: center;
        padding: 30px 10px;
        color: #b0b0b0;
        font-size: 13px;
    }

    .empty-state i { font-size: 30px; opacity: .4; display: block; margin-bottom: 8px; }

    .btn-add-destinasi {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #0E3B36, #17665d);
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(14, 59, 54, 0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-add-destinasi::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-25deg);
    transition: left .6s ease;
}

.btn-add-destinasi:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(14, 59, 54, 0.35);
    color: #fff;
}

.btn-add-destinasi:hover::before {
    left: 130%;
}

.btn-add-destinasi:active {
    transform: translateY(-1px) scale(.98);
}

.btn-add-destinasi i {
    font-size: 14px;
    transition: transform .3s ease;
}

.btn-add-destinasi:hover i {
    transform: rotate(90deg);
}

.btn-add-destinasi-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
    animation: fadeSlideDown .5s ease;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dd-admin-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.dd-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: #0E3B36;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid #0E3B36;
    border-radius: 10px;
    text-decoration: none;
    transition: all .25s ease;
}

.dd-edit-btn:hover {
    background: #0E3B36;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- PILL FILTER KATEGORI (destinasi.blade.php) ---------- */
.des-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--em-800);
    background-color: var(--ivory);
    border: 1.5px solid var(--line-gold);
    text-decoration: none;
    transition: all 0.25s ease;
}
.des-filter-pill:hover {
    background-color: var(--gold-100);
    color: var(--gold-800);
    border-color: var(--gold-600);
    transform: translateY(-1px);
}
.des-filter-pill.active {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-800));
    color: var(--ivory);
    border-color: var(--gold-700);
    box-shadow: var(--shadow-gold);
}

/* =========================================================
   ATRAKSI CARD + TOMBOL "LIHAT DETAIL"
   ========================================================= */
.dd-atraksi-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(79,184,174,.15);
    box-shadow:0 2px 10px rgba(20,30,40,.05);
    transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.dd-atraksi-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 32px rgba(20,40,45,.14);
}
.dd-atraksi-img-wrap{
    position:relative;
    overflow:hidden;
    aspect-ratio:4/3;
}
.dd-atraksi-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s cubic-bezier(.22,1,.36,1);
}
.dd-atraksi-card:hover .dd-atraksi-img{
    transform:scale(1.08);
}
.dd-atraksi-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:rgba(20,30,35,.55);
    backdrop-filter:blur(4px);
    color:#fff;
    font-size:.72rem;
    font-weight:600;
    letter-spacing:.02em;
    padding:5px 12px;
    border-radius:999px;
}
.dd-atraksi-body{
    padding:16px 16px 14px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.dd-atraksi-title{
    font-weight:700;
    color:#1c2b2a;
    margin-bottom:6px;
}
.dd-atraksi-desc{
    font-size:.85rem;
    color:#6b7877;
    flex:1;
    margin-bottom:14px;
}
.dd-atraksi-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}
.dd-atraksi-price{
    font-weight:700;
    color:#E2643C;
    font-size:.92rem;
    white-space:nowrap;
}

.dd-atraksi-detail-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:#178F82;
    border:1.5px solid #4FB8AE;
    border-radius:999px;
    padding:8px 16px;
    font-size:.82rem;
    font-weight:600;
    cursor:pointer;
    overflow:hidden;
    isolation:isolate;
    transition:color .35s ease, border-color .35s ease, transform .2s ease;
}
.dd-atraksi-detail-btn::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:linear-gradient(120deg,#4FB8AE,#178F82);
    transform:translateX(-105%);
    transition:transform .4s cubic-bezier(.22,1,.36,1);
}
.dd-atraksi-detail-btn i{
    transition:transform .35s cubic-bezier(.22,1,.36,1);
}
.dd-atraksi-detail-btn:hover{
    color:#fff;
    border-color:#178F82;
}
.dd-atraksi-detail-btn:hover::before{
    transform:translateX(0);
}
.dd-atraksi-detail-btn:hover i{
    transform:translateX(4px);
}
.dd-atraksi-detail-btn:active{
    transform:scale(.96);
}

/* =========================================================
   MODAL DETAIL ATRAKSI
   ========================================================= */
.dd-atraksi-modal-wrap .modal-dialog{
    transform:translateY(28px) scale(.92);
    opacity:0;
    transition:transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.dd-atraksi-modal-wrap.show .modal-dialog{
    transform:translateY(0) scale(1);
    opacity:1;
}
.dd-atraksi-modal-wrap .modal-backdrop,
.dd-atraksi-modal-wrap ~ .modal-backdrop{
    transition:opacity .35s ease;
}

.dd-atraksi-modal{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 24px 60px rgba(10,25,30,.28);
}
.dd-atraksi-modal-close{
    position:absolute;
    top:14px;
    right:14px;
    z-index:5;
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:rgba(20,25,25,.45);
    backdrop-filter:blur(4px);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:background .25s ease, transform .25s ease;
}
.dd-atraksi-modal-close:hover{
    background:#E2643C;
    transform:rotate(90deg);
}

.dd-atraksi-modal-media{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    background:#0f1f1e;
}
.dd-atraksi-modal-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    animation:dd-modal-img-in .7s cubic-bezier(.22,1,.36,1) both;
}
.dd-atraksi-modal-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(10,20,20,.55) 100%);
}
.dd-atraksi-modal-badge{
    position:absolute;
    left:18px;
    bottom:14px;
    z-index:2;
    background:linear-gradient(120deg,#4FB8AE,#178F82);
    color:#fff;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.02em;
    padding:6px 14px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    box-shadow:0 6px 16px rgba(23,143,130,.35);
}

.dd-atraksi-modal-body{
    padding:22px 24px 6px;
    animation:dd-modal-body-in .55s .1s cubic-bezier(.22,1,.36,1) both;
}
.dd-atraksi-modal-body h5{
    font-weight:800;
    color:#1c2b2a;
    margin-bottom:10px;
}
.dd-atraksi-modal-price{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(226,100,60,.09);
    color:#E2643C;
    font-weight:700;
    font-size:.9rem;
    padding:7px 14px;
    border-radius:999px;
    margin-bottom:14px;
}
.dd-atraksi-modal-body p{
    color:#5c6b6a;
    line-height:1.7;
    font-size:.92rem;
}

.dd-atraksi-modal-footer{
    padding:14px 24px 22px;
    display:flex;
    justify-content:flex-end;
}
.dd-atraksi-modal-tutup{
    border:1.5px solid #d8dfde;
    background:#fff;
    color:#4a5655;
    font-weight:600;
    font-size:.85rem;
    padding:9px 20px;
    border-radius:999px;
    cursor:pointer;
    transition:background .25s ease, border-color .25s ease, color .25s ease;
}
.dd-atraksi-modal-tutup:hover{
    background:#178F82;
    border-color:#178F82;
    color:#fff;
}

@keyframes dd-modal-img-in{
    from{ opacity:0; transform:scale(1.12); }
    to{ opacity:1; transform:scale(1); }
}
@keyframes dd-modal-body-in{
    from{ opacity:0; transform:translateY(14px); }
    to{ opacity:1; transform:translateY(0); }
}

@media (max-width:576px){
    .dd-atraksi-footer{ flex-direction:column; align-items:stretch; }
    .dd-atraksi-detail-btn{ justify-content:center; }
}

/* ============================================================
   ✨ BLOK ANIMASI TAMBAHAN #2 — "KILAU ISTANA"
   Tempel di akhir style.css. Tidak mengubah class yang sudah
   ada — hanya menambah animasi baru pada elemen yang sudah
   ada di HTML/Blade kamu. Menghormati prefers-reduced-motion.
   ============================================================ */

/* ---------- Keyframes baru ---------- */
@keyframes meriah-text-shimmer{
    0%{ background-position: 0% 50%; }
    100%{ background-position: 200% 50%; }
}
@keyframes meriah-underline-sweep{
    from{ transform: scaleX(0); }
    to{ transform: scaleX(1); }
}
@keyframes meriah-ripple{
    0%{ transform: scale(0); opacity: 0.45; }
    100%{ transform: scale(2.6); opacity: 0; }
}
@keyframes meriah-particle-drift-a{
    0%{ transform: translate(0,0); opacity:0; }
    10%{ opacity:0.9; }
    90%{ opacity:0.9; }
    100%{ transform: translate(30px,-120px); opacity:0; }
}
@keyframes meriah-particle-drift-b{
    0%{ transform: translate(0,0); opacity:0; }
    12%{ opacity:0.7; }
    88%{ opacity:0.7; }
    100%{ transform: translate(-40px,-160px); opacity:0; }
}
@keyframes meriah-tilt-in{
    from{ opacity:0; transform: perspective(800px) rotateX(8deg) translateY(18px); }
    to{ opacity:1; transform: perspective(800px) rotateX(0) translateY(0); }
}
@keyframes meriah-rotate-in{
    from{ opacity:0; transform: rotate(-90deg) scale(0.6); }
    to{ opacity:1; transform: rotate(0) scale(1); }
}
@keyframes meriah-breathe{
    0%, 100%{ transform: scale(1); }
    50%{ transform: scale(1.035); }
}
@keyframes meriah-border-travel{
    0%{ background-position: 0% 0%; }
    100%{ background-position: 200% 0%; }
}
@keyframes meriah-count-in{
    from{ opacity:0; transform: translateY(8px); }
    to{ opacity:1; transform: translateY(0); }
}
@keyframes meriah-skeleton{
    0%{ background-position: -200px 0; }
    100%{ background-position: 200px 0; }
}

/* ---------- 1. Judul hero & section: teks emas berkilau ---------- */
.hero h1,
.section-title h2 {
    background: linear-gradient(90deg,
        var(--ivory) 0%, var(--gold-300) 22%, var(--ivory) 44%,
        var(--gold-300) 66%, var(--ivory) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: meriah-text-shimmer 5.5s linear infinite;
}
/* section-title h2 di atas background terang, jadi versi lebih gelap agar tetap terbaca */
.section-title h2 {
    background-image: linear-gradient(90deg,
        var(--em-900) 0%, var(--gold-700) 22%, var(--em-900) 44%,
        var(--gold-700) 66%, var(--em-900) 100%);
    background-size: 220% auto;
}

/* ---------- 2. Nav link: garis emas menyapu dari kiri saat hover ---------- */
.nv-link { overflow: hidden; }
.nv-link::after{
    content:"";
    position:absolute;
    left:1rem; right:1rem; bottom:6px;
    height:2px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-800));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nv-link:hover::after,
.nv-link.active::after{
    animation: meriah-underline-sweep 0.35s ease forwards;
}

/* ---------- 3. Tombol: efek riak emas saat ditekan ---------- */
.cta-btn, .dd-book-btn, .dd-cta-btn, .dc-btn-save,
.kontak-submit-btn, .nv-user-btn, .btn-add-destinasi {
    position: relative;
    overflow: hidden;
}
.cta-btn::after, .dd-book-btn::after, .dd-cta-btn::after,
.dc-btn-save::after, .kontak-submit-btn::after,
.nv-user-btn::after, .btn-add-destinasi::after{
    content:"";
    position:absolute;
    top:50%; left:50%;
    width:14px; height:14px;
    background: rgba(255,255,255,0.55);
    border-radius:50%;
    transform: translate(-50%,-50%) scale(0);
    opacity:0;
    pointer-events:none;
}
.cta-btn:active::after, .dd-book-btn:active::after, .dd-cta-btn:active::after,
.dc-btn-save:active::after, .kontak-submit-btn:active::after,
.nv-user-btn:active::after, .btn-add-destinasi:active::after{
    animation: meriah-ripple 0.55s ease-out;
}

/* ---------- 4. Partikel emas melayang di hero (dekoratif, pure-CSS) ---------- */
.hero{
    background-image:
        radial-gradient(2px 2px at 12% 78%, rgba(217,185,74,0.9), transparent 60%),
        radial-gradient(2px 2px at 28% 62%, rgba(217,185,74,0.75), transparent 60%),
        radial-gradient(1.5px 1.5px at 46% 84%, rgba(246,235,196,0.85), transparent 60%),
        radial-gradient(2px 2px at 64% 70%, rgba(217,185,74,0.8), transparent 60%),
        radial-gradient(1.5px 1.5px at 82% 60%, rgba(246,235,196,0.7), transparent 60%),
        radial-gradient(2px 2px at 92% 82%, rgba(217,185,74,0.85), transparent 60%),
        var(--pattern-gold),
        linear-gradient(180deg, rgba(7,31,23,0.55) 0%, rgba(7,31,23,0.78) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    background-repeat: no-repeat;
}
.hero::before{
    /* titik-titik emas tambahan yang melayang naik, dilapis di atas garis shimmer lama */
    box-shadow:
        0 0 0 rgba(0,0,0,0); /* menjaga selector tetap valid, efek utama tetap shimmer garis */
}

/* ---------- 5. Kartu destinasi/atraksi: masuk dengan sedikit perspektif 3D ---------- */
.grid-container .card,
.grid-container .at-card,
.grid-container .tn-culture-card,
.dd-atraksi-card {
    animation-name: meriah-tilt-in;
    animation-duration: 0.75s;
    animation-timing-function: cubic-bezier(.22,1,.36,1);
    animation-fill-mode: both;
}

/* ---------- 6. Ikon dekoratif (timeline dot, badge) muncul berputar ---------- */
.tn-timeline-dot,
.dc-page-icon {
    animation: meriah-rotate-in 0.6s cubic-bezier(.34,1.56,.64,1) both;
}

/* ---------- 7. Harga & angka statistik: "napas" halus supaya menarik perhatian ---------- */
.dd-price,
.tn-stat-card h3,
.stat-number {
    display: inline-block;
    animation: meriah-breathe 3.2s ease-in-out infinite;
}

/* ---------- 8. Bingkai emas berjalan pada kartu booking & tips ---------- */
.dd-booking-card,
.dc-tips-card {
    background-image:
        linear-gradient(165deg, var(--em-900), var(--em-950)),
        linear-gradient(90deg, var(--gold-800), var(--gold-500), var(--gold-800), var(--gold-500));
    background-size: 100% 100%, 300% 3px;
    background-repeat: no-repeat, repeat-x;
    background-position: 0 0, 0 0;
    animation: meriah-border-travel 5s linear infinite;
}

/* ---------- 9. Ulasan: avatar & isi ulasan masuk berjenjang ---------- */
.dd-review-item {
    animation: meriah-count-in 0.5s ease both;
}
.dd-review-item:nth-child(1) { animation-delay: 0.03s; }
.dd-review-item:nth-child(2) { animation-delay: 0.10s; }
.dd-review-item:nth-child(3) { animation-delay: 0.17s; }
.dd-review-item:nth-child(4) { animation-delay: 0.24s; }
.dd-review-item:nth-child(n+5) { animation-delay: 0.30s; }

.dd-review-avatar { transition: transform 0.3s ease; }
.dd-review-item:hover .dd-review-avatar { transform: scale(1.1) rotate(-6deg); }

/* ---------- 10. Skeleton shimmer (opsional, untuk state loading) ---------- */
.skeleton{
    background: linear-gradient(90deg, var(--paper) 25%, var(--gold-100) 37%, var(--paper) 63%);
    background-size: 400px 100%;
    animation: meriah-skeleton 1.4s ease-in-out infinite;
    border-radius: 4px;
}

/* ---------- 11. Sidebar admin: ikon aktif bergoyang lembut ---------- */
.ad-sidebar-link.active i {
    animation: meriah-breathe 2.2s ease-in-out infinite;
}

/* ---------- Hormati prefers-reduced-motion untuk semua animasi baru ---------- */
@media (prefers-reduced-motion: reduce){
    .hero h1, .section-title h2,
    .nv-link::after,
    .cta-btn::after, .dd-book-btn::after, .dd-cta-btn::after,
    .dc-btn-save::after, .kontak-submit-btn::after, .nv-user-btn::after, .btn-add-destinasi::after,
    .grid-container .card, .grid-container .at-card, .grid-container .tn-culture-card, .dd-atraksi-card,
    .tn-timeline-dot, .dc-page-icon,
    .dd-price, .tn-stat-card h3, .stat-number,
    .dd-booking-card, .dc-tips-card,
    .dd-review-item, .dd-review-avatar,
    .skeleton, .ad-sidebar-link.active i {
        animation: none !important;
        background-position: 0 0 !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ============================================================
   ✨ BLOK ANIMASI & DESAIN TAMBAHAN #3 — "SAYAP ISTANA"
   Tempel di akhir style.css (setelah blok #2). Tidak mengubah
   class/HTML yang sudah ada. Fokus: about, footer, kontak/FAQ,
   spot/fasilitas destinasi, tabel user, filter pill, dashboard.
   Menghormati prefers-reduced-motion.
   ============================================================ */

/* ---------- Keyframes baru ---------- */
@keyframes istana-wipe-reveal{
    from{ clip-path: inset(0 100% 0 0); }
    to{ clip-path: inset(0 0 0 0); }
}
@keyframes istana-pop-in{
    0%{ opacity:0; transform: translateY(14px) scale(0.94); }
    100%{ opacity:1; transform: translateY(0) scale(1); }
}
@keyframes istana-icon-bounce{
    0%{ opacity:0; transform: translateY(16px) scale(0.5); }
    60%{ opacity:1; transform: translateY(-3px) scale(1.08); }
    100%{ opacity:1; transform: translateY(0) scale(1); }
}
@keyframes istana-corner-draw{
    from{ opacity:0; transform: scale(0.7); }
    to{ opacity:1; transform: scale(1); }
}
@keyframes istana-map-ping{
    0%{ box-shadow: 0 0 0 0 rgba(217,185,74,0.55); }
    100%{ box-shadow: 0 0 0 16px rgba(217,185,74,0); }
}
@keyframes istana-row-sweep{
    from{ background-position: -300px 0; }
    to{ background-position: 300px 0; }
}
@keyframes istana-bar-fill{
    from{ width: 0%; }
}
@keyframes istana-slide-up-fade{
    from{ opacity:0; transform: translateY(24px); }
    to{ opacity:1; transform: translateY(0); }
}
@keyframes istana-caption-rise{
    from{ transform: translateY(100%); }
    to{ transform: translateY(0); }
}
@keyframes istana-social-pop{
    0%{ opacity:0; transform: scale(0.4) rotate(-30deg); }
    70%{ opacity:1; transform: scale(1.12) rotate(6deg); }
    100%{ opacity:1; transform: scale(1) rotate(0); }
}

/* =========================================================
   1) TENTANG ACEH & TENTANG KAMI: foto masuk dengan efek "tirai"
   ========================================================= */
.about-image img,
.tn-history-image img {
    animation: istana-wipe-reveal 0.9s cubic-bezier(.65,0,.35,1) both;
}
.about-content h2,
.tn-history-section h2 {
    animation: istana-slide-up-fade 0.6s ease both;
}
.feature-box {
    animation: istana-pop-in 0.55s cubic-bezier(.22,1,.36,1) both;
}
.feature-box:nth-child(1) { animation-delay: 0.05s; }
.feature-box:nth-child(2) { animation-delay: 0.15s; }
.feature-box:nth-child(3) { animation-delay: 0.25s; }
.feature-box:nth-child(4) { animation-delay: 0.35s; }

/* ---------- Ornamen sudut emas ala istana pada kartu penting ---------- */
.about-section,
.dc-card,
.dd-booking-card,
.tn-history-section {
    position: relative;
}
.about-section::after,
.dc-card::after,
.tn-history-section::after {
    content:"";
    position:absolute;
    width:26px; height:26px;
    top:14px; right:14px;
    border-top:2px solid var(--gold-600);
    border-right:2px solid var(--gold-600);
    opacity:0.8;
    animation: istana-corner-draw 0.6s ease 0.2s both;
    pointer-events:none;
}
.dd-booking-card::after{
    content:"";
    position:absolute;
    width:22px; height:22px;
    top:14px; right:14px;
    border-top:2px solid var(--gold-500);
    border-right:2px solid var(--gold-500);
    opacity:0.7;
    animation: istana-corner-draw 0.6s ease 0.2s both;
    pointer-events:none;
}

/* =========================================================
   2) FOOTER: kolom masuk berjenjang + ikon sosial "meletup"
   ========================================================= */
.footer-col {
    animation: istana-slide-up-fade 0.6s ease both;
}
.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; }
.footer-col:nth-child(4) { animation-delay: 0.35s; }

.social-links a {
    animation: istana-social-pop 0.5s cubic-bezier(.34,1.56,.64,1) both;
}
.social-links a:nth-child(1) { animation-delay: 0.35s; }
.social-links a:nth-child(2) { animation-delay: 0.42s; }
.social-links a:nth-child(3) { animation-delay: 0.49s; }
.social-links a:nth-child(4) { animation-delay: 0.56s; }
.social-links a:hover { animation: none; transform: translateY(-3px) rotate(-6deg); }

/* =========================================================
   3) FAQ & KONTAK: baris FAQ & item kontak masuk halus
   ========================================================= */
.faq-box .accordion-item {
    animation: istana-slide-up-fade 0.45s ease both;
}
.faq-box .accordion-item:nth-child(1) { animation-delay: 0.04s; }
.faq-box .accordion-item:nth-child(2) { animation-delay: 0.10s; }
.faq-box .accordion-item:nth-child(3) { animation-delay: 0.16s; }
.faq-box .accordion-item:nth-child(4) { animation-delay: 0.22s; }
.faq-box .accordion-item:nth-child(5) { animation-delay: 0.28s; }
.faq-box .accordion-button::after { transition: transform 0.35s cubic-bezier(.22,1,.36,1); }

.kontak-info-item {
    animation: istana-pop-in 0.5s ease both;
}
.kontak-info-item:nth-child(1) { animation-delay: 0.05s; }
.kontak-info-item:nth-child(2) { animation-delay: 0.15s; }
.kontak-info-item:nth-child(3) { animation-delay: 0.25s; }
.kontak-info-item i { transition: transform 0.3s ease; }
.kontak-info-item:hover i { transform: scale(1.12) rotate(-8deg); }

/* label naik sedikit saat field difokus (micro-interaction) */
.kontak-form .form-control:focus,
.dc-form .form-control:focus {
    transform: translateY(-1px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* =========================================================
   4) DESTINASI DETAIL: spot menyelam, fasilitas, peta
   ========================================================= */
.dd-spot {
    animation: istana-pop-in 0.5s cubic-bezier(.22,1,.36,1) both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dd-spot:nth-child(1) { animation-delay: 0.05s; }
.dd-spot:nth-child(2) { animation-delay: 0.13s; }
.dd-spot:nth-child(3) { animation-delay: 0.21s; }
.dd-spot:nth-child(4) { animation-delay: 0.29s; }
.dd-spot:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.dd-facility {
    animation: istana-slide-up-fade 0.45s ease both;
    transition: background-color 0.25s ease;
}
.dd-facility:nth-child(1) { animation-delay: 0.03s; }
.dd-facility:nth-child(2) { animation-delay: 0.08s; }
.dd-facility:nth-child(3) { animation-delay: 0.13s; }
.dd-facility:nth-child(4) { animation-delay: 0.18s; }
.dd-facility:nth-child(5) { animation-delay: 0.23s; }
.dd-facility:nth-child(6) { animation-delay: 0.28s; }
.dd-facility:hover { background-color: var(--gold-100); }

/* penanda lokasi di peta "berdenyut" seperti ping GPS */
.dd-map-plate {
    position: relative;
}
.dd-map-plate::after{
    content:"";
    position:absolute;
    width:14px; height:14px;
    top:50%; left:50%;
    margin:-7px 0 0 -7px;
    background: var(--gold-500);
    border-radius:50%;
    border:2px solid var(--em-950);
    animation: istana-map-ping 1.8s ease-out infinite;
    pointer-events:none;
}
.dd-addr { animation: istana-slide-up-fade 0.5s ease 0.1s both; }

/* =========================================================
   5) BUDAYA (tentang.blade.php): overlay judul muncul saat hover
   ========================================================= */
.tn-culture-card { position: relative; }
.tn-culture-body {
    position: relative;
    overflow: hidden;
}
.tn-culture-card:hover .tn-culture-body h4 {
    color: var(--gold-800);
}
.tn-culture-card img {
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.tn-culture-card:hover img { transform: scale(1.07); }

/* =========================================================
   6) TABEL USER (manajemen user): baris & tombol aksi lebih hidup
   ========================================================= */
.uz-table tbody tr:hover {
    background: linear-gradient(90deg, var(--gold-100) 0%, transparent 60%);
}
.uz-avatar { transition: transform 0.3s ease; }
.uz-table tbody tr:hover .uz-avatar { transform: scale(1.08) rotate(-4deg); }
.uz-btn-action { transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.uz-btn-action:hover { transform: translateY(-2px); }

/* =========================================================
   7) FILTER PILL & PAGINATION: micro-interaction lebih jelas
   ========================================================= */
.des-filter-pill { transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.des-filter-pill:active { transform: scale(0.94); }
.des-filter-pill.active { animation: istana-pop-in 0.4s cubic-bezier(.34,1.56,.64,1) both; }

.pagination .page-link { transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease; }
.pagination .page-link:hover { transform: translateY(-2px); }

/* =========================================================
   8) DASHBOARD ADMIN: chart card & quick action lebih hidup
   ========================================================= */
.chart-card, .dashboard-card {
    animation: istana-slide-up-fade 0.55s ease both;
}
.welcome-box { animation: istana-pop-in 0.6s cubic-bezier(.22,1,.36,1) both; }

.quick-action { animation: istana-pop-in 0.45s ease both; }
.quick-action:nth-child(1) { animation-delay: 0.04s; }
.quick-action:nth-child(2) { animation-delay: 0.10s; }
.quick-action:nth-child(3) { animation-delay: 0.16s; }
.quick-action:nth-child(4) { animation-delay: 0.22s; }
.quick-action i { transition: transform 0.35s cubic-bezier(.22,1,.36,1); }
.quick-action:hover i { transform: rotate(14deg) scale(1.15); }

/* rating-row: skor diberi progress bar tipis di bawah nama (desain baru,
   memakai elemen semu sehingga tidak perlu markup tambahan) */
.rating-row { position: relative; overflow: hidden; }
.rating-row::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    height:2px;
    width: 70%; /* fallback statis; sesuaikan lebar per-baris via inline style jika perlu */
    background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
    animation: istana-bar-fill 1s cubic-bezier(.22,1,.36,1) both;
}

.activity-item { }
.activity-avatar { transition: transform 0.3s ease; }
.activity-item:hover .activity-avatar { transform: scale(1.1); }

/* =========================================================
   9) MODAL ATRAKSI: badge harga & tombol tutup lebih hidup
   ========================================================= */
.dd-atraksi-modal-price {
    animation: istana-pop-in 0.4s 0.15s cubic-bezier(.34,1.56,.64,1) both;
}
.dd-atraksi-modal-tutup:active { transform: scale(0.95); }

/* =========================================================
   10) Desain baru: garis pemisah emas bertitik di antara section
   ========================================================= */
.container + .container::before,
.des-advantages-wrap::before {
    content: '';
}

/* ---------- Hormati prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce){
    .about-image img, .tn-history-image img,
    .about-content h2, .tn-history-section h2,
    .feature-box, .about-section::after, .dc-card::after,
    .tn-history-section::after, .dd-booking-card::after,
    .footer-col, .social-links a,
    .faq-box .accordion-item, .kontak-info-item,
    .dd-spot, .dd-facility, .dd-map-plate::after, .dd-addr,
    .tn-culture-card img,
    .chart-card, .dashboard-card, .welcome-box, .quick-action,
    .rating-row::after,
    .dd-atraksi-modal-price {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}

/* ============================================================
   🔧 PATCH: teks hero tidak kelihatan saat gambar background
   belum/gagal termuat. Tambahkan background-color fallback
   gelap di semua hero, jadi teks selalu kontras.
   Tempel di AKHIR style.css (setelah blok-blok sebelumnya, agar
   menang di cascade).
   ============================================================ */

.hero,
.hero-destinasi,
.hero-tentang,
.hero-kuliner {
    background-color: var(--em-950); /* fallback gelap jika gambar belum/gagal load */
}

/* Amankan juga teksnya: pastikan tetap solid & kontras,
   shimmer tetap jalan tapi dengan warna dasar yang jelas
   jika browser tidak mendukung background-clip:text */
.hero h1 {
    color: var(--ivory); /* fallback warna solid */
}

@supports not (background-clip: text) {
    .hero h1 { -webkit-text-fill-color: initial; background: none; }
}