/* ===== CSS VARIABLES - THEME SYSTEM ===== */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #eef2ff;
  --primary-rgb: 99, 102, 241;
  --secondary: #f97316;
  --secondary-dark: #ea580c;
  --secondary-rgb: 249, 115, 22;
  --accent: #8b5cf6;
  --accent-rgb: 139, 92, 246;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --bg-hover: #f1f5f9;
  --bg-glass: rgba(255,255,255,0.55);
  --bg-glass-strong: rgba(255,255,255,0.8);
  --bg-glass-card: rgba(255,255,255,0.6);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --border-color: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.04);
  --border-glass: rgba(255,255,255,0.2);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.12);
  --shadow-glow-lg: 0 0 80px rgba(99,102,241,0.15);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --navbar-bg: rgba(255,255,255,0.6);
  --footer-bg: #0f172a;

  --gradient-hero: linear-gradient(135deg, #4f46e5 0%, #7c3aed 35%, #a855f7 65%, #c084fc 100%);
  --gradient-accent: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
  --gradient-card: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  --gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --gradient-mesh: radial-gradient(at 20% 80%, rgba(99,102,241,0.08) 0%, transparent 50%), radial-gradient(at 80% 20%, rgba(168,85,247,0.06) 0%, transparent 50%), radial-gradient(at 50% 50%, rgba(236,72,153,0.04) 0%, transparent 50%);
}

[data-theme="dark"] {
  --bg-primary: #0b1121;
  --bg-secondary: #111827;
  --bg-tertiary: #1e293b;
  --bg-card: #1e293b;
  --bg-input: #1e293b;
  --bg-hover: #334155;
  --bg-glass: rgba(17,24,39,0.65);
  --bg-glass-strong: rgba(17,24,39,0.85);
  --bg-glass-card: rgba(30,41,59,0.6);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0f172a;

  --border-color: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.03);
  --border-glass: rgba(255,255,255,0.08);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.2);
  --shadow-glow-lg: 0 0 80px rgba(99,102,241,0.25);

  --navbar-bg: rgba(11,17,33,0.65);
  --footer-bg: #020617;

  --primary-light: rgba(99,102,241,0.12);
  --gradient-mesh: radial-gradient(at 20% 80%, rgba(99,102,241,0.06) 0%, transparent 50%), radial-gradient(at 80% 20%, rgba(168,85,247,0.05) 0%, transparent 50%), radial-gradient(at 50% 50%, rgba(236,72,153,0.03) 0%, transparent 50%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-secondary);
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.3s ease;
}

a { color: var(--primary); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: blobFloat 25s ease-in-out infinite;
  will-change: transform;
}

.blob-1 {
  width: 500px; height: 500px;
  background: rgba(var(--primary-rgb), 0.08);
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px; height: 400px;
  background: rgba(var(--accent-rgb), 0.06);
  top: 50%; right: -10%;
  animation-delay: -7s;
  animation-duration: 25s;
}

.blob-3 {
  width: 350px; height: 350px;
  background: rgba(var(--secondary-rgb), 0.05);
  bottom: 10%; left: 30%;
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 40px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.05); }
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md), 0 1px 0 var(--border-color);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
  transition: transform 0.3s ease;
}

.brand-icon svg { width: 20px; height: 20px; }

.navbar-brand:hover .brand-icon {
  transform: rotate(-8deg) scale(1.08);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.navbar-menu::-webkit-scrollbar { display: none; }

.navbar-menu a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.84rem;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  left: 16px;
  right: 16px;
}

.navbar-menu a:hover {
  color: var(--primary);
}

.navbar-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

.navbar-actions { display: flex; align-items: center; gap: 8px; }

