@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
button,
.btn,
input[type="submit"],
input[type="button"],
.nav-link,
.navbar-toggler,
.kartu,
.destinasi-card,
.card,
[onclick],
select {
  cursor: pointer;
}

body {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
}

:root{
  --bromo-amber: #E07B39;
  --bromo-amber-dark: #C1602A;
  --bromo-navy: #1F2A37;
}

/* ===== HEADER ===== */

header {
  background-color: #3d68a5;
  padding: 16px 10px;
}

.logo {
  color: #050505;
  font-size: 24px;
  font-weight: bold;
}

/* ================= */
/* NAVBAR BASE */
/* ================= */
.custom-navbar {
  background-color: #3f6ea1;
  position: relative;
  padding: 0 !important;
}

.navbar-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  margin: 0;
}

.navbar-inner.container {
  max-width: 100% !important;
  padding: 12px 24px !important;
}

.navbar-brand {
  order: 1 !important;
  font-size: 22px;
}

.navbar-toggler {
  order: 2 !important;
  margin-left: auto !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-collapse {
  order: 3 !important;
}

/* ================= */
/* MENU - DESKTOP (≥992px): logo kiri, menu kanan sejajar */
/* ================= */
@media (min-width: 992px) {
  .navbar-nav {
    margin-left: auto !important;
    flex-direction: row !important;
    gap: 6px;
  }

  .navbar-nav .nav-link {
    padding: 10px 18px !important;
    border-radius: 6px;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
  }

  .navbar-nav .nav-link.active {
    background-color: #e8945a;
    color: #ffffff !important;
  }
}

/* ================= */
/* MENU - MOBILE (<992px): dropdown penuh di bawah navbar */
/* ================= */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-basis: 100% !important;
    background-color: #0a2647;
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0;
    padding: 20px 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 16px 0 !important;
    width: 100%;
  }

  .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.06);
  }
}

.navbar-nav .nav-link {
  color: #c6d0dd;
  font-weight: bold;
  text-decoration: none;
}

.nav-link i {
  font-size: 16px;
  width: 20px;
}

/* ===== HERO SECTION ===== */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transform: scale(1.08);
  animation: heroFadeIn 1.8s ease-out forwards;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10, 36, 114, 0.45), rgba(63, 110, 161, 0.6));
  opacity: 0;
  animation: heroOverlayFadeIn 1.2s ease-out 0.3s forwards;
}

.hero-fade {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.breadcrumb-simple {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0b374;
  margin-bottom: 16px;
}

.breadcrumb-simple a {
  color: #f4f7fb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-simple a:hover {
  color: #e8945a;
}

.breadcrumb-simple span:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #a9bcd6;
}

.breadcrumb-simple span:last-child {
  color: #a9bcd6;
}

/* ===== TENTANG ===== */

.tentang-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: #0d3b7a;
}

