/* ===========================
   Sylvan HORIZON RESORT — GLOBAL CSS
   Nature Theme · Mono UI
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Nature greens (Light Theme - Calmer Sage) */
  --forest: #f4f7f5;
  --forest-mid: #e9efe9;
  --forest-light: #dbe5dc;
  --forest-card: rgba(255, 255, 255, 0.95);

  /* Moss & amber accents */
  --moss: #10b981;
  --moss-light: #34d399;
  --moss-dark: #059669;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-dark: #b45309;

  /* Text */
  --cream: #1f2937;
  --muted: #4b5563;
  --white: #ffffff;

  /* Semantic */
  --danger: #d9534f;
  --success: #5cb85c;
  --info: #4a9e7c;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-moss: 0 0 30px rgba(109, 181, 111, 0.14);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts — Inter only, minimal and clean */
  --font-head: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;

  /* Aliases for old references */
  --navy: var(--forest);
  --navy-mid: var(--forest-mid);
  --navy-light: var(--forest-light);
  --card-bg: var(--forest-card);
  --gold: var(--moss);
  --gold-light: var(--moss-light);
  --gold-dark: var(--moss-dark);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Make icons pop with green, unless inside a button */
iconify-icon {
  color: var(--moss);
}

.btn iconify-icon,
.btn-primary iconify-icon,
.action-btn iconify-icon,
.td-badge iconify-icon {
  color: inherit;
}

body {
  font-family: var(--font-body);
  background: var(--forest);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--forest);
}

::-webkit-scrollbar-thumb {
  background: var(--moss-dark);
  border-radius: 3px;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
}

p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--moss);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(249, 252, 249, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(109, 181, 111, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 2rem;
  background: rgba(249, 252, 249, 0.97);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.nav-logo span {
  color: var(--cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--moss-light);
  background: rgba(109, 181, 111, 0.07);
}

.nav-btn {
  background: var(--moss-dark) !important;
  color: var(--cream) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
}

.nav-btn:hover {
  background: var(--moss) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Initial zoom effect for the active slide */
.hero-slide.active {
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 26, 15, 0.88) 0%,
      rgba(10, 26, 15, 0.52) 50%,
      rgba(10, 26, 15, 0.75) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(109, 181, 111, 0.1);
  border: 1px solid rgba(109, 181, 111, 0.28);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--moss-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--moss-light);
}

.hero p {
  font-size: 1rem;
  color: var(--white);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
  pointer-events: none;
}

.hero-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  font-size: 1.2rem;
}

.hero-control:hover {
  background: var(--moss-dark);
  border-color: var(--moss);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-controls {
    padding: 0 1rem;
  }

  .hero-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--moss), transparent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--moss), var(--moss-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.42);
  background: linear-gradient(135deg, var(--moss-light), var(--moss));
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(21, 32, 24, 0.25);
}

.btn-outline:hover {
  border-color: var(--moss);
  color: var(--moss-light);
  transform: translateY(-2px);
  background: rgba(109, 181, 111, 0.06);
}

.btn-ghost {
  background: rgba(16, 185, 129, 0.1);
  color: var(--moss-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-ghost:hover {
  background: rgba(109, 181, 111, 0.14);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.68rem;
}

.btn-lg {
  padding: 0.9rem 2.3rem;
  font-size: 0.85rem;
}

/* ── Sections ── */
.section {
  padding: 6rem 2rem;
}

.section-sm {
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 560px;
  margin: 0.8rem auto 0;
  font-size: 0.92rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--moss), transparent);
  margin: 1rem auto;
}

/* ── Cards ── */
.card {
  background: var(--forest-card);
  border: 1px solid rgba(109, 181, 111, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 181, 111, 0.28);
  box-shadow: var(--shadow-moss), var(--shadow-card);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 26, 15, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(109, 181, 111, 0.3);
  color: var(--moss-light);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-price {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--moss-light);
}

