/* ==========================================================================
   KanjaBuzz — Sumatera Barat Wisata
   Style: Modern Minimalist + Nature
   Palette : Sea Blue #0EA5E9 | Green #22C55E | White #FFFFFF | Light Grey #F8FAFC
   Font    : Poppins (heading) + Inter (body)
   ========================================================================== */

:root {
  /* ===== Palet baru: Editorial Modern + Swiss (earth tone) ===== */
  --sea-blue: #2E6F95;          /* Ocean Blue (secondary) */
  --sea-blue-dark: #234F6C;     /* Ocean Blue — hover/darker */
  --leaf-green: #1F4D3A;        /* Forest Green (primary) */
  --leaf-green-dark: #163829;   /* Forest Green — hover/darker */
  --white: #FFFFFF;             /* Surface/Card */
  --grey-light: #F8F6F2;        /* Warm Ivory (background) */
  --ink: #1A1A1A;               /* Charcoal (text primary) */
  --ink-soft: #6B7280;          /* Slate Gray (text secondary) */
  --border-soft: #E5E7EB;       /* Light Gray (border) */

  --accent-gold: #D6A85A;       /* Golden Sand (accent) */
  --accent-gold-dark: #B8863F;  /* Golden Sand — hover/darker */

  --gradient-nature: linear-gradient(135deg, var(--leaf-green) 0%, var(--sea-blue) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(26, 26, 26, 0.07);
  --shadow-hover: 0 18px 40px rgba(31, 77, 58, 0.18);
  --shadow-gold: 0 18px 40px rgba(214, 168, 90, 0.25);
  --transition-smooth: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--grey-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--leaf-green);
  color: var(--white);
}

/* ==========================================================================
   SECTION: Utility
   ========================================================================== */

.text-gradient {
  background: var(--gradient-nature);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(31, 77, 58, 0.10);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

.btn-nature {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  color: var(--white);
  background: var(--gradient-nature);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-nature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.btn-outline-nature {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 999px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-nature:hover {
  background: var(--white);
  color: var(--sea-blue-dark);
}

/* ==========================================================================
   SECTION: Scroll reveal (AOS-lite, no library needed)
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   SECTION: Navbar (brand, nav links)
   ========================================================================== */

.navbar-kanja {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition-smooth);
}

.navbar-brand.kanja-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand.kanja-brand i {
  color: var(--leaf-green);
}

.kanja-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft) !important;
  position: relative;
  margin: 0 6px;
  transition: var(--transition-smooth);
}

.kanja-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-nature);
  transition: width 0.3s ease;
}

.kanja-link:hover {
  color: var(--sea-blue-dark) !important;
}

.kanja-link:hover::after {
  width: 100%;
}

.kanja-link.active {
  color: var(--sea-blue-dark) !important;
}

.kanja-link.active::after {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-top: 14px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
  }
  .kanja-link {
    margin: 4px 0;
    display: inline-block;
  }

  .kanja-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kanja-link i {
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.kanja-link:hover i,
.kanja-link.active i {
  color: var(--sea-blue-dark);
}
}

/* ==========================================================================
   SECTION: Navbar — Guest Buttons (Masuk / Daftar)
   Catatan: rule INI HARUS di luar media query manapun, supaya tampilan
   tombol konsisten di semua ukuran layar (desktop, tablet, mobile).
   ========================================================================== */

.btn-editorial-outline-nav {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--leaf-green);
  color: var(--leaf-green-dark);
  background: transparent;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-editorial-outline-nav:hover {
  background: var(--gradient-nature);
  border-color: transparent;
  color: var(--white);
}

.btn-editorial-nav {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  color: var(--white);
  background: var(--gradient-nature);
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-editorial-nav:hover {
  background: var(--leaf-green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   SECTION: Hero — Full width
   ========================================================================== */

.hero-nature {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-nature);
  isolation: isolate;
}

.hero-nature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.15"/></svg>');
  opacity: 0.5;
  z-index: -1;
}

.hero-nature::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--grey-light);
  clip-path: polygon(0 55%, 100% 5%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content .section-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(35, 79, 108, 0.35);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hero-visual-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-visual-badge i {
  font-size: 1.6rem;
  color: var(--leaf-green);
}

.hero-cinematic h1 {
  color: var(--white);
}

/* ==========================================================================
   SECTION: Gallery / Destination cards
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
  background: var(--grey-light);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid var(--border-soft);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.gallery-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.08);
}

.gallery-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sea-blue-dark);
  padding: 6px 14px;
  border-radius: 999px;
}

.gallery-card-body {
  padding: 24px;
}

.gallery-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-card-title {
  color: var(--sea-blue-dark);
}

.gallery-card-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}

.gallery-card-meta i {
  color: var(--leaf-green);
  margin-right: 6px;
}

/* Badge kategori — overlay di pojok kanan atas gambar kartu destinasi */
.destinasi-kategori-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(31, 77, 58, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  transition: var(--transition-smooth);
}

.destinasi-kategori-badge i {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.gallery-card:hover .destinasi-kategori-badge {
  background: var(--leaf-green);
  border-color: transparent;
}
/* ==========================================================================
   SECTION: Footer
   ========================================================================== */

.footer-kanja {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding-top: 64px;
}

.footer-kanja .footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-kanja .footer-brand i {
  color: var(--leaf-green);
}

.footer-kanja h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
}

.footer-link {
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--sea-blue-dark) !important;
  padding-left: 4px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--grey-light);
  color: var(--sea-blue-dark);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  transform: translateY(-4px);
  background: var(--gradient-nature);
  color: var(--white) !important;
}

.social-icon:hover i {
  color: var(--white);
}

/* ==========================================================================
   SECTION: Responsive — Hero (tablet & mobile)
   ========================================================================== */

@media (max-width: 991px) {
  .hero-nature {
    min-height: auto;
    padding: 140px 0 120px;
    text-align: center;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 48px;
  }
  .hero-visual-badge {
    left: 16px;
  }
}

/* ==========================================================================
   SECTION: Inner pages — Breadcrumb, Page header
   ========================================================================== */