.theme-toggle {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-toggle:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-color: transparent;
  transform: rotate(30deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}

[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun,
:root:not([data-theme]) .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon,
:root:not([data-theme]) .theme-toggle .icon-moon { display: inline; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 8px; }

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .navbar-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column; padding: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
    animation: slideDown 0.35s ease;
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { padding: 14px 16px; width: 100%; }
  .navbar-menu a::after { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.88rem;
  border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none; line-height: 1.5;
  position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #ef4444);
  color: white;
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}
.btn-secondary:hover { color: white; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(var(--secondary-rgb), 0.45); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
}

.btn-success { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(16,185,129,0.4); }
.btn-danger { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(239,68,68,0.4); }
.btn-warning { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; border-radius: 10px; }
.btn-lg { padding: 15px 38px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient-hero);
  color: white;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-gradient-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  will-change: transform, opacity;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: heroFadeIn 0.7s ease-out;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
  line-height: 1.1;
  animation: heroFadeIn 0.7s ease-out 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 28px;
  animation: heroFadeIn 0.7s ease-out 0.2s both;
}

.hero-stats {
  display: inline-flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  animation: heroFadeIn 0.7s ease-out 0.3s both;
}

.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.5rem; font-weight: 800; display: block; }
.hero-stat-label { font-size: 0.78rem; opacity: 0.8; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

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

/* Search box */
.search-box {
  position: relative; z-index: 3;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: var(--radius-xl);
  padding: 28px 30px 24px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.12) inset;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  animation: heroFadeIn 0.7s ease-out 0.4s both;
}

.search-box .form-group { text-align: left; }
.search-box label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }

.search-box input,
.search-box select {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--bg-input);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.search-box input:focus,
.search-box select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.wave-separator {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.wave-separator svg { width: 100%; height: 60px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 70px 0 100px; min-height: auto; }
  .search-box { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .hero-stats { flex-direction: column; gap: 12px; border-radius: var(--radius-lg); padding: 20px 30px; }
  .hero-stat-divider { width: 60px; height: 1px; }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; position: relative; }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}

.section-title {
  font-size: 1.9rem; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}

.section-title i {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 6px;
}

.section-destinations {
  background: var(--bg-primary);
  background-image: var(--gradient-mesh);
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 26px;
}

@media (max-width: 768px) { .card-grid { grid-template-columns: 1fr; } }

/* ===== HOTEL CARDS ===== */
.hotel-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.hotel-card-image {
  position: relative; height: 240px;
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.1);
}

.hotel-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hotel-card:hover .hotel-card-overlay {
  opacity: 1;
}

.hotel-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gradient-accent);
  color: white; padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(239,68,68,0.3);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(239,68,68,0.3); }
  50% { box-shadow: 0 4px 24px rgba(239,68,68,0.5); }
}

.hotel-card-stars {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  color: #fbbf24; padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem; z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
}

.hotel-card-body { padding: 22px; }

.hotel-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.hotel-card-body h3 a { color: var(--text-primary); transition: color 0.25s; }
.hotel-card-body h3 a:hover { color: var(--primary); }

.hotel-card-location { display: flex; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 12px; }

.hotel-card-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.amenity-tag {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.73rem; font-weight: 500;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.amenity-tag:hover {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.hotel-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.hotel-price { display: flex; flex-direction: column; }
.hotel-price .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.8rem; }

.hotel-price .current-price {
  font-size: 1.4rem; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hotel-price .per-night { font-size: 0.75rem; color: var(--text-muted); }

/* ===== CITY CARDS ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.city-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  text-align: center; cursor: pointer;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none !important;
  position: relative; overflow: hidden;
}

.city-card-icon {
  width: 50px; height: 50px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  transition: transform 0.4s ease;
}

.city-card:hover .city-card-icon { transform: scale(1.1) rotate(-5deg); }

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.2);
  color: var(--text-primary);
}

.city-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.city-card span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.blog-card-image { height: 220px; overflow: hidden; }

.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-card-image img { transform: scale(1.08); }

.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--text-primary); transition: color 0.25s; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.8rem; }

.blog-read-more {
  font-size: 0.88rem; font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.3s ease;
}

.blog-read-more:hover { gap: 10px; color: var(--accent); }

/* ===== FORMS ===== */
.form-container {
  max-width: 560px; margin: 50px auto; padding: 44px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  animation: fadeScaleIn 0.5s ease-out;
}

.form-container.form-container-wide {
  max-width: 680px;
  padding: 52px 56px;
}

@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.form-container h2 { text-align: center; margin-bottom: 8px; font-size: 1.5rem; font-weight: 800; }
.form-container .subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.85rem; color: var(--text-secondary); }

.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--bg-input);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1), var(--shadow-glow);
}

.form-control:hover:not(:focus) { border-color: var(--text-muted); }

.form-control-lg { padding: 15px 18px; font-size: 1rem; }

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 20px; border-radius: var(--radius-sm);
  margin-bottom: 20px; font-size: 0.9rem; font-weight: 500;
  backdrop-filter: blur(12px);
  animation: alertSlideIn 0.4s ease-out;
}

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