.card-price span {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 300;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.amenity-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ── Grid Layouts ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Services Strip ── */
.services-strip {
  display: flex;
  gap: 0;
  background: var(--forest-light);
  border: 1px solid rgba(109, 181, 111, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid rgba(109, 181, 111, 0.07);
  text-decoration: none;
  color: inherit;
}

.service-item:last-child {
  border-right: none;
}

.service-item:hover {
  background: rgba(109, 181, 111, 0.05);
}

.service-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: rgba(109, 181, 111, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-item:hover .service-icon {
  background: rgba(109, 181, 111, 0.18);
  transform: scale(1.08);
}

.service-item span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.service-item:hover span {
  color: var(--moss-light);
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--forest-light);
  border: 1px solid rgba(109, 181, 111, 0.18);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-moss);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid rgba(109, 181, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.3rem;
}

.modal-close {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 50%;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(217, 83, 79, 0.14);
  color: var(--danger);
}

.modal-body {
  padding: 1.8rem;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
  font-weight: 400;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--moss);
  background: rgba(109, 181, 111, 0.04);
  box-shadow: 0 0 0 3px rgba(109, 181, 111, 0.1);
}

select option {
  background: var(--forest-mid);
}

textarea {
  resize: vertical;
  min-height: 85px;
}

.form-hint {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.42rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--moss);
  color: var(--moss-light);
  background: rgba(109, 181, 111, 0.07);
}

/* ── Page Hero (sub-pages) ── */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(109, 181, 111, 0.08) 0%, transparent 70%);
}

.page-hero h1 {
  position: relative;
}

/* ── Stats Row ── */
.stats-row {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, rgba(109, 181, 111, 0.07), rgba(109, 181, 111, 0.02));
  border: 1px solid rgba(109, 181, 111, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}

.stat {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(109, 181, 111, 0.07);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--moss-light);
  letter-spacing: -0.03em;
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Tabs ── */
.tab-bar {
  display: flex;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 0.25rem;
  width: fit-content;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.42rem 1.3rem;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--moss-dark);
  color: var(--cream);
}

/* ── Package Cards (Wedding) ── */
.package-card {
  background: var(--forest-card);
  border: 1px solid rgba(109, 181, 111, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.package-card.featured {
  border-color: var(--moss);
  background: linear-gradient(135deg, rgba(109, 181, 111, 0.09), rgba(109, 181, 111, 0.02));
  position: relative;
}

.package-card.selected {
  border-color: var(--moss-light);
  box-shadow: var(--shadow-moss);
}

.package-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--moss-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.18rem 1rem;
  border-radius: 100px;
}

.package-price {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--moss-light);
  margin: 0.5rem 0;
}

.package-features {
  list-style: none;
  margin: 1.2rem 0;
  text-align: left;
}

.package-features li {
  padding: 0.38rem 0;
  font-size: 0.84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.package-features li::before {
  content: '·';
  color: var(--moss);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ── Menu (Digital View Only) ── */
.menu-item {
  display: flex;
  gap: 1rem;
  background: var(--forest-card);
  border: 1px solid rgba(109, 181, 111, 0.07);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: var(--transition);
}

.menu-item:hover {
  border-color: rgba(109, 181, 111, 0.22);
}

.menu-img {
  width: 76px;
  height: 76px;
  min-width: 76px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.menu-info {
  flex: 1;
}

.menu-info h4 {
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-info p {
  font-size: 0.8rem;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.menu-price {
  color: var(--moss-light);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ── Table Map (BookMyShow style) ── */
.table-map-wrap {
  background: rgba(109, 181, 111, 0.03);
  border: 1px solid rgba(109, 181, 111, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.table-map-stage {
  background: rgba(109, 181, 111, 0.07);
  border: 1px solid rgba(109, 181, 111, 0.2);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 0.5rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 2rem;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  justify-items: center;
}

.table-seat {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
}

.table-seat.available {
  background: rgba(92, 184, 92, 0.14);
  border-color: rgba(92, 184, 92, 0.4);
  color: #5cb85c;
}

.table-seat.available:hover {
  background: rgba(92, 184, 92, 0.26);
  border-color: #5cb85c;
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(92, 184, 92, 0.3);
}

.table-seat.booked {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.22);
  cursor: not-allowed;
}

.table-seat.selected {
  background: rgba(201, 149, 60, 0.2);
  border-color: var(--amber);
  color: var(--amber-light);
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(201, 149, 60, 0.3);
}

.table-seat-icon {
  font-size: 1.1rem;
}

.table-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1.5px solid;
}

.legend-dot.available {
  background: rgba(92, 184, 92, 0.2);
  border-color: rgba(92, 184, 92, 0.5);
}

.legend-dot.booked {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.legend-dot.selected {
  background: rgba(201, 149, 60, 0.2);
  border-color: var(--amber);
}

/* ── Event Banner Slideshow ── */
#event-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 70px;
  /* below fixed navbar */
}

#event-banner .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

#event-banner .slide.active {
  opacity: 1;
}

#event-banner .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 26, 15, 0.75) 0%, rgba(10, 26, 15, 0.3) 60%, rgba(10, 26, 15, 0.7) 100%);
}

#event-banner .banner-content {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

#event-banner .banner-qr {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 4px;
}

#event-banner .banner-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#event-banner .banner-book-btn {
  background: var(--moss-dark);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(109, 181, 111, 0.4);
}

#event-banner .banner-book-btn:hover {
  background: var(--moss);
  transform: translateY(-2px);
}

#event-banner .banner-title-area {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

#event-banner .banner-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--moss-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

#event-banner .banner-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--cream);
}