.page-section {
  padding: 56px 0 100px;
}

.breadcrumb-nature {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 22px;
  display: inline-flex;
  margin-bottom: 40px;
  max-width: 100%;
  overflow-x: auto;
}

.breadcrumb-nature .breadcrumb {
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.breadcrumb-nature .breadcrumb-item a {
  color: var(--ink-soft);
  transition: var(--transition-smooth);
}

.breadcrumb-nature .breadcrumb-item a:hover {
  color: var(--sea-blue-dark);
}

.breadcrumb-nature .breadcrumb-item.active {
  color: var(--leaf-green-dark);
  font-weight: 600;
}

.breadcrumb-nature .breadcrumb-item + .breadcrumb-item::before {
  content: '\203A';
  color: #CBD5E1;
}

.page-header-nature {
  text-align: center;
  margin-bottom: 48px;
}

/* ==========================================================================
   SECTION: Cards — form container
   ========================================================================== */

.card-nature {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card-nature-header {
  background: var(--gradient-nature);
  padding: 32px 40px;
  color: var(--white);
}

.card-nature-header h2 {
  color: var(--white);
  margin-bottom: 4px;
}

.card-nature-header p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.card-nature-body {
  padding: 40px;
}

/* ==========================================================================
   SECTION: Forms
   ========================================================================== */

.form-label-nature {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-control-nature,
textarea.form-control-nature {
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--grey-light);
  transition: var(--transition-smooth);
}

.form-control-nature:focus {
  border-color: var(--sea-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 111, 149, 0.12);
}

.form-text-nature {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

.alert-nature-danger {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #B91C1C;
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

.alert-nature-success {
  background: rgba(31, 77, 58, 0.08);
  border: 1px solid rgba(31, 77, 58, 0.3);
  color: var(--leaf-green-dark);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

/* ==========================================================================
   SECTION: Buttons — inner-page variants
   ========================================================================== */

.btn-nature-outline-soft {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--border-soft);
  color: var(--ink-soft);
  background: var(--white);
  transition: var(--transition-smooth);
}

.btn-nature-outline-soft:hover {
  border-color: var(--sea-blue);
  color: var(--sea-blue-dark);
}

.btn-nature-danger {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  color: #FFFFFF;
  background: #EF4444;
  transition: var(--transition-smooth);
}

.btn-nature-danger:hover {
  background: #DC2626;
  color: #fff;
  transform: translateY(-2px);
}

.btn-nature-warning {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  color: #FFFFFF;
  background: #F59E0B;
  transition: var(--transition-smooth);
}

.btn-nature-warning:hover {
  background: #D97706;
  color: #fff;
  transform: translateY(-2px);
}

.btn-nature-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.btn-outline-nature-soft {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 999px;
  border: 2px solid var(--sea-blue);
  color: var(--sea-blue-dark);
  background: transparent;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-nature-soft:hover {
  background: var(--gradient-nature);
  border-color: transparent;
  color: var(--white);
}

/* ==========================================================================
   SECTION: Status badges (buka/tutup)
   ========================================================================== */

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status-buka {
  background: rgba(31, 77, 58, 0.14);
  color: var(--leaf-green-dark);
}

.status-tutup {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

/* ==========================================================================
   SECTION: Detail page
   ========================================================================== */

.detail-gambar-utama {
  border-radius: var(--radius-lg) !important;
}

.detail-info-list {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft) !important;
}

.detail-info-list .list-group-item {
  border-color: var(--border-soft);
  padding: 18px 20px;
}

.detail-info-list i {
  color: var(--sea-blue);
}

.facility-chip {
  background: var(--grey-light);
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--radius-md) !important;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.facility-chip:hover {
  border-color: var(--leaf-green) !important;
  background: rgba(31, 77, 58, 0.06);
  transform: translateY(-3px);
}

.facility-chip i {
  color: var(--leaf-green) !important;
}

.map-frame-nature {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   SECTION: About page — mini hero, visi-misi, keunggulan
   ========================================================================== */

.hero-nature-sm {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background: var(--gradient-nature);
  isolation: isolate;
  text-align: center;
}

.hero-nature-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.15"/></svg>');
  opacity: 0.5;
  z-index: -1;
}

.hero-nature-sm::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 90" preserveAspectRatio="none"><polygon points="0,50 1440,5 1440,90 0,90" fill="%23F5F4EF"/></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-nature-sm .section-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero-nature-sm h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero-nature-sm p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-section {
  padding: 30px 0 100px;
  background: var(--grey-light);
}

.visi-misi-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.visi-misi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-nature);
  transition: var(--transition-smooth);
}

.visi-misi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.visi-misi-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-nature);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.visi-misi-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.visi-misi-card p,
.visi-misi-card li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.visi-misi-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.visi-misi-card ul li {
  margin-bottom: 10px;
}

.visi-misi-card ul li::marker {
  color: var(--leaf-green);
}

.keunggulan-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-hover);
}

.keunggulan-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 111, 149, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.keunggulan-card:hover .keunggulan-icon-wrap {
  background: var(--gradient-nature);
  transform: scale(1.08) rotate(-4deg);
}

.keunggulan-card p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0;
}



/* ==========================================================================
   SECTION: Contact page — info cards, jam list, FAQ, form
   ========================================================================== */

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-top: 4px;
}

.live-status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.live-status-badge.is-buka {
  background: rgba(31, 77, 58, 0.12);
  color: var(--leaf-green-dark);
}

.live-status-badge.is-tutup {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}

