
:root {
  /* Gold Tones */
  --gold-primary: #e9b75a;
  --gold-bright: #D4AF37;
  --gold-deep: #B8963E;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C9A96E 50%, #B8963E 100%);
  --gold-gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.4) 50%, transparent 100%);

  /* Dark Base */
  --dark-bg: #0D0D0D;
  --dark-card: #141414;
  --dark-surface: #2C2C2C;
  --dark-overlay: rgba(13, 13, 13, 0.85);

  /* Light Accent */
  --cream: #F5F0E8;
  --ivory: #FAF8F5;
  --white: #FFFFFF;

  /* Admin Accent */
  --admin-blue: #1A3A5C;
  --admin-blue-light: #2A5A8C;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1280px;
  --container-padding: 24px;

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.2);
  --shadow-dark: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}

/* Text Selection */
::selection {
  background: var(--gold-primary);
  color: var(--dark-bg);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--cream);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ─── PAGE TRANSITIONS ─── */
.page-transition {
  animation: pageFadeIn 0.5s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-dark);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.logo:hover {
  color: var(--gold-bright);
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-medium);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition-medium);
  position: absolute;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 32px; }

.hamburger:hover span {
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.6);
  animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(201, 169, 110, 0.4); }
  50% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.8); }
}

.hamburger.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 24px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  display: block;
  padding: 12px 24px;
  transition: var(--transition-fast);
  position: relative;
}

.mobile-menu a:hover {
  color: var(--gold-primary);
  transform: scale(1.05);
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-medium);
  transform: translateX(-50%);
}

.mobile-menu a:hover::after {
  width: 60%;
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 0.5s forwards;
  line-height: 1.1;
}

.hero-title .gold-gradient-text {
  display: block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--cream);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 0.7s forwards;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient-shimmer);
  transition: var(--transition-slow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  transition: var(--transition-slow);
  z-index: -1;
}

.btn-gold:hover::before {
  left: 0;
}

.btn-gold:hover {
  color: var(--dark-bg);
  border-color: transparent;
}

/* ─── CARDS ─── */
.card {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-medium);
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 169, 110, 0.3);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.9);
}

.card:hover .card-image img {
  transform: scale(1.05);
  filter: brightness(1);
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.card-content {
  padding: 28px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.card-text {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 3D Tilt Card */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tilt-card-inner {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 16px;
  padding: 32px;
}

/* ─── SECTIONS ─── */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── CLIP-PATH REVEAL ─── */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.clip-reveal.active {
  clip-path: inset(0 0% 0 0);
}

/* ─── SKELETON LOADING ─── */
.skeleton {
  background: linear-gradient(90deg, var(--dark-surface) 25%, rgba(201,169,110,0.1) 50%, var(--dark-surface) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── FLOATING ANIMATION ─── */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 2s; }
.float-delay-3 { animation-delay: 4s; }

/* ─── PULSE ANIMATION ─── */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ─── GRID LAYOUTS ─── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── IMAGE HOVER EFFECTS ─── */
.image-hover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.image-hover img {
  transition: var(--transition-slow);
}

.image-hover:hover img {
  transform: scale(1.05);
}

.image-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: inset 0 0 0 0 rgba(201, 169, 110, 0);
  transition: var(--transition-medium);
  pointer-events: none;
}

.image-hover:hover::after {
  box-shadow: inset 0 0 30px rgba(201, 169, 110, 0.3);
}

/* ─── LAZY LOADING BLUR-UP ─── */
.lazy-image {
  filter: blur(10px);
  transition: filter 0.5s ease-out;
}

.lazy-image.loaded {
  filter: blur(0);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark-card);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.footer-text {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.85rem;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2001;
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: var(--dark-bg);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  color: var(--dark-bg);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ─── FILTER BUTTONS ─── */
.filter-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
}

/* ─── CALENDAR ─── */
.calendar {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calendar-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  width: 40px;
  height: 40px;
  background: var(--dark-surface);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold-primary);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.calendar-nav button:hover {
  background: var(--gold-primary);
  color: var(--dark-bg);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 0;
  font-weight: 600;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--dark-surface);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.calendar-day:hover {
  background: rgba(201, 169, 110, 0.2);
  border-color: var(--gold-primary);
}

.calendar-day.selected {
  background: var(--gold-primary);
  color: var(--dark-bg);
  font-weight: 600;
}

.calendar-day.in-range {
  background: rgba(201, 169, 110, 0.3);
  border-color: var(--gold-primary);
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day.other-month {
  opacity: 0.4;
}

/* ─── TIME SLOTS ─── */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.time-slot {
  padding: 16px;
  background: var(--dark-surface);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--cream);
  font-size: 0.9rem;
}

.time-slot:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 169, 110, 0.1);
}

.time-slot.selected {
  background: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
  font-weight: 600;
}

.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ─── FORM STYLES ─── */
.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--dark-surface);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.1rem;
  pointer-events: none;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  padding-left: 16px;
}