.banner-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.banner-dot.active {
  background: var(--moss-light);
  width: 16px;
  border-radius: 3px;
}

/* ── Confirmation ── */
.confirm-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.confirm-card {
  background: var(--forest-card);
  border: 1px solid rgba(109, 181, 111, 0.18);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-moss), var(--shadow-card);
}

.confirm-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(92, 184, 92, 0.14), rgba(92, 184, 92, 0.04));
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  animation: pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.ref-number {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--moss-light);
  background: rgba(109, 181, 111, 0.07);
  border: 1px solid rgba(109, 181, 111, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.5rem;
  display: inline-block;
  margin: 1rem 0;
}

.booking-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.booking-detail-row span:first-child {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.booking-detail-row span:last-child {
  font-weight: 400;
}

/* ── Footer ── */
.footer {
  background: var(--forest-mid);
  border-top: 1px solid rgba(109, 181, 111, 0.08);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.84rem;
  max-width: 260px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss-light);
  letter-spacing: 0.5px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--moss-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: var(--transition);
  font-family: var(--font-mono);
}

.social-link:hover {
  border-color: var(--moss);
  color: var(--moss-light);
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--forest-light);
  border: 1px solid rgba(109, 181, 111, 0.28);
  border-radius: 100px;
  padding: 0.7rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--cream);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.toast.success {
  border-color: rgba(92, 184, 92, 0.4);
  color: var(--success);
}

.toast.error {
  border-color: rgba(217, 83, 79, 0.4);
  color: var(--danger);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.14);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-up {
  animation: fadeUp 0.7s ease both;
}

.animate-up-delay {
  animation: fadeUp 0.7s ease 0.2s both;
}

/* ── Map Section ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(109, 181, 111, 0.12);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Booking Confirmation ── */
.room-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.meta-item {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ── Step Indicator ── */
.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(16.67% + 18px);
  right: calc(16.67% + 18px);
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  max-width: 120px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
}

.step.active .step-num {
  background: var(--moss-dark);
  border-color: var(--moss);
  color: var(--cream);
}

.step.done .step-num {
  background: rgba(92, 184, 92, 0.14);
  border-color: var(--success);
  color: var(--success);
}

.step-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}

.step.active .step-label {
  color: var(--moss-light);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .table-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 60px;
    background: var(--forest-mid);
    padding: 2rem;
    gap: 0.5rem;
    z-index: 999;
    align-items: flex-start;
  }

  .nav-links.open a {
    font-size: 0.9rem;
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .services-strip {
    flex-wrap: wrap;
  }

  .service-item {
    flex: 0 0 50%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  #event-banner {
    height: 320px;
  }

  .table-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .table-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #event-banner {
    height: 260px;
    margin-top: 60px;
  }
}

/* ── Contact Section Styles ── */
.contact-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  color: #000000 !important;
  font-size: 1.05rem;
}

.contact-row span, 
.contact-row [data-hotel-address], 
.contact-row [data-hotel-phone], 
.contact-row [data-hotel-email],
.contact-grid div {
  color: #000000 !important;
  font-weight: 500;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(109, 181, 111, 0.2);
  color: var(--moss-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}