.info-card-nature {  /*jam operasiona*/
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.info-card-nature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.info-card-nature h3 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.info-card-nature h3 i {
  color: var(--leaf-green);
  font-size: 1.3rem;
}

.jam-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jam-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.jam-list li:last-child {
  border-bottom: none;
}

.jam-list li span:first-child {
  font-weight: 500;
  color: var(--ink);
}

.kontak-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kontak-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.kontak-list li i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(46, 111, 149, 0.10);
  color: var(--sea-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item-nature {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.faq-item-nature:hover {
  border-color: var(--sea-blue);
}

.faq-item-nature summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item-nature summary::-webkit-details-marker {
  display: none;
}

.faq-item-nature summary::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  color: var(--sea-blue);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item-nature[open] summary::after {
  transform: rotate(45deg);
}

.faq-item-nature p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding-bottom: 18px;
  margin-bottom: 0;
}

.kontak-form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-group-nature {
  margin-bottom: 20px;
}

.contact-hero-quickinfo-float {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  margin-bottom: 40px;
}

.hero-contact { /* ganti sesuai nama class section hero aslinya */
  position: relative;
  overflow: visible;
  z-index: 1;
}
/* ==========================================================================
   SECTION: About page — Profil Daerah, Sejarah, Budaya, Aktivitas
   ========================================================================== */

.region-section {
  padding: 20px 0 80px;
}

.region-section-header {
  text-align: center;
  margin-bottom: 48px;
 
}

/* Profil Daerah — quick facts */

.profil-stat-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.profil-stat-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-hover);
}

.profil-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46, 111, 149, 0.10);
  color: var(--sea-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.profil-stat-card:hover .profil-stat-icon {
  background: var(--gradient-nature);
  color: var(--white);
}

.profil-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.profil-stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Sejarah — split layout */

.sejarah-visual {
  position: relative;
}

.sejarah-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sejarah-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sejarah-badge i {
  font-size: 1.5rem;
  color: var(--leaf-green);
}

.sejarah-badge .fw-semibold {
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.sejarah-text {
  padding-left: 8px;
}

.sejarah-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.sejarah-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .sejarah-badge {
    right: 8px;
  }
  .sejarah-text {
    margin-top: 40px;
    padding-left: 0;
  }
}

/* ==========================================================================
   SECTION: Marquee gallery — static photo strip, auto-scrolling
   ========================================================================== */

.marquee-section {
  padding: 100px 0;
  background: var(--grey-light);
  overflow: hidden;
}

.marquee-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee-scroll 38s linear infinite;
}

.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.marquee-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.marquee-item:hover img {
  transform: scale(1.08);
}

.marquee-item-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.75) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .marquee-item {
    width: 240px;
    height: 170px;
  }
  .marquee-track {
    animation-duration: 26s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ==========================================================================
   SECTION: Search bar
   ========================================================================== */

.search-bar-nature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  max-width: 560px;
  margin: 0 auto 48px;
}

.search-bar-nature:focus-within {
  border-color: var(--sea-blue);
  box-shadow: 0 0 0 4px rgba(46, 111, 149, 0.12), var(--shadow-soft);
}

.search-bar-nature i {
  color: var(--ink-soft);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.search-bar-nature:focus-within i {
  color: var(--sea-blue);
}

.search-bar-nature input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 0;
}

.search-bar-nature input::placeholder {
  color: #94A3B8;
}

.search-bar-nature button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 999px;
  padding: 11px 26px;
  color: var(--white);
  background: var(--gradient-nature);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.search-bar-nature button:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

@media (max-width: 575px) {
  .search-bar-nature {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    padding: 16px;
  }
  .search-bar-nature input {
    width: 100%;
    order: 1;
  }
  .search-bar-nature button {
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION: Pagination — numeric with active indicator
   (menempel ke markup bawaan Laravel ->links(), style Bootstrap)
   ========================================================================== */

.pagination {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.page-item {
  display: flex;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  border-radius: 12px !important;
  border: 1.5px solid var(--border-soft) !important;
  background: var(--white);
  color: var(--ink-soft) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.page-link:hover {
  border-color: var(--sea-blue) !important;
  color: var(--sea-blue-dark) !important;
  background: var(--white);
  transform: translateY(-2px);
}

.page-link:focus {
  box-shadow: 0 0 0 3px rgba(46, 111, 149, 0.2) !important;
}

.page-item.active .page-link {
  background: var(--gradient-nature) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-hover);
}

.page-item.disabled .page-link {
  color: #CBD5E1 !important;
  background: var(--grey-light);
  border-color: var(--border-soft) !important;
}

/* ==========================================================================
   SECTION: EDITORIAL / SWISS — Beranda (Crow Agency inspired)
   ========================================================================== */

.eyebrow-editorial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
}

.eyebrow-editorial::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent-gold);
}

.section-title-editorial {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 14px 0 0;
}

.section-num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* Glassmorphism tipis, dipakai di beberapa kartu/badge */
.glass-panel {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

/* ----- Hero sinematik ----- */

.hero-cinematic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-cinematic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.25) 55%, rgba(15, 15, 15, 0.45) 100%);
  z-index: 1;
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 64px 0 88px;
  width: 100%;
}

.hero-cinematic-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 22px;
}

.hero-cinematic-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent-gold);
}

.hero-cinematic-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-cinematic-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-cinematic-scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-cinematic-scroll::after {
  content: '';
  writing-mode: initial;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
  .hero-cinematic-scroll { display: none; }
  .hero-cinematic { min-height: 78vh; }
}

@media (max-width: 575px) {
  .hero-cinematic {
    min-height: auto;
    padding-top: 90px;
  }
  .hero-cinematic-content {
    padding: 48px 0 56px;
    padding-left: 20px;
  }
  .hero-cinematic-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cinematic-actions .btn-editorial,
  .hero-cinematic-actions .btn-editorial-outline {
    justify-content: center;
    width: 100%;
  }
}

/* ----- Buttons — editorial variants (hero, CTA sections) ----- */

.btn-editorial {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  color: var(--ink);
  background: var(--accent-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-editorial:hover {
  background: var(--accent-gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-editorial-outline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-editorial-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ----- Storytelling (split image + text, editorial) ----- */

.storytelling-section {
  padding: 120px 0;
  background: var(--white);
}

.storytelling-media {
  position: relative;
}

.storytelling-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.storytelling-media-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--leaf-green);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.storytelling-quote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 24px 0;
  border-left: 3px solid var(--accent-gold);
  padding-left: 24px;
}

.storytelling-body p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .storytelling-media-tag { left: 8px; }
}

/* ----- Destination showcase (editorial cards) ----- */

.showcase-section {
  padding: 100px 0;
  background: var(--grey-light);
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 15, 0.78) 0%, transparent 55%);
}

