/* ============================================================
   LUXESTAY — Design System & Global Styles
   Dark luxury theme · Glassmorphism · Gold accents
   ============================================================ */

/* ── CSS Reset ────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Custom Properties (Design Tokens) ────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary: #0a0e1a;
  --bg-secondary: #141824;
  --bg-card: rgba(20, 24, 36, 0.8);
  --bg-card-solid: #141824;
  --bg-hover: rgba(20, 24, 36, 0.95);

  /* Gold Palette */
  --gold: #d4a853;
  --gold-hover: #e8c17a;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #d4a853, #b8860b);
  --gold-glow: 0 0 30px rgba(212, 168, 83, 0.25);

  /* Text */
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.7);
  --text-muted: rgba(245, 240, 232, 0.4);

  /* Status Colors */
  --success: #4ade80;
  --warning: #fbbf24;
  --error: #f87171;
  --info: #60a5fa;

  /* Borders */
  --border-color: rgba(212, 168, 83, 0.15);
  --border-hover: rgba(212, 168, 83, 0.3);
  --border-strong: rgba(212, 168, 83, 0.5);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow: 0 4px 30px rgba(212, 168, 83, 0.1);
  --shadow-lg: 0 8px 40px rgba(212, 168, 83, 0.15);
  --shadow-xl: 0 12px 60px rgba(212, 168, 83, 0.2);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;

  /* Z-indices */
  --z-nav: 100;
  --z-modal: 1000;
  --z-toast: 1100;
}

/* ── Base Styles ──────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-primary);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Selection */
::selection {
  background: rgba(212, 168, 83, 0.3);
  color: var(--text-primary);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--gold-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.grid { display: grid; }

.w-full { width: 100%; }

.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 40px; }
.mt-2xl { margin-top: 64px; }

.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 40px; }

.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo,
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-decoration: none;
}
.nav-logo span,
.logo span {
  color: var(--text-primary);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-auth-guest,
.nav-auth-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.nav-user i {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.nav-user-name {
  font-weight: 500;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Auth (alternative structure used by some pages) */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Nav Container (alternative class used by some pages) */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}
.btn i,
.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 600;
}
.btn-primary:hover {
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
  color: var(--bg-primary);
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-secondary:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold-hover);
  color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}
.btn-ghost:hover {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Form Elements ────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
  background: rgba(10, 14, 26, 0.8);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 6px;
}

