:root {
  --bg: #f4efe8;
  --bg-soft: #fffaf4;
  --text: #1f2933;
  --muted: #6b7280;
  --accent: #d97706;
  --accent-dark: #b45309;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(31, 41, 51, 0.08);
  --shadow: 0 22px 60px rgba(70, 43, 16, 0.12);
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.18), transparent 30%),
    radial-gradient(circle at right 20%, rgba(15, 118, 110, 0.12), transparent 24%),
    linear-gradient(180deg, #fff9f1 0%, var(--bg) 100%);
}

.site-nav {
  background: rgba(31, 41, 51, 0.82);
  backdrop-filter: blur(10px);
}

.navbar-brand,
.nav-link {
  color: #fff !important;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.lang-link.is-active {
  color: var(--text);
  background: #fff;
}

.hero-section {
  position: relative;
  padding: 6rem 0 4rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 24, 34, 0.94), rgba(64, 36, 13, 0.82)),
    url("../images/rooms/room-2.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(6px);
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-card,
.gallery-card,
.contact-card,
.stat-card,
.point-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  background: rgba(255, 250, 244, 0.95);
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card-body {
  padding: 1.5rem;
  color: var(--text);
}

.hero-translation {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
}

.bilingual-copy,
.section-translation {
  font-size: 0.98rem;
}

.bilingual-copy {
  color: rgba(255, 255, 255, 0.78);
}

.section-translation {
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
  font-weight: 500;
}

.hero-points .point-card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 500;
}

.section-pad {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section-heading {
  max-width: 42rem;
}

.stat-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--card);
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
  color: var(--accent-dark);
}

.gallery-card {
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(31, 41, 51, 0.16);
}

.gallery-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card-body {
  padding: 1.25rem;
}

.gallery-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.gallery-card-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.facility-card {
  background: rgba(255, 247, 237, 0.9);
}

.contact-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(135deg, rgba(255, 251, 235, 0.98), rgba(255, 255, 255, 0.94));
}

.info-card,
.faq-item {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
}

.location-grid {
  display: grid;
  gap: 0.85rem;
}

.location-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: var(--bg-soft);
  color: var(--text);
}

.location-chip i {
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.feature-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.85rem;
}

.faq-wrap {
  max-width: 56rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.accordion-item {
  border: 0;
}

.accordion-button {
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.accordion-button:not(.collapsed) {
  color: var(--text);
  background: rgba(255, 247, 237, 0.96);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.18);
}

.accordion-body {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.96);
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
  z-index: 1050;
}

.floating-whatsapp:hover {
  color: #fff;
  background: #1ea952;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 4.5rem;
  }

  .lang-switcher {
    margin: 0.4rem 0 0.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-bottom: 3rem;
  }

  .contact-card,
  .info-card,
  .stat-card,
  .hero-card-body,
  .gallery-card-body {
    padding: 1.1rem;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 56px;
    height: 56px;
  }
}