.showcase-card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 999px;
}

.showcase-card-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}

.showcase-card-body h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.showcase-card-body span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ----- Peta interaktif ----- */

.map-section {
  padding: 100px 0;
  background: var(--white);
}

.map-frame-editorial {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.map-legend {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.map-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-soft);
}

.map-legend-item:last-child {
  border-bottom: none;
}

.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--leaf-green);
}

/* ----- Paket Tur ----- */

.package-section {
  padding: 100px 0;
  background: var(--grey-light);
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.package-card.featured {
  background: var(--leaf-green);
  border-color: transparent;
  color: var(--white);
}

.package-card.featured .package-price,
.package-card.featured h3 {
  color: var(--white);
}

.package-card.featured .package-list li,
.package-card.featured .package-duration {
  color: rgba(255, 255, 255, 0.85);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--accent-gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.package-duration {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.package-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.package-price span {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.package-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.package-list li i {
  color: var(--accent-gold);
}

/* ----- Testimoni ----- */

.testimonial-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ----- CTA Booking ----- */

.cta-booking {
  position: relative;
  padding: 100px 0;
  background: var(--leaf-green);
  overflow: hidden;
  text-align: center;
}

.cta-booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(214, 168, 90, 0.18) 0%, transparent 45%),
                     radial-gradient(circle at 80% 70%, rgba(46, 111, 149, 0.25) 0%, transparent 45%);
}

.cta-booking-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-booking-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  max-width: 640px;
  margin: 0 auto 20px;
}

.cta-booking-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-booking h2 {
  color: var(--white);
}

/* ==========================================================================
   SECTION: Responsive tambahan — Beranda editorial (tablet & mobile)
   ========================================================================== */

@media (max-width: 991px) {
  .storytelling-section {
    padding: 80px 0;
  }
  .map-legend {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .storytelling-section,
  .map-section,
  .package-section,
  .testimonial-section,
  .showcase-section,
  .marquee-section {
    padding: 64px 0;
  }
  .cta-booking {
    padding: 64px 0;
  }
  .section-title-editorial {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
  }
  .package-card {
    padding: 28px 24px;
  }
  .testimonial-card {
    padding: 26px 22px;
  }
  .storytelling-quote {
    padding-left: 16px;
    margin: 18px 0;
  }
  .package-badge {
    right: 20px;
  }
}

@media (max-width: 575px) {
  .eyebrow-editorial {
    justify-content: center;
    text-align: center;
  }
  .package-price {
    font-size: 1.6rem;
  }
  .cta-booking-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
}

/* ==========================================================================
   SECTION: Admin — tabel data & modal konfirmasi hapus
   ========================================================================== */

.table-nature-wrap {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--shadow-soft);
}

.table-nature {
  margin-bottom: 0;
}

.table-nature thead {
  background: var(--gradient-nature);
}

.table-nature thead th {
  background: rgba(40, 167, 69, 0.06);
  border: none;
  border-bottom: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.9rem 1rem;
  white-space: nowrap;
}

.table-nature tbody td {
  padding: 0.8rem 1rem;
  border-color: var(--border-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
  color: var(--ink);
  font-size: 0.92rem;

}

.table-nature tbody tr {
  transition: var(--transition-smooth);
}

.table-nature tbody tr:hover {
  background: rgba(40, 167, 69, 0.03);
}

.table-nature tbody tr:last-child td {
  border-bottom: none;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.role-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.role-badge-admin {
  background: rgba(214, 168, 90, 0.16);
  color: var(--accent-gold-dark);
}

.role-badge-user {
  background: rgba(46, 111, 149, 0.12);
  color: var(--sea-blue-dark);
}

.status-badge-inline {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-badge-inline.status-buka {
  background: rgba(40, 167, 69, 0.12);
  color: #157347;
}

.status-badge-inline.status-tutup {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.btn-icon-nature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #475569;
  transition: all 0.2s ease;
}

.btn-icon-nature:hover {
  transform: translateY(-2px);
  background: rgba(40, 167, 69, 0.08);
  color: #157347;
  border-color: rgba(40, 167, 69, 0.3);
}

.btn-icon-nature.edit:hover {
  border-color: var(--sea-blue);
  color: var(--sea-blue-dark);
  background: transparent;
}

.btn-icon-nature.danger:hover,
.btn-icon-danger:hover {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

/* Modal konfirmasi hapus */

.modal-nature .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.modal-nature .modal-header {
  border-bottom: none;
  padding: 32px 32px 0;
}

.modal-nature .modal-body {
  padding: 12px 32px 8px;
  text-align: center;
}

.modal-nature .modal-footer {
  border-top: none;
  padding: 20px 32px 32px;
  justify-content: center;
  gap: 10px;
}

.modal-nature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
}

.modal-nature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.modal-nature-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.modal-nature-text strong {
  color: var(--ink);
}

.sidebar-profile h6 {
  color: var(--white); 
}

/* ==========================================================================
   SECTION: User avatar dropdown — navbar pojok kanan (setelah login)
   ========================================================================== */

.user-menu-item {
  list-style: none;
  position: relative;
}

.user-avatar-trigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.user-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-nature);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 2px solid var(--white);
}

.user-avatar-trigger:hover .user-avatar-circle {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.user-avatar-circle-lg {
  width: 52px;
  height: 52px;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Dropdown panel */
.user-dropdown-menu {
  min-width: 260px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 18px;
  margin-top: 14px !important;
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 4px 8px;
}

.user-dropdown-info {
  min-width: 0;
}

.user-dropdown-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-email {
  font-size: 0.8rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

.user-dropdown-menu .dropdown-divider {
  border-color: var(--border-soft);
  margin: 10px 0;
}

.user-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition-smooth);
}

.user-dropdown-link i {
  font-size: 1rem;
  color: var(--sea-blue);
  width: 18px;
}

.user-dropdown-link:hover {
  background: var(--grey-light);
  color: var(--ink);
}

.user-dropdown-logout {
  color: #DC2626;
}

.user-dropdown-logout i {
  color: #DC2626;
}

.user-dropdown-logout:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
}

@media (max-width: 991px) {
  .user-menu-item {
    margin-top: 12px;
    display: flex;
    justify-content: center;
  }
  .user-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: 1px solid var(--border-soft);
    margin-top: 10px !important;
    width: 100%;
  }
}

/* ==========================================================================
   SECTION: Ulasan — kartu review di halaman detail destinasi
   ========================================================================== */

.review-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(40, 167, 69, 0.25);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-green, #28a745), #1e7e34);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.review-stars i {
  font-size: 0.85rem;
  color: #f0ad4e;
}