/* Standalone input style (used outside .form-group) */
input[type="date"],
input[type="number"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
  font-family: 'Inter', sans-serif;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, #0d1220 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}
.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  bottom: 20%;
  left: 5%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: float 6s ease-in-out infinite 2s;
}
.hero-shape-ring {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(212, 168, 83, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
  opacity: 0;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero-title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}
.scroll-indicator i {
  width: 18px;
  height: 18px;
  animation: bounceDown 2s ease-in-out infinite;
}

/* ── Room Cards ───────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.room-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.6) 100%);
  z-index: 1;
}
.room-card:hover .room-card-image .overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10, 14, 26, 0.8) 100%);
}

/* Room gradient placeholders */
.room-gradient {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.room-card:hover .room-gradient {
  transform: scale(1.08);
}
.room-gradient-standard {
  background: linear-gradient(135deg, #1a2332 0%, #2d3a4a 40%, #1e3a5f 100%);
}
.room-gradient-superior {
  background: linear-gradient(135deg, #1a2a2e 0%, #2a4a4e 40%, #1e4a5f 100%);
}
.room-gradient-deluxe {
  background: linear-gradient(135deg, #2a1a32 0%, #3d2a4a 40%, #4a1e5f 100%);
}
.room-gradient-premium {
  background: linear-gradient(135deg, #2a2a1a 0%, #4a3d2a 40%, #5f4a1e 100%);
}
.room-gradient-presidential {
  background: linear-gradient(135deg, #1a1a2a 0%, #2a2a4a 40%, #3a1e5f 100%);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}
.price-badge small {
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.8;
}

.room-card-content {
  padding: 24px;
}
.room-card-content h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.room-desc {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.room-meta-item i {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.amenity-tag i {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

/* ── Amenities Section ────────────────────────────────────── */
.amenities-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.04) 0%, transparent 60%),
    var(--bg-primary);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amenity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.amenity-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.amenity-card:hover .icon-wrapper {
  background: rgba(212, 168, 83, 0.2);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
}
.icon-wrapper i {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.amenity-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.amenity-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
  background:
    linear-gradient(180deg, rgba(212, 168, 83, 0.03) 0%, transparent 100%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote-icon {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars i {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.testimonial-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background:
    linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, rgba(184, 134, 11, 0.03) 100%),
    var(--bg-primary);
  border-top: 1px solid var(--border-color);
}
.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-content h2 {
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo,
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p,
.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
}
.footer-social a i {
  width: 18px;
  height: 18px;
}

.footer-column h4,
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column li a,
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-column li a:hover,
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-column li a i {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--bg-primary);
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  box-shadow: var(--gold-glow);
}
.newsletter-form button i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── Modal System ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}
.modal-header h3 {
  font-size: 1.2rem;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.modal-close:hover {
  color: var(--text-primary);
}
.modal-close i {
  width: 20px;
  height: 20px;
}

.modal-body {
  padding: 24px 28px;
}

.modal-footer {
  padding: 0 28px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ── Toast System ─────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(20, 24, 36, 0.95);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-width: 300px;
  max-width: 440px;
  pointer-events: all;
  animation: slideInRight 0.4s ease forwards;
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.toast-message {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.toast-close {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.toast-close:hover {
  color: var(--text-primary);
}

.toast-success {
  border-color: rgba(74, 222, 128, 0.3);
}
.toast-success .toast-icon {
  color: var(--success);
}
.toast-error {
  border-color: rgba(248, 113, 113, 0.3);
}
.toast-error .toast-icon {
  color: var(--error);
}
.toast-info {
  border-color: rgba(96, 165, 250, 0.3);
}
.toast-info .toast-icon {
  color: var(--info);
}
.toast-warning {
  border-color: rgba(251, 191, 36, 0.3);
}
.toast-warning .toast-icon {
  color: var(--warning);
}

.toast-removing {
  animation: slideOutRight 0.3s ease forwards;
}

/* ── Loading / Skeleton ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(30, 36, 52, 0.8) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-color);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ── Page Header Banner ───────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  border-bottom: 1px solid var(--border-color);
}
.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Filter Bar (Rooms Page) ──────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.filter-bar select,
.filter-bar input {
  padding: 10px 14px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
  min-width: 140px;
}
.filter-bar select:focus,
.filter-bar input:focus {
  border-color: var(--gold);
}
.filter-bar label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Login Page ───────────────────────────────────────────── */
.auth-page,
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(96, 165, 250, 0.04) 0%, transparent 50%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Auth decorative background shapes */
.auth-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.auth-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.auth-shape-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: float 9s ease-in-out infinite;
}
.auth-shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.07) 0%, transparent 70%);
  bottom: -8%;
  left: -5%;
  animation: float 11s ease-in-out infinite reverse;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  width: 100%;
  max-width: 460px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.25);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-header .nav-logo,
.auth-header .logo {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.8rem;
}
.auth-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Auth Tabs */
.auth-tabs {
  display: flex;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}
.auth-tab {
  flex: 1;
  padding: 14px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  text-align: center;
  user-select: none;
}
.auth-tab:hover {
  color: var(--text-primary);
}
.auth-tab.active {
  color: var(--gold);
}
/* Static underline per tab */
.auth-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.auth-tab.active::after {
  transform: scaleX(1);
}
/* When JS indicator is present, hide the per-tab ::after to avoid doubling */
.auth-tabs:has(.auth-tab-indicator) .auth-tab::after {
  display: none;
}
/* Sliding indicator (positioned by JS) */
.auth-tab-indicator {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--gold-gradient);
  transition: left 0.35s ease, width 0.35s ease;
  border-radius: 2px;
  z-index: 2;
}

/* Auth Forms */
.auth-forms {
  position: relative;
}
.auth-form {
  display: none;
}
.auth-form.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Input with icon wrapper — positions a leading icon + optional trailing toggle */
.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 46px;  /* space for leading icon */
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.input-icon-wrapper input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
  background: rgba(10, 14, 26, 0.8);
}
.input-icon-wrapper input::placeholder {
  color: var(--text-muted);
}

/* Leading icon (direct child i/svg of wrapper, not inside .password-toggle) */
.input-icon-wrapper > i,
.input-icon-wrapper > svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}
/* Highlight leading icon on input focus */
.input-icon-wrapper input:focus ~ i,
.input-icon-wrapper input:focus ~ svg,
.form-group.focused .input-icon-wrapper > i,
.form-group.focused .input-icon-wrapper > svg {
  color: var(--gold);
}

/* Password toggle button (trailing icon) */
.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.password-toggle:hover {
  color: var(--text-primary);
}
.password-toggle i,
.password-toggle svg {
  width: 18px;
  height: 18px;
}
/* Extra padding on input when toggle is present */
.input-icon-wrapper:has(.password-toggle) input {
  padding-right: 46px;
}

/* Focus state for form group */
.form-group.focused label {
  color: var(--gold);
}

/* Error state for form group */
.form-group.has-error .input-icon-wrapper input {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.08);
}
.form-group.has-error .input-icon-wrapper > i,
.form-group.has-error .input-icon-wrapper > svg {
  color: var(--error);
}
.form-group .form-error {
  display: none;
  color: var(--error);
  font-size: 0.78rem;
  margin-top: 6px;
}
.form-group.has-error .form-error {
  display: block;
}

/* Forgot password link */
.forgot-password,
.forgot-link {
  display: block;
  text-align: right;
  font-size: 0.84rem;
  color: var(--gold);
  margin-top: -8px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.forgot-password:hover,
.forgot-link:hover {
  color: var(--gold-hover);
}

/* Full-width button */
.btn-block {
  width: 100%;
}

/* Auth footer (switch between login/register) */
.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.auth-footer a {
  color: var(--gold);
  font-weight: 500;
}
.auth-footer a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

/* Auth divider */
.auth-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border-color);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* Small spinner (for buttons) */
.spinner-sm {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 14, 26, 0.3);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}


/* ── Booking Page ─────────────────────────────────────────── */
.booking-section {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: default;
}
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.step-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.step.active .step-circle {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.2);
}
.step.active .step-label {
  color: var(--text-primary);
}
.step.completed .step-circle {
  border-color: var(--success);
  background: var(--success);
  color: var(--bg-primary);
}
.step.completed .step-label {
  color: var(--success);
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border-color);
  margin: 0 12px;
  transition: var(--transition);
}
.step-connector.active {
  background: var(--gold);
}
.step-connector.completed {
  background: var(--success);
}

.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 800px;
  margin: 0 auto;
}

/* Booking room selection grid */
.rooms-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.room-select-card {
  background: rgba(10, 14, 26, 0.4);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.room-select-card:hover {
  border-color: var(--border-hover);
}
.room-select-card.selected {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
  background: rgba(212, 168, 83, 0.05);
}

/* Booking summary */
.booking-summary {
  background: rgba(10, 14, 26, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}
.summary-row .label {
  color: var(--text-muted);
}
.summary-row .value {
  color: var(--text-primary);
  font-weight: 500;
}
.summary-row.total {
  border-top: 1px solid var(--border-color);
  margin-top: 8px;
  padding-top: 16px;
}
.summary-row.total .value {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

/* Booking confirmation */
.confirmation-card {
  text-align: center;
  padding: 40px 20px;
}
.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}
.confirmation-icon i {
  width: 36px;
  height: 36px;
  color: var(--success);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Availability Result ──────────────────────────────────── */
.availability-result {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}
.availability-result.show {
  display: flex;
  animation: fadeInDown 0.4s ease;
}
.availability-result .result-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.availability-result.available .result-icon {
  color: var(--gold);
}
.availability-result.available {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.05);
}
.availability-result.unavailable .result-icon {
  color: #ef4444;
}
.availability-result.unavailable {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}
.availability-result h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.availability-result p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */

/* Large Screens */
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 150;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-actions {
    display: none;
  }
  .nav-actions.mobile-open {
    display: flex;
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 160;
    gap: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 8px;
  }
  .step-label {
    display: none;
  }
  .step-connector {
    width: 30px;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero-title {
    font-size: 2.2rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .booking-card {
    padding: 24px;
  }

  .filter-bar {
    flex-direction: column;
  }
  .filter-bar select,
  .filter-bar input {
    width: 100%;
  }

  .page-header {
    padding: 120px 0 60px;
  }
  .page-header h1 {
    font-size: 2rem;
  }

  .toast {
    min-width: auto;
    max-width: calc(100vw - 48px);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.8rem; }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */

/* Large Screens */
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 150;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-actions {
    display: none;
  }
  .nav-actions.mobile-open {
    display: flex;
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 160;
    gap: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 8px;
  }
  .step-label {
    display: none;
  }
  .step-connector {
    width: 30px;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .hero-title {
    font-size: 2.2rem;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .booking-card {
    padding: 24px;
  }

  .filter-bar {
    flex-direction: column;
  }
  .filter-bar select,
  .filter-bar input {
    width: 100%;
  }

  .page-header {
    padding: 120px 0 60px;
  }
  .page-header h1 {
    font-size: 2rem;
  }

  .toast {
    min-width: auto;
    max-width: calc(100vw - 48px);
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.8rem; }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .rooms-select-grid {
    grid-template-columns: 1fr;
  }
}

/* Make date picker icon white for dark theme */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(0.9);
  cursor: pointer;
}

/* ── Custom Language Switcher ───────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-switcher select {
  background: transparent;
  border: none;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  font-family: 'Inter', sans-serif;
  padding-right: 16px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4A853%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
}
.lang-switcher select:focus {
  border: none;
  box-shadow: none;
}
.lang-switcher select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Hide default Google Translate widgets */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important; 
}
#google_translate_element {
  display: none !important;
}
.goog-tooltip {
  display: none !important;
}
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important; 
  box-shadow: none !important;
}