.alert-danger { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.15); }
.alert-success { background: rgba(16,185,129,0.08); color: #059669; border: 1px solid rgba(16,185,129,0.15); }
.alert-warning { background: rgba(245,158,11,0.08); color: #d97706; border: 1px solid rgba(245,158,11,0.15); }
.alert-info { background: rgba(var(--primary-rgb),0.06); color: var(--primary); border: 1px solid rgba(var(--primary-rgb),0.12); }

[data-theme="dark"] .alert-danger { background: rgba(239,68,68,0.1); color: #fca5a5; }
[data-theme="dark"] .alert-success { background: rgba(16,185,129,0.1); color: #6ee7b7; }
[data-theme="dark"] .alert-warning { background: rgba(245,158,11,0.1); color: #fcd34d; }
[data-theme="dark"] .alert-info { background: rgba(var(--primary-rgb),0.1); color: #a5b4fc; }

/* ===== HOTEL DETAIL ===== */
.hotel-detail-hero { height: 440px; position: relative; overflow: hidden; border-radius: var(--radius-xl); margin-bottom: 36px; box-shadow: var(--shadow-lg); }
.hotel-detail-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.hotel-detail-hero:hover img { transform: scale(1.04); }

.hotel-detail-hero .overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  color: white;
  backdrop-filter: blur(2px);
}

.hotel-detail-hero .overlay h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; margin-bottom: 40px; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.detail-content {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  animation: fadeScaleIn 0.5s ease-out;
}

.detail-sidebar { position: sticky; top: 90px; align-self: start; }

.booking-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  animation: fadeScaleIn 0.5s ease-out 0.1s both;
}

.booking-card .price-display { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.booking-card .price-display .old { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; }

.booking-card .price-display .current {
  font-size: 2.3rem; font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.booking-card .price-display .night { color: var(--text-muted); font-size: 0.85rem; }

/* ===== COMMENTS ===== */
.comments-section { margin-top: 40px; }
.comment-list { margin: 24px 0; }

.comment-item {
  display: flex; gap: 16px;
  padding: 20px;
  margin-bottom: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.comment-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(var(--primary-rgb), 0.1);
}

.comment-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.comment-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.comment-body .comment-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.comment-body p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.comment-rating { color: #fbbf24; font-size: 0.9rem; margin-bottom: 4px; }

.comment-login-notice .alert { border-radius: var(--radius-md); flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: #94a3b8;
  padding: 80px 0 0;
  margin-top: auto;
  position: relative;
}

.footer-wave {
  position: absolute; top: -1px; left: 0; right: 0;
  line-height: 0;
}

.footer-wave svg { width: 100%; height: 50px; }

[data-theme="dark"] .footer { background: #020617; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer h3 { color: #f1f5f9; font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }
.footer-brand { font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.footer p { font-size: 0.9rem; line-height: 1.8; }

.footer-social { display: flex; gap: 10px; }

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: 1rem;
  transition: all 0.35s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; font-size: 0.9rem; transition: all 0.25s; display: inline-flex; align-items: center; gap: 4px; }
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: flex; align-items: center; gap: 12px;
  color: #94a3b8; font-size: 0.9rem; text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(255,255,255,0.04);
  color: white;
  transform: translateX(4px);
}

.footer-contact-item .icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: transform 0.35s ease;
}

.footer-contact-item:hover .icon { transform: scale(1.1) rotate(-5deg); }

.footer-contact-item .icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: white; box-shadow: 0 4px 12px rgba(37,211,102,0.25); }
.footer-contact-item .icon.phone { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25); }
.footer-contact-item .icon.email { background: linear-gradient(135deg, var(--secondary), #ef4444); color: white; box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.25); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0; text-align: center;
  font-size: 0.85rem; color: #475569;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none !important;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: white;
}

.whatsapp-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wpPulse 2s ease-in-out infinite;
}

@keyframes wpPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== ADMIN PANEL ===== */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 72px); }

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-sidebar.open { display: block; position: fixed; z-index: 100; top: 72px; left: 0; bottom: 0; width: 260px; backdrop-filter: blur(20px); }
}

.admin-sidebar {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  border-right: 1px solid var(--border-color);
  padding: 24px 0;
}

.admin-sidebar-menu { list-style: none; }

.admin-sidebar-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; color: var(--text-secondary);
  font-weight: 500; font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.admin-sidebar-menu a:hover,
.admin-sidebar-menu a.active {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
  border-left-color: var(--primary);
}

.admin-content { padding: 32px; background: var(--bg-secondary); background-image: var(--gradient-mesh); }

.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.admin-header h1 { font-size: 1.5rem; font-weight: 800; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }

.stat-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
}