.review-stars i.bi-star {
  color: #dcdcdc;
}

/* ==========================================================================
   SECTION: Hero About — full-bleed background, gaya "EXPLORE" editorial
   ========================================================================== */

.hero-about-explore {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  background: var(--ink);
  padding: 0;
  text-align: left;
  isolation: isolate;
}

.hero-about-explore::before,
.hero-about-explore::after {
  content: none !important;
}

.hero-about-explore-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  will-change: auto;
}

.hero-about-explore-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.15) 35%, rgba(15, 15, 15, 0.75) 100%);
  z-index: 1;
}

.hero-about-explore-top {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-about-explore-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-about-explore-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.hero-about-explore-breadcrumb a:hover {
  color: var(--white);
}

.hero-about-explore-breadcrumb i {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-about-explore-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 64px;
  padding-left: clamp(16px, 4vw, 48px);
}

.hero-about-explore-giant {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.85;
  font-size: clamp(4.5rem, 14vw, 11rem);
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}

.hero-about-explore-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}

.hero-about-explore-place {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--white);
  margin-bottom: 6px;
}

.hero-about-explore-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.hero-about-explore-cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  padding: 16px 14px 16px 26px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.hero-about-explore-cta:hover {
  background: var(--accent-gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-about-explore-cta i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .hero-about-explore {
    min-height: 78vh;
    align-items: flex-end;
  }
  .hero-about-explore-content {
    padding-bottom: 40px;
  }
  .hero-about-explore-sub {
    align-items: flex-start;
  }
  .hero-about-explore-cta {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   SECTION: About page — Hero search float (dipindahkan dari about.blade.php)
   ========================================================================== */

.hero-about-explore-sm {
  min-height: 62vh;
  min-height: 62dvh;
}

.hero-about-explore-sm .hero-about-explore-content {
  padding-bottom: 72px;
}

.hero-about-explore-sm .hero-about-explore-giant {
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
}

@media (max-width: 767px) {
  .hero-about-explore-sm {
    min-height: 64vh;
  }
  .hero-about-explore-sm .hero-about-explore-content {
    padding-bottom: 96px;
  }
}

/* Search bar melayang, overlap ke section berikutnya */
.hc-search-float {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 5;
  width: min(640px, 92vw);
}

.hc-search-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(11,51,47,0.18);
}

.hc-search-form i.bi-search {
  color: var(--leaf-green);
  font-size: 1.05rem;
}

.hc-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
}

.hc-search-form input::placeholder {
  color: #9aa8a5;
}

.hc-search-form input.is-invalid {
  animation: hcShake 0.3s ease;
}

@keyframes hcShake {
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.hc-search-form button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  background: var(--gradient-nature);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.hc-search-form button:hover {
  box-shadow: var(--shadow-hover);
}

@media (max-width: 575.98px) {
  .hc-search-form button span {
    display: none;
  }
}

/* offset supaya section tidak ketutup navbar sticky saat di-scroll ke */
#profil-daerah {
  padding-top: 150px;
}

/* ==========================================================================
   SECTION: Beranda — Warisan Lokal (Heritage, gaya editorial)
   (dipindahkan dari beranda.blade.php)
   ========================================================================== */

.heritage-section {
  --heritage-serif: 'Poppins', sans-serif;
  --heritage-maroon:  #1A1A1A;
  background: #faf6ef;
  padding: 5.5rem 0;
}

/* Masthead */
.heritage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heritage-maroon);
  margin-bottom: 1rem;
}

.heritage-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--heritage-maroon);
  display: inline-block;
}

.heritage-headline {
  font-family: var(--heritage-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--heritage-maroon);
  margin-bottom: 0;
}

.heritage-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #55504a;
  max-width: 480px;
}

.heritage-intro strong {
  color: #2a2a2a;
}

/* Grid kartu */
.heritage-card {
  background: transparent;
}

.heritage-photo {
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  margin-bottom: 1.25rem;
}

.heritage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.heritage-card:hover .heritage-photo img {
  transform: scale(1.06);
}

.heritage-photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(122,43,31,0.15), rgba(122,43,31,0.35));
  mix-blend-mode: multiply;
}

.heritage-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: #3a352f;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 30px;
}

.heritage-card-title {
  font-family: var(--heritage-serif);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #241f1c;
  margin-bottom: 0.6rem;
}

.heritage-card-quote {
  font-family: var(--heritage-serif);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #6b6459;
  border-left: 2px solid var(--heritage-maroon);
  padding-left: 0.85rem;
  margin: 0;
}

@media (max-width: 991px) {
  .heritage-intro { max-width: none; margin-top: 1.5rem; }
}

/* ==========================================================================
   SECTION: Contact page — Ucapan Terima Kasih
   (dipindahkan dari contact.blade.php)
   ========================================================================== */

.thankyou-nature-section {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.9) 0%, rgba(6, 78, 59, 0.85) 100%),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.thankyou-media-box {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.thankyou-media-box img,
.thankyou-media-box video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   SECTION: Contact page — Hero (background, quick info mengambang)
   (dipindahkan dari contact.blade.php)
   ========================================================================== */

.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: visible; /* supaya quickinfo bisa mengambang keluar */
  isolation: isolate;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.contact-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,20,0.75) 0%, rgba(15,23,20,0.55) 55%, rgba(15,23,20,0.85) 100%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 1rem 100px;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  margin: 1rem 0 1.25rem;
}

.contact-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0 auto 1.5rem;
  border-radius: 999px;
}