.tentang-section {
  background: linear-gradient(160deg, #0a2647 0%, #3f6ea1 100%);
}

.tentang-overlay {
  background: none;
}

.tentang-card {
  background-color: #ffffff;
  color: #333333;
}

.tentang-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 40px auto 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tentang-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tentang-stat i {
  font-size: 22px;
  margin-bottom: 4px;
}

.tentang-stat--tinggi i { color: #a9c4e8; }
.tentang-stat--gunung i { color: #f0b374; }
.tentang-stat--nasional i { color: #8fce9e; }

.tentang-stat__value {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
  color: #ffffff;
}

.tentang-stat__label {
  font-size: 12px;
  color: #c6d0dd;
}

@media (max-width: 576px) {
  .tentang-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
}

/* ANIMASI TENTANG */
.tentang-section .badge {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tentang-section h2 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.tentang-section .tentang-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s, box-shadow 0.4s ease;
}

.tentang-section .tentang-card p,
.tentang-section .tentang-stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tentang-section .tentang-card p:nth-child(1) { transition-delay: 0.5s; }
.tentang-section .tentang-card p:nth-child(2) { transition-delay: 0.65s; }
.tentang-section .tentang-card p:nth-child(3) { transition-delay: 0.8s; }
.tentang-section .tentang-stats .tentang-stat:nth-child(1) { transition-delay: 0.95s; }
.tentang-section .tentang-stats .tentang-stat:nth-child(2) { transition-delay: 1.05s; }
.tentang-section .tentang-stats .tentang-stat:nth-child(3) { transition-delay: 1.15s; }

.tentang-section.show .badge,
.tentang-section.show h2,
.tentang-section.show .tentang-card,
.tentang-section.show .tentang-card p,
.tentang-section.show .tentang-stat {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tentang-section .tentang-card:hover {
  box-shadow: 0 12px 32px rgba(10, 36, 114, 0.18);
}

/* ===== DESTINASI ===== */

.destinasi {
  background: linear-gradient(160deg, #3f6ea1 0%, #0d3b7a 100%);
  padding: 60px 40px;
}

.destinasi h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #eff0f1;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.destinasi h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e8945a;
  margin: 12px auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.5s ease 0.3s;
}

.destinasi.show h2 {
  opacity: 1;
  transform: translateY(0);
}

.destinasi.show h2::after {
  transform: scaleX(1);
}

/* ANIMASI MUNCUL - JUDUL & SUBJUDUL DESTINASI */
.destinasi .text-center.mb-5 h2,
.destinasi .text-center.mb-5 p {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.destinasi.show .text-center.mb-5 h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.destinasi.show .text-center.mb-5 p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* ================= */
/* KARTU (versi flat/manual) */
/* ================= */
.kartu-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.kartu {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.85) rotate(-3deg);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.kartu img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: transform 0.5s ease;
}

.destinasi.show .kartu {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.kartu-container .kartu:nth-child(1) { transition-delay: 0.1s; }
.kartu-container .kartu:nth-child(2) { transition-delay: 0.25s; }
.kartu-container .kartu:nth-child(3) { transition-delay: 0.4s; }

.kartu:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 16px 30px rgba(10, 36, 114, 0.2);
}

.kartu:hover img {
  transform: scale(1.1) rotate(1deg);
}

.status-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.status-buka {
  background-color: #e6f4ea;
  color: #4d8b3a;
}

.status-tutup {
  background-color: #fbeaea;
  color: #c0392b;
}

@keyframes goyang {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(-4deg); opacity: 1; }
  80% { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ================= */
/* DESTINASI-CARD (versi Bootstrap) */
/* ================= */
.destinasi-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destinasi .destinasi-card {
  opacity: 0;
  transform: translateY(50px) scale(0.8) rotate(-4deg);
  transition: opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.destinasi.show .destinasi-card {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.destinasi .row > div:nth-child(1) .destinasi-card { transition-delay: 0.1s; }
.destinasi .row > div:nth-child(2) .destinasi-card { transition-delay: 0.3s; }
.destinasi .row > div:nth-child(3) .destinasi-card { transition-delay: 0.5s; }

.destinasi-card:hover {
  transform: translateY(-12px) rotate(-1.5deg) scale(1.02) !important;
  box-shadow: 0 18px 32px rgba(63, 110, 161, 0.25) !important;
}

.destinasi-card img {
  transition: transform 0.5s ease;
}

.destinasi-card:hover img {
  transform: scale(1.12) rotate(1deg);
}

.destinasi-card .badge {
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

@keyframes badgePop {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  60% { transform: scale(1.25) rotate(-8deg); opacity: 1; }
  80% { transform: scale(0.9) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.destinasi-card .btn {
  transition: transform 0.2s ease;
}

.destinasi-card .btn:hover {
  transform: scale(1.08) rotate(-2deg);
}

/* ===== KONTAK (versi sederhana, dipakai di beranda) ===== */

.kontak {
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.kontak h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #0d3b7a;
}

.kontak form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.kontak label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}

.kontak input,
.kontak textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 15px;
}

.kontak button {
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
}

.kontak button:hover {
  background-color: #0a58ca;
}

.pos-kontak {
  background-color: #0a2647;
  padding: 96px 40px;
  position: relative;
}

.pos-kontak .container {
  max-width: 1100px;
}

.pos-kontak__eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8945a;
  margin-bottom: 18px;
}

.pos-kontak__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  color: #f4f7fb;
  max-width: 680px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.pos-kontak__subtitle {
  font-family: 'Inter', sans-serif;
  color: #a9bcd6;
  font-size: 16px;
  margin-bottom: 56px;
}

.pos-kontak__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}

@media (max-width: 900px) {
  .pos-kontak__grid {
    grid-template-columns: 1fr;
  }
}

.pos-kontak__panel {
  border-radius: 4px;
  padding: 40px 36px;
}

.pos-kontak__panel--info {
  background-color: #123561;
  border: 1px solid #1d4a80;
  background-image: repeating-radial-gradient(
    circle at 25% 20%,
    transparent 0px,
    transparent 22px,
    rgba(244, 247, 251, 0.05) 23px
  );
  color: #f4f7fb;
}

.pos-kontak__coord {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #e8945a;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(244, 247, 251, 0.15);
}

.pos-kontak__log {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pos-kontak__log li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pos-kontak__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #a9bcd6;
  letter-spacing: 0.05em;
}

.pos-kontak__divider {
  height: 1px;
  background: rgba(244, 247, 251, 0.15);
  margin: 32px 0 24px;
}

.pos-kontak__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.pos-kontak__social a {
  color: #f4f7fb;
  font-size: 18px;
  opacity: 0.75;
  transition: opacity 0.9s ease, color 0.5s ease;
}

.pos-kontak__social a:hover {
  opacity: 1;
  color: #e8945a;
}

.pos-kontak__panel--form {
  background-color: #f4f7fb;
}

.pos-kontak__field {
  margin-bottom: 20px;
}

.pos-kontak__field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3f6ea1;
  margin-bottom: 8px;
}

.pos-kontak__field input,
.pos-kontak__field textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cdd9e8;
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #0a2647;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pos-kontak__field input:focus,
.pos-kontak__field textarea:focus {
  outline: none;
  border-color: #e8945a;
  box-shadow: 0 0 0 3px rgba(232, 148, 90, 0.18);
}

.pos-kontak__field input::placeholder,
.pos-kontak__field textarea::placeholder {
  color: #9aabc2;
}

.pos-kontak__submit {
  width: 100%;
  background-color: #e8945a;
  color: #ffffff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.2s ease;
}

.pos-kontak__submit:hover {
  background-color: #d67f42;
}

.pos-kontak__maplink {
  color: #f4f7fb;
  text-decoration: none;
  border-bottom: 1px dashed rgba(244, 247, 251, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pos-kontak__maplink:hover {
  color: #e8945a;
  border-color: #e8945a;
}

/* ===== FOOTER ===== */

.footer {
  background-color: #0d3b7a;
  color: #ffffff;
  padding: 40px 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-col p {
  color: #cfd8e3;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid #345a95;
  margin-top: 30px;
  padding-top: 16px;
  color: #cfd8e3;
  font-size: 13px;
}

/* ============================================================ */
/* ===== HALAMAN DETAIL DESTINASI (destinasi-detail.blade) ===== */
/* ============================================================ */

.detail-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 38, 71, 0.35) 0%, rgba(10, 38, 71, 0.55) 45%, rgba(10, 38, 71, 0.95) 100%);
}

.detail-hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 48px;
}

.detail-hero__breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0b374;
  margin-bottom: 18px;
}

.detail-hero__breadcrumb a {
  color: #f4f7fb;
  text-decoration: none;
  border-bottom: 1px dashed rgba(244, 247, 251, 0.4);
}

.detail-hero__breadcrumb a:hover {
  color: #e8945a;
  border-color: #e8945a;
}

.detail-hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: #f4f7fb;
  line-height: 1.15;
  margin-bottom: 14px;
}

.detail-hero__desc {
  font-family: 'Inter', sans-serif;
  color: #d9e4f0;
  max-width: 600px;
  font-size: 16px;
  margin-bottom: 28px;
}

.detail-hero__badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ===== BODY ===== */

.detail-body {
  background: #f4f7fb;
  padding: 56px 0 72px;
}

.detail-section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: #0a2647;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e8f2;
}

.detail-section {
  margin-bottom: 40px;
}

.detail-section p {
  font-family: 'Inter', sans-serif;
  color: #333333;
  margin-bottom: 12px;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
  font-family: 'Inter', sans-serif;
  color: #333333;
}

.detail-list--dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8945a;
}

.detail-list--square li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #3f6ea1;
}