.stat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #ec4899);
  opacity: 0; transition: opacity 0.35s;
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.stat-card:hover::after { opacity: 1; }

.stat-card .stat-number {
  font-size: 2.4rem; font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.stat-card .stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }

/* Tables */
.table-responsive {
  overflow-x: auto;
  background: var(--bg-glass-card); backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 14px 18px; text-align: left; font-size: 0.88rem; border-bottom: 1px solid var(--border-color); }
.table th { background: rgba(var(--primary-rgb), 0.03); font-weight: 700; color: var(--text-secondary); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.table tr { transition: all 0.25s; }
.table tbody tr {
  transition: background 0.25s ease, transform 0.25s ease;
}

.table tbody tr:hover {
  background: rgba(var(--primary-rgb), 0.05);
}

.badge { padding: 5px 13px; border-radius: var(--radius-full); font-size: 0.73rem; font-weight: 600; display: inline-block; }
.badge-success { background: rgba(16,185,129,0.1); color: #059669; }
.badge-danger { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-warning { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-info { background: rgba(var(--primary-rgb),0.08); color: var(--primary); }

[data-theme="dark"] .badge-success { background: rgba(16,185,129,0.12); color: #6ee7b7; }
[data-theme="dark"] .badge-danger { background: rgba(239,68,68,0.12); color: #fca5a5; }
[data-theme="dark"] .badge-warning { background: rgba(245,158,11,0.12); color: #fcd34d; }
[data-theme="dark"] .badge-info { background: rgba(var(--primary-rgb),0.12); color: #a5b4fc; }

/* Filter bar */
.filter-bar {
  background: var(--bg-glass-strong); backdrop-filter: blur(20px);
  border-radius: var(--radius-lg); padding: 26px;
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.filter-bar form { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; }
.filter-bar .form-group { flex: 1; min-width: 150px; margin-bottom: 0; }

/* Blog detail */
.blog-detail { max-width: 800px; margin: 0 auto; }

.blog-detail-image { height: 440px; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow-lg); }
.blog-detail-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-detail-image:hover img { transform: scale(1.03); }

.blog-detail h1 { font-size: 2.3rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; }
.blog-detail .meta { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border-color); }
.blog-detail .content { font-size: 1rem; line-height: 1.85; color: var(--text-secondary); }
.blog-detail .content h3 { color: var(--text-primary); font-size: 1.3rem; margin: 28px 0 12px; }
.blog-detail .content p { margin-bottom: 16px; }

/* 404 */
.page-404 { text-align: center; padding: 100px 20px; }

.page-404 h1 {
  font-size: 8rem; font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
  animation: heroFadeIn 0.6s ease-out;
}

.page-404 p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 32px; }

/* Profile */
.profile-section { max-width: 800px; margin: 40px auto; }

/* Admin form */
.admin-form {
  background: var(--bg-glass-card); backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-color);
  max-width: 800px;
}

.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .admin-form .form-row { grid-template-columns: 1fr; } }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; } .gap-1 { gap: 8px; } .gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; } .justify-between { justify-content: space-between; } .align-center { align-items: center; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.22s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.28s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.34s; }

/* Theme change transitions - scoped, not global wildcard */
body, .navbar, .footer, .admin-sidebar, .form-container,
.detail-content, .booking-card, .filter-bar, .table-responsive,
.admin-form, .admin-content, .stat-card, .hotel-card, .blog-card,
.city-card, .alert, .badge, .profile-card, .reservation-card,
.auth-form-panel, .auth-input-group, .empty-state {
  transition: background-color 0.4s ease, border-color 0.3s ease, color 0.25s ease;
}

img, video { transition: transform 0.6s ease; }

/* ========================================
   PROFILE PAGE
   ======================================== */
.profile-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  animation: fadeScaleIn 0.5s ease-out;
}

.profile-hero-bg {
  height: 160px;
  background: var(--gradient-hero);
  position: relative;
}

.profile-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
}