.contact-hero-desc {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-hero-quickinfo {
  position: relative;
  z-index: 3;
  margin-top: -70px; /* mengambang menimpa batas bawah hero */
}

.quickinfo-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.quickinfo-card:hover {
  transform: translateY(-6px);
}

.quickinfo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-nature);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.quickinfo-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.quickinfo-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact-hero { min-height: 50vh; }
  .contact-hero-content { padding: 64px 1rem 40px; }
  .contact-hero-quickinfo { margin-top: 0; }
}

/* ==========================================================================
   SECTION: Destination Detail — Gambar 3D, Caption, Galeri Atraksi
   (dipindahkan dari destinations-detail.blade.php)
   ========================================================================== */

/* Container untuk perspektif 3D */
.image-3d-wrapper {
  perspective: 1000px;
  position: relative;
}

/* Card Gambar Utama 3D */
.image-3d-card {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(2deg) rotateY(-3deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
  /* Layered Shadow untuk efek melayang 3D */
  box-shadow:
      0 10px 20px rgba(0, 0, 0, 0.12),
      0 20px 35px rgba(0, 0, 0, 0.15),
      -10px 15px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Efek Hover 3D */
.image-3d-wrapper:hover .image-3d-card {
  transform: rotateX(0deg) rotateY(0deg) translateZ(10px) translateY(-8px);
  box-shadow:
      0 20px 30px rgba(0, 0, 0, 0.18),
      0 30px 50px rgba(0, 0, 0, 0.22),
      0 0 25px rgba(40, 167, 69, 0.25); /* Glow hijau halus */
}

/* Efek Zoom Gambar */
.image-3d-card img {
  transition: transform 0.6s ease;
}
.image-3d-wrapper:hover .image-3d-card img {
  transform: scale(1.05);
}

/* Overlay Caption Gambar Utama */
.image-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #ffffff;
  padding: 1.5rem 1.25rem 1rem 1.25rem;
  transform: translateZ(20px);
}

.image-caption-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.image-caption-sub {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Styling Card Galeri Atraksi & Hiburan */
.attraction-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(40, 167, 69, 0.3);
}

.attraction-img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.attraction-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-img-wrapper img {
  transform: scale(1.08);
}

.attraction-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-weight: 500;
}

/* ==========================================================================
   SECTION: Destinations page — Hero Carousel (destinations.blade.php)
   ========================================================================== */

.hc-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #fff;
    isolation: isolate;
}

/* ---------- Media layer (yang boleh di-clip) ---------- */
.hc-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    z-index: 0;
}

/* ---------- Slides ---------- */
.hc-slides { position: absolute; inset: 0; }

.hc-slide {
    position: absolute; inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease;
    z-index: 0;
}
.hc-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.hc-slide-img {
    position: absolute; inset: -20px;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}
.hc-slide.is-active .hc-slide-img { transform: scale(1); }

.hc-slide-fallback {
    background: linear-gradient(135deg, #0b332f 0%, #1d6e64 60%, #2a8a7c 100%);
}

.hc-slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(10,45,42,0.92) 0%, rgba(15,63,58,0.85) 45%, rgba(20,80,72,0.7) 100%),
        radial-gradient(circle at 85% 15%, rgba(217,164,65,0.18), transparent 55%);
}

/* ---------- Content ---------- */
.hc-content { position: relative; z-index: 2; text-align: center; padding: 0 1rem; }

.hc-content .section-eyebrow {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.hc-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    margin: 1rem 0 1.25rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.hc-desc {
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

.hc-caption-box {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-align: left;
    max-width: 92vw;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hc-caption-box:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.hc-caption-box i { font-size: 1.2rem; color: #d9a441; flex-shrink: 0; }
.hc-caption-location { font-weight: 700; font-size: 0.92rem; color: #fff; }
.hc-caption-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}
.hc-caption-go { color: rgba(255,255,255,0.6) !important; font-size: 1rem !important; margin-left: 0.25rem; }

/* ---------- Arrows ---------- */
.hc-arrow {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background 0.25s ease, transform 0.25s ease;
}
.hc-arrow:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.hc-arrow-prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.hc-arrow-next { right: clamp(0.75rem, 3vw, 2.5rem); }

@media (max-width: 767.98px) {
    .hc-arrow { display: none; }
}

/* ---------- Dots + progress ---------- */
.hc-dots {
    position: absolute;
    bottom: clamp(6.5rem, 14vh, 8.5rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}
.hc-dot {
    position: relative;
    width: 38px; height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
    border: none;
    padding: 0;
}
.hc-dot-progress {
    position: absolute; inset: 0;
    width: 0%;
    background: #d9a441;
    border-radius: 999px;
}
.hc-dot.is-active .hc-dot-progress { animation: hcProgress 6s linear forwards; }
.hc-dot:not(.is-active) .hc-dot-progress { width: 0; }

@keyframes hcProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* ---------- Search bar melayang (overlap) — Destinations hero ---------- */
.hc-hero .hc-search-float {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 5;
    width: min(640px, 92vw);
}

.hc-hero .hc-search-form {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    padding: 0.6rem 0.6rem 0.6rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(11,51,47,0.18);
}
.hc-hero .hc-search-form i.bi-search { color: #1d6e64; font-size: 1.05rem; }
.hc-hero .hc-search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1a3b37;
    background: transparent;
}
.hc-hero .hc-search-form input::placeholder { color: #9aa8a5; }
.hc-hero .hc-search-form button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: #1d6e64;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.hc-hero .hc-search-form button:hover { background: #145b53; }

@media (max-width: 575.98px) {
    .hc-hero .hc-search-form button span { display: none; }
}

/* ==========================================================================
   SECTION: Auth — Halaman Login (login.blade.php)
   ========================================================================== */

.auth-section {
    padding: 56px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

/* ---------- Panel kiri ---------- */
.auth-side {
    position: relative;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
}

.auth-side-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.auth-side-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,20,0.75) 0%, rgba(31,77,58,0.85) 100%);
    z-index: 1;
}

.auth-side-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    color: #fff;
}

.auth-side-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
}

.auth-welcome {
    margin: 24px 0;
}

.auth-welcome-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 18px;
}

.auth-welcome-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    max-width: 320px;
}