/* ===== SIDEBAR PANEL (reuse gaya pos-kontak) ===== */

.detail-panel {
  border-radius: 4px;
  padding: 28px 26px;
  margin-bottom: 20px;
}

.detail-panel--info {
  background-color: #123561;
  border: 1px solid #1d4a80;
  background-image: repeating-radial-gradient(
    circle at 25% 20%,
    transparent 0px,
    transparent 22px,
    rgba(244, 247, 251, 0.05) 23px
  );
  color: #f4f7fb;
}

.detail-panel__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8945a;
  margin-bottom: 20px;
}

.detail-panel__row {
  margin-bottom: 16px;
}

.detail-panel__row:last-of-type {
  margin-bottom: 0;
}

.detail-panel__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a9bcd6;
  margin-bottom: 4px;
}

.detail-panel__value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #f4f7fb;
}

.detail-panel__cta {
  display: block;
  text-align: center;
  margin-top: 22px;
  background-color: #e8945a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.detail-panel__cta:hover {
  background-color: #d67f42;
  color: #ffffff;
}

.detail-panel--map {
  background-color: #ffffff;
  border: 1px solid #e0e8f2;
}

.detail-panel--map .detail-panel__title {
  color: #3f6ea1;
}

.detail-map {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.detail-map iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
}