.profile-hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px 28px;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
  flex-shrink: 0;
}

.profile-info h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 12px;
}

.profile-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.profile-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.profile-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
}

.profile-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-top: 2px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-action-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.15);
  color: var(--text-primary);
}

.profile-action-card:hover > i:last-child {
  transform: translateX(4px);
}

.profile-action-card > i:last-child {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.profile-action-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.profile-action-icon.secondary {
  background: linear-gradient(135deg, var(--secondary), #ef4444);
}

.profile-action-card strong {
  display: block;
  font-size: 0.95rem;
}

.profile-action-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}

/* ========================================
   RESERVATION LIST (CARD STYLE)
   ======================================== */
.reservation-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reservation-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reservation-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.reservation-cancelled {
  opacity: 0.5;
  filter: grayscale(0.4);
}

.reservation-cancelled:hover {
  opacity: 0.7;
}

.reservation-card-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  width: 100%;
}

/* Reservation Tabs */
.res-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0;
}

.res-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.25s, border-color 0.25s;
  font-family: inherit;
}

.res-tab:hover {
  color: var(--text-primary);
}

.res-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.res-tab-count {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
}

.res-tab:not(.active) .res-tab-count {
  background: var(--text-muted);
}

.reservation-card-image {
  position: relative;
  overflow: hidden;
}

.reservation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reservation-card:hover .reservation-card-image img {
  transform: scale(1.08);
}

.reservation-status {
  position: absolute;
  top: 10px;
  left: 10px;
}

.reservation-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.reservation-card-body h3 a {
  color: var(--text-primary);
  transition: color 0.25s;
}

.reservation-card-body h3 a:hover {
  color: var(--primary);
}

.reservation-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.reservation-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reservation-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.reservation-detail i {
  color: var(--primary);
  font-size: 0.9rem;
}

.reservation-detail .label {
  color: var(--text-muted);
  font-size: 0.72rem;
  display: block;
}

.reservation-detail .value {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.reservation-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border-left: 1px solid var(--border-color);
  text-align: center;
  min-width: 140px;
}

.reservation-card-price .price-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.reservation-card-price .price-value {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

@media (max-width: 700px) {
  .reservation-card {
    grid-template-columns: 1fr;
  }
  .reservation-card-image {
    height: 160px;
  }
  .reservation-card-price {
    border-left: none;
    border-top: 1px solid var(--border-color);
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 24px;
  }
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  animation: fadeScaleIn 0.5s ease-out;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  animation: authIconFloat 4s ease-in-out infinite;
}

.empty-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ========================================
   404 PAGE - ENHANCED
   ======================================== */
.page-404 {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-404-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: blobFloat 15s ease-in-out infinite;
}

.page-404-orb.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(var(--primary-rgb), 0.15);
  top: 10%;
  left: 20%;
}

.page-404-orb.orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(var(--accent-rgb), 0.12);
  bottom: 10%;
  right: 20%;
  animation-delay: -5s;
}

.page-404-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  animation: authIconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.page-404 h1 {
  font-size: 8rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  line-height: 1;
  animation: heroFadeIn 0.6s ease-out;
  position: relative;
  z-index: 1;
}

.page-404 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-404 p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.page-404-actions {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ========================================
   ADMIN DASHBOARD ENHANCEMENTS
   ======================================== */
.admin-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-section-header {
  margin-bottom: 16px;
}

.admin-section-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  color: white;
}

.stat-icon-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25); }
.stat-icon-success { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 12px rgba(16,185,129,0.25); }
.stat-icon-info { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 4px 12px rgba(59,130,246,0.25); }
.stat-icon-warning { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 12px rgba(245,158,11,0.25); }
.stat-icon-accent { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 4px 12px rgba(139,92,246,0.25); }
.stat-icon-secondary { background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 4px 12px rgba(249,115,22,0.25); }

.price-cell {
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   AUTH PAGES - MODERN SPLIT LAYOUT
   ======================================== */
.auth-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1060px;
  min-height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
  border: 1px solid var(--border-color);
  animation: authSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes authSlideIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Visual Panel (Left) --- */
.auth-visual {
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
}

.auth-visual-register {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 40%, #a855f7 100%);
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.auth-visual-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.auth-visual-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.auth-visual-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  animation: authIconFloat 4s ease-in-out infinite;
}

@keyframes authIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.auth-visual-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.auth-visual-content p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 36px;
}