.auth-side-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin: 0;
}

/* ---------- Panel kanan (form) ---------- */
.auth-form-wrap {
    padding: 48px 40px;
}

/* ---------- Social login ---------- */
.auth-social-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social-nature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--border-soft);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-social-nature:hover {
    border-color: var(--sea-blue);
    background: var(--grey-light);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-social-nature img {
    flex-shrink: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.8rem;
    margin-top: 26px;
    margin-bottom: 18px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-soft);
}

.auth-divider span {
    padding: 0 14px;
    white-space: nowrap;
}

/* ---------- Baris: Ingat saya + Lupa password ---------- */
.auth-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    margin: 0;
}

.auth-remember .form-check-input {
    margin: 0;
    width: 18px;
    height: 18px;
    border-color: var(--border-soft);
    cursor: pointer;
}

.auth-remember .form-check-input:checked {
    background-color: var(--leaf-green);
    border-color: var(--leaf-green);
}

.auth-remember .form-check-label {
    font-size: 0.88rem;
    color: var(--ink-soft);
    cursor: pointer;
}

.auth-forgot-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sea-blue-dark);
    text-decoration: none;
    white-space: nowrap;
}

.auth-forgot-link:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .auth-form-wrap {
        padding: 36px 24px;
    }
}

@media (max-width: 575px) {
    .auth-section { padding: 32px 0 64px; }
    .auth-form-wrap { padding: 28px 18px; }
    .auth-row-between {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   SECTION: Auth — Halaman Register (register.blade.php)
   Catatan: class dasar .auth-section, .auth-wrap, .auth-side, .auth-form-wrap,
   dll sudah didefinisikan di section "Auth — Halaman Login" di atas dan
   dipakai bersama oleh halaman login & register. Di sini hanya ditambahkan
   class khusus register (efek pantun mengetik).
   ========================================================================== */

.auth-pantun {
    min-height: 110px;
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.auth-pantun-line {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    white-space: pre-wrap;
}

.auth-pantun-cursor {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 700;
    animation: pantunBlink 0.9s step-end infinite;
    margin-left: 2px;
}

@keyframes pantunBlink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

/* ==========================================================================
   SECTION: Ulasan — Preview bintang rating (ulasan-create.blade.php)
   ========================================================================== */

.rating-preview {
    font-size: 1.4rem;
    color: #dcdcdc;
    margin-bottom: 0.5rem;
}

.rating-preview i.bi-star-fill {
    color: #f0ad4e;
}

/*Admin - Destinasi - Form Tambah/Edit*/
.submenu {
    font-size: 14px !important;
    padding-left: 2.5rem !important;
    background: rgba(255,255,255,0.05) !important;
    margin-bottom: 2px !important;
}

.submenu:hover {
    background: #C9A227 !important;
    color: #0E3B36 !important;
}

/* ==========================================================================

   SECTION: Admin Dashboard — Overview (kartu metrik, chart, top destinations)
   ========================================================================== */
/* ----- Kartu Metrik ----- */
.metric-card-nature {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 26px 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.metric-card-nature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.metric-card-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.metric-card-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.metric-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.metric-card-icon--green {
  background: rgba(31, 77, 58, 0.10);
  color: var(--leaf-green);
}

.metric-card-icon--blue {
  background: rgba(46, 111, 149, 0.10);
  color: var(--sea-blue);
}

.metric-card-icon--gold {
  background: rgba(214, 168, 90, 0.16);
  color: var(--accent-gold-dark);
}

/* ----- Kartu Chart / panel umum dashboard ----- */

.chart-card-nature {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.chart-period-badge {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--grey-light);
  border: 1px solid var(--border-soft);
  padding: 5px 14px;
  border-radius: 999px;
}

/* ----- Top Destinations (list foto mini) ----- */
.top-destinasi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-radius: 14px;
  transition: var(--transition-smooth);
}
.top-destinasi-item:hover {
  background: rgba(31, 77, 58, 0.05);
  transform: translateX(2px);
}
.top-destinasi-rank {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold-dark);
  width: 22px;
  flex-shrink: 0;
}
.top-destinasi-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.top-destinasi-thumb--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-nature);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.top-destinasi-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-destinasi-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.min-width-0 {
  min-width: 0;
}

/* Pastikan container/parent sidebar Anda menggunakan display: flex dan flex-direction: column */
html {
  min-height: 100%;
}

body.admin-layout {
  display: flex;
  min-height: 100vh;
  margin: 0;
  background-color: var(--bg-main);
  color: var(--text-admin);
}

.sidebar {
  width: 220px;
  background: var(--bg-sidebar-admin);
  color: #fff;
  padding: 1.5rem 1rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  /* min-height: 100vh dihapus — biarkan flexbox yang menyamakan tinggi
     otomatis mengikuti .main-content, meskipun kontennya lebih panjang
     dari satu layar */
}

/* Dorong form logout ke bagian paling bawah */
.logout-form {
    margin-top: auto;
    width: 100%; /* Memastikan tombol merentang penuh jika diperlukan */
}

/* Styling tambahan untuk merapikan tombol logout */
.logout-btn {
    background: transparent;
    border: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
}

.live-status-badge.is-confirmed {
  background: rgba(34, 197, 94, 0.12);
  color: #16A34A;
}

.live-status-badge.is-pending {
  background: rgba(234, 179, 8, 0.12);
  color: #CA8A04;
}

.live-status-badge.is-cancelled {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
}


/* ==========================================================================
   SECTION: Admin — Pengaturan (Settings) page
   Tempel blok ini di PALING BAWAH file style.css (setelah blok admin panel
   yang sudah ada sebelumnya).
   ========================================================================== */

/* ----- Kolom navigasi tab kiri ----- */
.settings-nav-col {
  border-right: 1px solid var(--border-admin, var(--border-soft));
  padding: 24px 16px;
}

.settings-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.settings-tab-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  width: 100%;
  transition: var(--transition-smooth);
}