.form-textarea + .form-icon {
  top: 28px;
  transform: none;
}

/* ─── CONTACT CARDS ─── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--dark-card);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: var(--transition-medium);
  margin-bottom: 20px;
}

.contact-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateX(8px);
  box-shadow: var(--shadow-card);
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.4rem;
  animation: float 4s ease-in-out infinite;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.contact-info p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── SOCIAL ICONS ─── */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
}

/* ─── TOAST NOTIFICATION ─── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark-card);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-medium);
}

.toast.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.2rem;
  animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.toast-text {
  font-size: 0.95rem;
  color: var(--cream);
}

/* ─── ADMIN PANEL ─── */
.admin-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
}

.admin-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.admin-login-box {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.admin-login-box h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.admin-login-box p {
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.admin-login-box .form-input {
  padding-left: 16px;
  margin-bottom: 16px;
}

.admin-dashboard {
  display: none;
  min-height: 100vh;
}

.admin-dashboard.active {
  display: flex;
}

.admin-sidebar {
  width: 260px;
  background: var(--dark-card);
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  padding: 32px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.admin-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-primary);
  text-align: center;
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  margin-bottom: 24px;
}

.admin-nav {
  list-style: none;
  padding: 0 16px;
}

.admin-nav li {
  margin-bottom: 4px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(26, 58, 92, 0.3);
  color: var(--cream);
}

.admin-nav a.active {
  border-left: 3px solid var(--admin-blue);
}

.admin-main {
  margin-left: 260px;
  padding: 32px;
  flex: 1;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.admin-header h1 {
  font-size: 1.6rem;
  color: var(--cream);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition-fast);
}

.admin-stat-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.admin-stat-card.blue-accent {
  border-left: 4px solid var(--admin-blue);
}

.admin-stat-card.gold-accent {
  border-left: 4px solid var(--gold-primary);
}

.admin-stat-label {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.admin-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.admin-stat-change {
  font-size: 0.85rem;
  color: var(--gold-primary);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.admin-table th {
  background: rgba(26, 58, 92, 0.2);
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  padding: 16px 20px;
  text-align: left;
}

.admin-table td {
  padding: 16px 20px;
  border-top: 1px solid rgba(201, 169, 110, 0.05);
  color: var(--cream);
  font-size: 0.95rem;
}

.admin-table tr:hover td {
  background: rgba(26, 58, 92, 0.1);
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-confirmed {
  background: rgba(39, 174, 96, 0.15);
  color: #27ae60;
}

.status-pending {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-primary);
}

.status-cancelled {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--dark-surface);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.1);
  color: var(--gold-primary);
  gap: 16px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.map-placeholder p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.95rem;
}

/* ─── MASONRY GRID ─── */
.masonry-grid {
  column-count: 3;
  column-gap: 24px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
}

/* ─── CAPACITY BADGE ─── */
.capacity-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: var(--dark-bg);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ─── OVERLAY TEXT ─── */
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 100%);
  z-index: 2;
}

.overlay-text h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.overlay-text p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
}

/* ─── RESULTS SECTION ─── */
.results-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.results-section.active {
  max-height: 2000px;
  opacity: 1;
}

/* ─── LOADING SPINNER ─── */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--dark-bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn-loading .spinner {
  display: inline-block;
}

.btn-loading .btn-text {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── FEATURE ICONS ─── */
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark-bg);
  font-size: 1.6rem;
}

/* ─── STATS COUNTER ─── */
.stat-item {
  text-align: center;
  padding: 32px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    column-count: 2;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
    --container-padding: 16px;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    column-count: 1;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .mobile-menu a {
    font-size: 1.6rem;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .calendar {
    padding: 16px;
  }

  .calendar-day {
    font-size: 0.85rem;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .admin-login-box {
    padding: 32px 24px;
    margin: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    column-count: 2;
  }
}