.auth-visual-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auth-feature:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(4px);
}

.auth-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* --- Form Panel (Right) --- */
.auth-form-panel {
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.auth-form-inner {
  width: 100%;
  max-width: 440px;
  animation: authFormFadeIn 0.6s ease-out 0.2s both;
}

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

.auth-form-header {
  margin-bottom: 32px;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary) !important;
  margin-bottom: 24px;
}

.auth-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.auth-logo-icon svg {
  width: 18px;
  height: 18px;
}

.auth-form-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.auth-form-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Floating Label Input Groups --- */
.auth-input-group {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.auth-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08), 0 0 24px rgba(var(--primary-rgb), 0.06);
  transform: translateY(-1px);
}

.auth-input-group:hover:not(:focus-within) {
  border-color: var(--text-muted);
}

.auth-input-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 12px;
  transition: color 0.3s;
  flex-shrink: 0;
}

.auth-input-group:focus-within .auth-input-icon {
  color: var(--primary);
}

.auth-input-field {
  flex: 1;
  position: relative;
  padding: 8px 0;
}

.auth-input-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 18px 0 6px;
  font-family: inherit;
}

.auth-input-field label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: left;
}

.auth-input-field input:focus ~ label,
.auth-input-field input:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: translateY(0);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.auth-toggle-pw {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  font-size: 1.1rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.auth-toggle-pw:hover {
  color: var(--primary);
}

.auth-input-hint {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Row layout for register */
.auth-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .auth-input-row { grid-template-columns: 1fr; }
}

/* --- Submit Button --- */
.auth-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.auth-submit-btn:hover::before {
  left: 100%;
}

.auth-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(var(--primary-rgb), 0.45);
}

.auth-submit-btn:active {
  transform: translateY(-1px);
}

.auth-submit-btn i {
  transition: transform 0.3s ease;
}

.auth-submit-btn:hover i {
  transform: translateX(4px);
}

/* --- Divider --- */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* --- Alt Actions --- */
.auth-alt-actions {
  text-align: center;
}

.auth-alt-actions p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.auth-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.auth-alt-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Notice --- */
.auth-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 16px;
}

[data-theme="dark"] .auth-notice {
  background: rgba(var(--primary-rgb), 0.08);
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .auth-visual {
    padding: 36px 28px;
    min-height: auto;
  }

  .auth-visual-content h2 { font-size: 1.4rem; }
  .auth-visual-content p { font-size: 0.88rem; margin-bottom: 20px; }
  .auth-visual-features { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .auth-feature { padding: 8px 16px; font-size: 0.8rem; }
  .auth-visual-icon { width: 60px; height: 60px; font-size: 1.6rem; margin-bottom: 18px; }

  .auth-form-panel { padding: 28px 24px; }
  .auth-form-header h1 { font-size: 1.4rem; }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), #ec4899);
  z-index: 1001;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.5);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.4);
}

/* ========================================
   INNER PAGE HERO
   ======================================== */
.inner-hero {
  background: var(--gradient-hero);
  color: white;
  padding: 56px 0 68px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  animation: heroFadeIn 0.6s ease-out;
}

.inner-hero h1 i {
  margin-right: 8px;
  opacity: 0.85;
}

.inner-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  animation: heroFadeIn 0.6s ease-out 0.1s both;
}

.inner-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 16px;
  animation: heroFadeIn 0.5s ease-out;
}

.inner-hero-breadcrumb a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.inner-hero-breadcrumb a:hover { color: white; }

.inner-hero-breadcrumb .separator {
  opacity: 0.5;
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .inner-hero h1 { font-size: 1.6rem; }
  .inner-hero { padding: 40px 0 56px; }
}

/* ========================================
   BLOG DETAIL HERO (full-width)
   ======================================== */
.blog-hero-full {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.blog-hero-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-hero-full:hover img {
  transform: scale(1.03);
}

.blog-hero-full-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 0 44px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  color: white;
}

.blog-hero-full-overlay h1 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  max-width: 800px;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  animation: heroFadeIn 0.6s ease-out;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
  flex-wrap: wrap;
  animation: heroFadeIn 0.6s ease-out 0.1s both;
}