.settings-tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: rgba(31, 77, 58, 0.08);
  color: var(--leaf-green);
  transition: var(--transition-smooth);
}

.settings-tab-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-admin, var(--ink));
}

.settings-tab-desc {
  display: block;
  font-size: 0.76rem;
  color: var(--text-admin-muted, var(--ink-soft));
}

.settings-tab-link:hover {
  background: rgba(31, 77, 58, 0.06);
}

.settings-tab-link.active {
  background: var(--gradient-nature);
}

.settings-tab-link.active .settings-tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.settings-tab-link.active .settings-tab-title,
.settings-tab-link.active .settings-tab-desc {
  color: #fff;
}

/* ----- Konten kanan ----- */
.settings-tab-content {
  padding: 28px 32px;
}

.settings-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-admin, var(--ink));
  margin-bottom: 4px;
}

.settings-section-desc {
  font-size: 0.85rem;
  color: var(--text-admin-muted, var(--ink-soft));
  margin-bottom: 20px;
}

.settings-divider {
  border: none;
  border-top: 1px solid var(--border-admin, var(--border-soft));
  margin: 28px 0;
}

/* ----- Avatar upload ----- */
.settings-avatar-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

.settings-avatar-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--border-admin, var(--border-soft));
  display: block;
}

.settings-avatar-camera-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  /* styling ikon kamera lainnya */
}

.settings-avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-nature);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 2px solid var(--bg-card-admin, #fff);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.settings-avatar-edit:hover {
  transform: scale(1.08);
}

/* ----- Logo upload (Umum & Website) ----- */
.settings-logo-box {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  border: 1.5px dashed var(--border-admin, var(--border-soft));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-admin-muted, var(--ink-soft));
  flex-shrink: 0;
  background: var(--bg-main, var(--grey-light));
}

/* ----- Toggle switch ----- */
.settings-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border-admin, var(--border-soft));
}

.form-switch-nature {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.form-switch-nature input {
  opacity: 0;
  width: 0;
  height: 0;
}

.form-switch-nature-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #d1d5db;
  border-radius: 999px;
  transition: var(--transition-smooth);
}

.form-switch-nature-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.form-switch-nature input:checked + .form-switch-nature-slider {
  background: var(--gradient-nature);
}

.form-switch-nature input:checked + .form-switch-nature-slider::before {
  transform: translateX(20px);
}

/* ----- Panel info akun ----- */
.settings-info-panel {
  background: var(--bg-main, var(--grey-light));
  border-radius: 16px;
  padding: 6px 20px;
}

.settings-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-admin, var(--border-soft));
}

.settings-info-item:last-child {
  border-bottom: none;
}

.settings-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-admin-muted, var(--ink-soft));
}

.settings-info-label i {
  color: var(--leaf-green);
}

.settings-info-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-admin, var(--ink));
}

@media (max-width: 767px) {
  .settings-nav-col {
    border-right: none;
    border-bottom: 1px solid var(--border-admin, var(--border-soft));
  }
  .settings-tab-content {
    padding: 24px 20px;
  }
}

/* =============================================================
   DESTINASI PILIHAN — Kategori Cepat (Icon + Nama)
   Kartu putih, rounded, shadow melayang lembut, ikon kotak kecil.
   Warna mengacu ke design tokens :root (Editorial Modern + Swiss).
   ============================================================= */

.destinasi-pilihan-section {
    padding: 56px 0 64px;
    background: var(--grey-light);
}

.destinasi-pilihan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 720px;   /* jaga kartu tetap kompak meski layar penuh, seperti tampilan half-screen */
    margin: 0 auto;
}

.destinasi-pilihan-card {
    display: flex;
    flex-direction: column;
    align-items: center;   /* ikon & teks rata tengah */
    text-align: center;    /* ikon & teks rata tengah */
    gap: 14px;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.destinasi-pilihan-card:hover,
.destinasi-pilihan-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ---------- Ikon: kotak kecil membulat ---------- */
.destinasi-pilihan-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.35rem;
    color: var(--card-accent, var(--leaf-green));
    background: var(--card-accent-soft, rgba(31, 77, 58, 0.1));
    transition: var(--transition-smooth);
}

.destinasi-pilihan-card:hover .destinasi-pilihan-card__icon {
    transform: scale(1.06);
}

.destinasi-pilihan-card__nama {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--ink);
}

/* Sub-label opsional di bawah nama (mis. jumlah destinasi per kategori) */
.destinasi-pilihan-card__label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-top: -8px;
}

/* ---------- Warna aksen bergilir a/b/c: hijau / biru / emas ---------- */
.destinasi-pilihan-card--a {
    --card-accent: var(--leaf-green);
    --card-accent-soft: rgba(31, 77, 58, 0.1);
}

.destinasi-pilihan-card--b {
    --card-accent: var(--sea-blue);
    --card-accent-soft: rgba(46, 111, 149, 0.1);
}

.destinasi-pilihan-card--c {
    --card-accent: var(--accent-gold-dark);
    --card-accent-soft: rgba(214, 168, 90, 0.16);
}

/* ---------- Kategori aktif: ikon jadi solid + kartu lebih menonjol ---------- */
.destinasi-pilihan-card.is-active {
    box-shadow: var(--shadow-hover);
}

.destinasi-pilihan-card.is-active .destinasi-pilihan-card__icon {
    color: var(--white);
    background: var(--card-accent, var(--leaf-green));
}

.destinasi-pilihan-card.is-active .destinasi-pilihan-card__nama {
    color: var(--leaf-green-dark);
}

@media (prefers-reduced-motion: reduce) {
    .destinasi-pilihan-card,
    .destinasi-pilihan-card__icon {
        transition: none;
    }
    .destinasi-pilihan-card:hover {
        transform: none;
    }
}

/* ---------- Mobile: grid 2 kolom ---------- */
@media (max-width: 767px) {
    .destinasi-pilihan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .destinasi-pilihan-card {
        padding: 20px 16px;
    }

    .destinasi-pilihan-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.15rem;
    }

    .destinasi-pilihan-card__nama {
        font-size: 0.95rem;
    }
}