:root {
  --bg: #0d0f14;
  --bg-soft: #151a22;
  --text: #e9edf5;
  --muted: #a7b0c0;
  --gold: #d4af37;
  --gold-soft: #f4dc88;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b2130 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.7;
}

.navbar {
  backdrop-filter: blur(8px);
  background: rgba(13, 15, 20, 0.82);
  border-bottom: 1px solid var(--border);
}

.navbar-brand,
.nav-link {
  color: #fff !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #131313;
  border: none;
  font-weight: 600;
}

.btn-gold:hover {
  opacity: 0.92;
  color: #101010;
}

.hero {
  padding: 8rem 0 5rem;
}

.hero-image,
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.price-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
}

.price-item:last-child {
  border-bottom: 0;
}

.gallery-img {
  height: 240px;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 1px solid var(--border);
}

.review {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.text-muted-soft {
  color: var(--muted) !important;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 1rem;
}