.blog-hero-meta span {
  display: flex; align-items: center; gap: 6px;
}

@media (max-width: 768px) {
  .blog-hero-full { height: 340px; }
  .blog-hero-full-overlay { padding: 32px 0 28px; }
  .blog-hero-full-overlay h1 { font-size: 1.5rem; }
}

/* Blog share buttons */
.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  margin-top: 32px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.blog-share-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 6px;
  margin-right: 4px;
}

.blog-share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.blog-share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.share-twitter:hover { background: #1da1f2; color: white; border-color: #1da1f2; }
.share-facebook:hover { background: #1877f2; color: white; border-color: #1877f2; }
.share-whatsapp:hover { background: #25d366; color: white; border-color: #25d366; }
.share-copy:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ========================================
   DETAIL BREADCRUMB
   ======================================== */
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 20px 0 16px;
  flex-wrap: wrap;
}

.detail-breadcrumb a { color: var(--text-secondary); transition: color 0.2s; }
.detail-breadcrumb a:hover { color: var(--primary); }
.detail-breadcrumb > i { font-size: 0.65rem; opacity: 0.5; }
.detail-breadcrumb > span { color: var(--primary); font-weight: 600; }

/* ========================================
   TRUST BADGES (booking sidebar)
   ======================================== */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.25s;
}

.trust-badge:hover { color: var(--primary); }

.trust-badge i {
  font-size: 1.1rem;
  color: var(--success);
  flex-shrink: 0;
  transition: color 0.25s;
}

.trust-badge:hover i { color: var(--primary); }

/* ========================================
   ADMIN SIDEBAR PROFILE
   ======================================== */
.admin-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
}

.admin-sidebar-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

.admin-sidebar-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.admin-sidebar-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.admin-sidebar-divider {
  height: 1px;
  background: var(--border-color);
  margin: 6px 24px;
}

/* Enhanced admin sidebar active state */
.admin-sidebar-menu a.active i {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   SETTINGS GROUP SECTIONS
   ======================================== */
.settings-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}

.settings-group:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.settings-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.settings-group-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.settings-group-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.settings-group-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: rgba(var(--primary-rgb), 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}

/* ========================================
   BADGE PULSE (for pending states)
   ======================================== */
.badge-pulse {
  position: relative;
}

.badge-pulse::after {
  content: '';
  position: absolute;
  top: 50%; left: 8px;
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: badgeDotPulse 2s ease-in-out infinite;
}

.badge-pulse { padding-left: 20px; }

@keyframes badgeDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ========================================
   ADMIN HEADER BADGE
   ======================================== */
.admin-header-badge {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ========================================
   ADMIN USER CARD LIST
   ======================================== */
.admin-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-user-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.admin-user-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.12);
}

.admin-user-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(var(--primary-rgb), 0.25);
}

.admin-user-info {
  flex: 1;
  min-width: 0;
}

.admin-user-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.admin-user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-user-meta {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.admin-user-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.admin-user-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .admin-user-card {
    flex-wrap: wrap;
    gap: 10px;
  }
  .admin-user-meta { width: 100%; }
  .admin-user-date { display: none; }
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-md), 0 0 20px rgba(var(--primary-rgb), 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 12px;
  transition: color 0.25s;
}

.faq-question span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question span i {
  color: var(--primary);
  font-size: 1.1rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-arrow {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ========================================
   FAVORITE BUTTON
   ======================================== */
.fav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fav-btn:hover {
  transform: scale(1.15);
  background: rgba(239, 68, 68, 0.8);
}

.fav-btn-active {
  background: rgba(239, 68, 68, 0.8);
  color: white;
}

.fav-btn-active:hover {
  background: rgba(239, 68, 68, 1);
}

/* ========================================
   FOOTER NEWSLETTER
   ======================================== */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.footer-newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.footer-newsletter-content p {
  font-size: 0.88rem;
  opacity: 0.7;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  min-width: 300px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-newsletter-form input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.1);
}

.footer-newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.4);
}

@media (max-width: 600px) {
  .footer-newsletter { flex-direction: column; text-align: center; }
  .footer-newsletter-form { min-width: 100%; }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-color);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  animation: slideUp 0.5s ease-out;
  flex-wrap: wrap;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 14px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cookie-consent p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex: 1;
}

.cookie-consent a {
  color: var(--primary);
  font-weight: 600;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