.detail-map-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #3f6ea1;
  text-decoration: none;
  border-bottom: 1px dashed #3f6ea1;
}

.detail-map-link:hover {
  color: #e8945a;
  border-color: #e8945a;
}

@media (max-width: 991px) {
  .detail-hero { min-height: 50vh; }
  .detail-hero__inner { padding: 90px 0 36px; }
}

.search-bromo {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-bromo .search-icon {
  background-color: #fff;
  border: 1px solid #e0dcd5;
  border-right: none;
  color: #e8734a;
}

.search-bromo .form-control {
  border: 1px solid #e0dcd5;
  border-left: none;
  border-right: none;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.search-bromo .form-control:focus {
  box-shadow: none;
  border-color: #e0dcd5;
}

.search-bromo .btn-search {
  background-color: #e8734a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.search-bromo .btn-search:hover {
  background-color: #d9622f;
  color: #fff;
}

.pagination {
  gap: 6px;
}

.pagination .page-link {
  border: none;
  border-radius: 8px;
  color: #6c4a2f;
  background-color: #f5f0e8;
  padding: 8px 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  background-color: #e8734a;
  color: #fff;
}

.pagination .page-item.active .page-link {
  background-color: #e8734a;
  border-color: #e8734a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(232, 115, 74, 0.4);
}

.pagination .page-item.disabled .page-link {
  background-color: #f5f0e8;
  color: #bbb;
}

/* ============================================================ */
/* ===== ADMIN: FORM USER (Tambah / Edit) ===== */
/* ============================================================ */

.form-header{
  background: linear-gradient(135deg, var(--bromo-amber) 0%, var(--bromo-amber-dark) 100%);
  border-radius: 1rem 1rem 0 0;
  padding: 2rem 2rem 1.5rem;
  color: #fff;
}
.form-header .icon-wrap{
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.form-header h2{ margin: 0; font-weight: 700; font-size: 1.4rem; }
.form-header p{ margin: 0.15rem 0 0; opacity: 0.9; font-size: 0.9rem; }

.form-card{
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.1);
}

.form-floating > .form-control,
.form-floating > .form-select{
  border-radius: 0.6rem;
  border-color: #E2E5E9;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus{
  border-color: var(--bromo-amber);
  box-shadow: 0 0 0 0.2rem rgba(224, 123, 57, 0.15);
}

.password-wrap{ position: relative; }
.password-toggle{
  position: absolute;
  right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: #8A94A0; cursor: pointer;
  z-index: 5; font-size: 0.85rem;
  padding: 0;
}
.password-toggle:hover{ color: var(--bromo-amber); }

.role-options{ display: flex; gap: 0.75rem; }
.role-option{ flex: 1; }
.role-option input{ display: none; }
.role-option label{
  display: flex; flex-direction: column; align-items: center;
  gap: 0.35rem;
  border: 1.5px solid #E2E5E9;
  border-radius: 0.75rem;
  padding: 0.9rem 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  color: #6B7280;
  font-size: 0.85rem;
  font-weight: 600;
}
.role-option label i{ font-size: 1.3rem; color: #A9B2BC; transition: color 0.15s ease; }
.role-option input:checked + label{
  border-color: var(--bromo-amber);
  background: rgba(236, 102, 13, 0.06);
  color: var(--bromo-amber-dark);
}
.role-option input:checked + label i{ color: var(--bromo-amber); }

.btn-outline-cancel{
  border-radius: 0.6rem;
  border-color: #D9DEE3;
  color: #6B7280;
  font-weight: 600;
}

/* ============================================================ */
/* ===== ADMIN: DAFTAR USER ===== */
/* ============================================================ */

.page-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.page-header h2{
  font-weight: 700;
  color: var(--bromo-navy);
  margin: 0;
}
.page-header p{
  color: #8A94A0;
  font-size: 0.9rem;
  margin: 0.15rem 0 0;
}

.btn-bromo{
  background: linear-gradient(135deg, var(--bromo-amber) 0%, var(--bromo-amber-dark) 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 0.6rem;
  padding: 0.65rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-bromo:hover{ opacity: 0.92; color: #fff; }

.user-table-card{
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.08);
}

.user-table{
  margin-bottom: 0;
}
.user-table thead th{
  background: var(--bromo-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  padding: 0.9rem 1rem;
}
.user-table tbody td{
  padding: 0.85rem 1rem;
  vertical-align: middle;
  border-color: #EEF0F2;
  font-size: 0.92rem;
}
.user-table tbody tr:hover{
  background: rgba(224, 123, 57, 0.04);
}

.user-cell{
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.user-avatar{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(224, 123, 57, 0.12);
  color: var(--bromo-amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.user-name{ font-weight: 600; color: var(--bromo-navy); }
.user-email{ font-size: 0.82rem; color: #8A94A0; }

.role-badge{
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.role-badge.admin{
  background: rgba(220, 53, 69, 0.1);
  color: #DC3545;
}
.role-badge.user{
  background: rgba(108, 117, 125, 0.12);
  color: #6C757D;
}

.action-btns{
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.btn-icon{
  width: 34px; height: 34px;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #E2E5E9;
  background: #fff;
  color: #6B7280;
  transition: all 0.15s ease;
  padding: 0;
}
.btn-icon.edit:hover{
  border-color: var(--bromo-amber);
  color: var(--bromo-amber-dark);
  background: rgba(224, 123, 57, 0.06);
}
.btn-icon.delete:hover{
  border-color: #DC3545;
  color: #DC3545;
  background: rgba(220, 53, 69, 0.06);
}

.empty-state{
  text-align: center;
  padding: 3rem 1rem;
  color: #8A94A0;
}
.empty-state i{
  font-size: 2.2rem;
  color: #D9DEE3;
  margin-bottom: 0.6rem;
  display: block;
}

/* ============================================================ */
/* ===== ADMIN: MODAL KONFIRMASI HAPUS ===== */
/* ============================================================ */

.modal-content.modal-bromo{
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 42, 55, 0.28);
}

.modal-bromo .modal-visual{
  background: var(--bromo-navy);
  height: 96px;
  position: relative;
  overflow: hidden;
}
.modal-bromo .modal-visual svg{
  position: absolute;
  bottom: -4px; left: 0; width: 100%; height: 70px;
}
.modal-bromo .modal-visual .warning-badge{
  position: absolute;
  top: 18px; left: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  z-index: 2;
}

.modal-bromo .modal-body{
  padding: 1.6rem 1.75rem 0.5rem;
}

.modal-bromo .modal-eyebrow{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bromo-amber-dark);
  margin-bottom: 0.4rem;
}

.modal-bromo h5{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--bromo-navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.modal-bromo p{
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.modal-bromo p strong{
  color: var(--bromo-navy);
  font-weight: 700;
}

.modal-bromo .modal-footer{
  border: none;
  padding: 1.4rem 1.75rem 1.75rem;
  gap: 0.6rem;
}

.modal-bromo .btn-cancel-modal{
  border-radius: 0.6rem;
  border: 1.5px solid #E2E5E9;
  color: #6B7280;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  background: #fff;
}
.modal-bromo .btn-cancel-modal:hover{
  border-color: #C9CDD3;
  background: #F8F9FA;
}

.modal-bromo .btn-delete-modal{
  border-radius: 0.6rem;
  background: var(--bromo-navy);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.modal-bromo .btn-delete-modal:hover{
  background: #0B1D30;
  color: #fff;
}

.modal-backdrop.show{
  opacity: 0.6;
}

.nav-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d67f42;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-icon-circle:hover {
    background-color: #c56b2e;
    color: #fff;
    transform: scale(1.08);
}

/* ===== BREADCRUMB - HALAMAN USER (selaras gaya breadcrumb-simple) ===== */

.container.my-5 .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.container.my-5 .breadcrumb-item a {
  color: var(--bromo-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.container.my-5 .breadcrumb-item a:hover {
  color: var(--bromo-amber);
}

.container.my-5 .breadcrumb-item.active {
  color: var(--bromo-amber-dark);
  font-weight: 600;
}

.container.my-5 .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #A9B2BC;
  padding: 0 8px;
  font-weight: 400;
}
/* ===== BREADCRUMB - KHUSUS HALAMAN USER (background putih) ===== */

.container.my-5 .breadcrumb-simple span a,
.container.my-5 .breadcrumb-simple a {
  color: var(--bromo-navy) !important;
}

.container.my-5 .breadcrumb-simple a:hover {
  color: var(--bromo-amber) !important;
}

.container.my-5 .breadcrumb-simple span:last-child {
  color: var(--bromo-amber-dark) !important;
}

.container.my-5 .breadcrumb-simple span:not(:last-child)::after {
  color: #A9B2BC !important;
}

/* ===== ATRAKSI: FILTER PILL PER DESTINASI ===== */
.destinasi-filter{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.destinasi-pill{
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid #E2E5E9;
  color: #6B7280;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.destinasi-pill:hover{
  border-color: var(--bromo-amber);
  color: var(--bromo-amber-dark);
}
.destinasi-pill.active{
  background: linear-gradient(135deg, var(--bromo-amber) 0%, var(--bromo-amber-dark) 100%);
  border-color: transparent;
  color: #fff;
}

/* ===== ATRAKSI: CARD ===== */
.atraksi-card{
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(31, 42, 55, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.atraksi-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(31, 42, 55, 0.12);
}
.atraksi-kategori{
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.atraksi-kategori.alam{ background: rgba(25,135,84,0.12); color: #198754; }
.atraksi-kategori.budaya{ background: rgba(220,53,69,0.1); color: #DC3545; }
.atraksi-kategori.kuliner{ background: rgba(224,123,57,0.12); color: var(--bromo-amber-dark); }

.atraksi-nama{ font-weight: 700; color: var(--bromo-navy); font-size: 1.05rem; margin: 0.6rem 0 0.4rem; }
.atraksi-deskripsi{ color: #6B7280; font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.9rem; }
.atraksi-destinasi{ font-size: 0.78rem; color: var(--bromo-amber-dark); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.5rem; }
.atraksi-footer{ display: flex; justify-content: space-between; align-items: center; padding-top: 0.9rem; border-top: 1px solid #EEF0F2; }
.atraksi-harga{ font-weight: 700; color: var(--bromo-navy); }

.atraksi-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #f0f0f0;
}

.atraksi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.atraksi-img-wrap {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.atraksi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.atraksi-card:hover .atraksi-img {
    transform: scale(1.08);
}

.atraksi-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.atraksi-body {
    padding: 14px 16px 18px;
}

.atraksi-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 6px;
}

.atraksi-desc {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
}

.atraksi-card { transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.atraksi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.atraksi-link { display: block; cursor: pointer; }
.atraksi-link:hover .card-title { color: #2f7d32; text-decoration: underline; }

/* ===== Review Form (Create & Edit) ===== */
.review-page {
    background: linear-gradient(180deg, #f4f7fb 0%, #eef2f8 100%);
    min-height: 100vh;
    padding-bottom: 60px;
}

.review-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 36, 114, 0.12);
}

.review-card-header {
    background: linear-gradient(135deg, #0a2472 0%, #3f6ea1 100%);
    padding: 36px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.review-card-header::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 220px;
    height: 220px;
    background: rgba(240, 179, 116, 0.18);
    border-radius: 50%;
}

.review-card-header .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0b374;
    margin-bottom: 8px;
}

.review-card-header h2 {
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.review-card-body {
    padding: 40px;
    background: #fff;
}

.review-card-body .form-label {
    font-weight: 600;
    color: #0a2472;
    margin-bottom: 8px;
}

.review-card-body .form-select,
.review-card-body .form-control {
    border-radius: 12px;
    border: 1px solid #dde4ef;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.review-card-body .form-select:focus,
.review-card-body .form-control:focus {
    border-color: #3f6ea1;
    box-shadow: 0 0 0 4px rgba(63, 110, 161, 0.12);
}

/* Star rating input (form) */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #dde4ef;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f0b374;
    transform: scale(1.1);
}

.star-rating input:checked ~ label {
    color: #e8945a;
}

.btn-kirim {
    background: linear-gradient(135deg, #0a2472 0%, #3f6ea1 100%);
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: inline-block;
}

.btn-kirim:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 36, 114, 0.25);
    color: #fff;
}

.btn-batal {
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    border: 1px solid #dde4ef;
    color: #64748b;
}

.btn-batal:hover {
    background: #f4f7fb;
    color: #0a2472;
    border-color: #dde4ef;
}

/* ===== Review List / Item ===== */
.review-list-header {
    margin-bottom: 24px;
}

.review-list-header .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3f6ea1;
    margin-bottom: 6px;
}

.review-list-header h2 {
    font-weight: 700;
    color: #0a2472;
}

.review-item {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(10, 36, 114, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-item:hover {
    box-shadow: 0 12px 28px rgba(10, 36, 114, 0.1);
    transform: translateY(-2px);
}

.review-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.review-item-user {
    font-weight: 700;
    color: #0a2472;
    margin-bottom: 2px;
}

.review-item-stars {
    color: #e8945a;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-item-komentar {
    color: #475569;
    line-height: 1.6;
    margin: 10px 0 14px;
}

.review-item-actions a {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 14px;
}

.review-item-actions .edit-link {
    color: #3f6ea1;
}

.review-item-actions .edit-link:hover {
    color: #0a2472;
}

.review-item-actions .delete-link {
    color: #dc6a5e;
}

.review-item-actions .delete-link:hover {
    color: #b3392e;
}

.review-empty {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

/* ===== Review Grid / Item (compact card) ===== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 767px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

.review-item {
    background: #fff;
    border: 1px solid #eef2f8;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(10, 36, 114, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-item:hover {
    box-shadow: 0 12px 24px rgba(10, 36, 114, 0.1);
    transform: translateY(-2px);
}

.review-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-item-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2472 0%, #3f6ea1 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-item-meta {
    min-width: 0;
}

.review-item-user {
    font-weight: 700;
    color: #0a2472;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-item-stars {
    color: #e8945a;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-item-komentar {
  color: #475569;
  line-height: 1.55;
  font-size: 14px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.auth-wrapper { min-height: 80vh; }
.auth-card {
    max-width: 900px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.auth-side {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.auth-side-overlay {
    background: linear-gradient(0deg, rgba(10,36,114,0.85), rgba(10,36,114,0.1));
    width: 100%;
    padding: 2rem;
}
.btn-auth {
    background-color: #e8945a;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 0;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}
.btn-auth:hover { background-color: #d97f3f; color: #fff; }
.auth-link { color: #e8945a; font-weight: 600; text-decoration: none; }
.auth-link:hover { text-decoration: underline; }
.input-group-text { background-color: #f8f9fa; color: #0a2472; }

.auth-wrapper { min-height: 80vh; }
.auth-card {
    max-width: 900px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.auth-side {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.auth-side-overlay {
    background: linear-gradient(0deg, rgba(10,36,114,0.85), rgba(10,36,114,0.1));
    width: 100%;
    padding: 2rem;
}
.btn-auth {
    background-color: #e8945a;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 0;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}
.btn-auth:hover { background-color: #d97f3f; color: #fff; }
.auth-link { color: #e8945a; font-weight: 600; text-decoration: none; }
.auth-link:hover { text-decoration: underline; }
.input-group-text { background-color: #f8f9fa; color: #0a2472; }


.btn-nav-outline {
    border: 1px solid #e8945a;
    color: #e8945a;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    background: transparent;
    transition: all 0.2s ease;
}
.btn-nav-outline:hover {
    background-color: #e8945a;
    color: #fff;
}
.btn-nav-solid {
    background-color: #e8945a;
    border: 1px solid #e8945a;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    transition: all 0.2s ease;
}
.btn-nav-solid:hover {
    background-color: #d97f3f;
    border-color: #d97f3f;
    color: #fff;
}

.user-toggle {
    padding: 0.3rem 0.5rem;
    border-radius: 999px;
    transition: background-color 0.2s ease;
}
.user-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.user-toggle::after { margin-left: 0.5rem; }

.user-avatar {
    width: 34px;
    height: 34px;
    border: 2px solid #e8945a;
}
.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 130px;
}

.user-dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 220px;
    margin-top: 10px;
    padding: 0.5rem 0;
}
.user-dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 500;
}
.user-dropdown-menu .dropdown-item:hover {
    background-color: #fdf1e7;
    color: #d97f3f;
}

.btn-outline-cancel {
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-outline-cancel:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.detail-actions .btn {
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 10px;
}
.detail-actions .btn i {
    font-size: 14px;
}

    .profile-topbar {
    max-width: 600px;
    margin: 0 auto 12px;
    padding: 0 1rem;
}
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0a2472;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.btn-back-home i {
    font-size: 20px;   /* 👈 ini yang bikin panahnya lebih besar */
}
.btn-back-home:hover {
    text-decoration: underline;
}

.btn-hapus {
    background-color: transparent;
    border: 1.5px solid #e24b4a;
    color: #a32d2d;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}
.btn-hapus:hover {
    background-color: #e24b4a;
    color: #ffffff;
    border-color: #e24b4a;
}
/* ===== ATRAKSI: Gambar di dalam popup modal atraksi ===== */
.modal-body img.img-fluid {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.atraksi-modal-content {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.atraksi-modal-media {
    position: relative;
}

.atraksi-modal-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.atraksi-modal-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,36,114,0.85) 0%, rgba(10,36,114,0.1) 55%, transparent 100%);
}

.atraksi-modal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f0b374;
    color: #0a2472;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.atraksi-modal-title {
    position: absolute;
    left: 16px;
    bottom: 14px;
    right: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0;
}

.atraksi-modal-desc {
    color: #333;
    line-height: 1.6;
}

.atraksi-modal-meta {
    font-size: 0.85rem;
    color: #3f6ea1;
    border-top: 1px solid #eee;
    padding-top: 12px;
}
/* ===== KULINER HERO ===== */
.kuliner-hero {
    min-height: 45vh;
    background: linear-gradient(135deg, #3f6ea1 0%, #2c4f75 100%);
    position: relative;
    overflow: hidden;
}

.kuliner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(230, 148, 90, 0.15), transparent 50%);
}

.hero-label {
    letter-spacing: 2px;
    color: #e8945a;
    font-family: 'IBM Plex Mono', monospace;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2.75rem;
}

.hero-subtitle {
    max-width: 560px;
    color: #d9e4f0;
    font-size: 1.05rem;
}

/* ===== KULINER SECTION (animasi masuk) ===== */
.kuliner-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.kuliner-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== KULINER CARD ===== */
.kuliner-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.kuliner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(63, 110, 161, 0.18);
}

.kuliner-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.kuliner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kuliner-card:hover .kuliner-img {
    transform: scale(1.08);
}

.kuliner-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d67f42;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.kuliner-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kuliner-nama {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: #1c2331;
    margin-bottom: 0.5rem;
}

.kuliner-desc {
    font-size: 0.9rem;
    color: #4b5563;
    flex-grow: 1;
    line-height: 1.5;
}

.kuliner-lokasi {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: #3f6ea1;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eef1f5;
}

.review-card-body .form-select,
.review-card-body .form-control {
    border-radius: 12px;
    border: 1px solid #dde4ef;
    padding: 12px 16px;
    color: #0a2472;
    transition: all 0.2s ease;
}

.review-card-body .form-select option {
    color: #0a2472;
    background-color: #fff;
}
.review-page .breadcrumb-simple span a,
.review-page .breadcrumb-simple a {
    color: var(--bromo-navy);
}

.review-page .breadcrumb-simple a:hover {
    color: var(--bromo-amber);
}

.review-page .breadcrumb-simple span:last-child {
    color: var(--bromo-amber-dark);
}

.review-page .breadcrumb-simple span:not(:last-child)::after {
    color: #A9B2BC;
}