@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- LUXURY GOLD-ON-SLATE DESIGN SYSTEM --- */
:root {
  --bg-primary: #07090e;
  --bg-secondary: #0c0f17;
  --bg-tertiary: #131826;
  --gold-light: #fae19c;
  --gold-main: #d4af37;
  --gold-dark: #aa8511;
  --gold-gradient: linear-gradient(135deg, #fae19c 0%, #d4af37 50%, #a07d0d 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff1cc 0%, #e2c050 50%, #c49a1c 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
  --gold-glow-strong: 0 0 35px rgba(212, 175, 55, 0.45);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #0c0f17;
  
  --card-bg: rgba(19, 24, 38, 0.65);
  --card-bg-solid: #131826;
  --card-border: rgba(212, 175, 55, 0.12);
  --card-border-hover: rgba(212, 175, 55, 0.35);
  
  --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.08);
  --shadow-gold-hover: 0 12px 40px rgba(212, 175, 55, 0.2);
  
  --border-radius-lg: 20px;
  --border-radius-md: 14px;
  --border-radius-sm: 8px;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Luxury Batik Pattern Background Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../images/batik_bg.png');
  background-repeat: repeat;
  background-size: 280px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* Custom 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-main);
}

h1, h2, h3, h4, h5, .font-heading {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

button, .btn {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 14px;
  box-sizing: border-box;
}

/* --- BUTTON TEMPLATES --- */
.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--gold-glow-strong);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-main);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: var(--gold-main);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.05);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.btn-danger:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
}

.btn-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}
.btn-success:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: #10b981;
}

/* --- UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.glassmorphism {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-main);
}
.section-padding {
  padding: 80px 0;
}
.text-center { text-align: center; }

.section-subtitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 38px;
  margin-top: 8px;
  margin-bottom: 48px;
  line-height: 1.25;
  font-family: var(--font-heading);
  color: #fff;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
}

/* --- HEADER SECTION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 12px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-svg, .logo-img {
  width: 48px;
  height: 48px;
}
.logo-img {
  object-fit: contain;
  transition: var(--transition-smooth);
}
.logo-img:hover {
  transform: scale(1.05);
}
.logo-text h1 {
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.logo-text p {
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--gold-main);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.8;
  position: relative;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-main);
  transition: var(--transition-fast);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
#hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-main);
  cursor: pointer;
  padding: 8px;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
}
.hero-content {
  max-width: 600px;
  z-index: 1;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h2 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
}
.hero-btns button,
.hero-btns .btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* --- TRUST ASSURANCE BAR --- */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  flex-shrink: 0;
}
.trust-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.trust-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- SERVICE MENU SECTION --- */
.menu-header {
  margin-bottom: 48px;
}
.menu-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 550px;
  margin: 12px auto 0;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tab-btn:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
}
.tab-btn.active {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

/* --- WHY CHOOSE US GRID --- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 40px;
}
.why-us-card {
  padding: 32px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
}
.why-us-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}
.why-us-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.why-us-title {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  color: var(--gold-light);
}
.why-us-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(19, 24, 38, 0.75) 0%, rgba(7, 9, 14, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
}
.menu-card > * {
  position: relative;
  z-index: 1;
}
.menu-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}
.menu-card:hover::before {
  opacity: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.card-img-header {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  height: auto;
  border-radius: var(--border-radius-md);
  position: relative;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.card-img-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.menu-card:hover .card-img-visual {
  transform: scale(1.08);
}
.card-img-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,14,0.8) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.card-img-header .time-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
}
.time-tag {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-mid {
  margin-bottom: 24px;
}
.card-mid h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-heading);
}
.card-mid p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  min-height: 58px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}





/* --- FOOTER SECTION --- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 250px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: var(--font-body);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-col ul a:hover {
  color: var(--gold-main);
  padding-left: 4px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.social-icon:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-main);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* --- CONSULTATION CHAT WIDGET --- */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-launcher {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}
.chat-launcher:hover {
  transform: scale(1.08) rotate(10deg);
  box-shadow: var(--gold-glow-strong);
}
.chat-launcher-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

.chat-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 360px;
  height: 480px;
  border-radius: var(--border-radius-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-box.active {
  display: flex;
}
.chat-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #131826 0%, #0c0f17 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
  font-weight: 700;
  font-size: 12px;
}
.chat-header-info h4 {
  font-size: 13px;
  font-family: var(--font-body);
}
.chat-header-info span {
  font-size: 10px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-header-info span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}
.chat-close-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 20px;
  border: none;
}
.chat-close-btn:hover {
  color: #fff;
}

.chat-body {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  background: var(--bg-tertiary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--border-radius-md);
  font-size: 12px;
  line-height: 1.5;
}
.chat-bubble.bot {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.chat-bubble.user {
  background: var(--gold-gradient);
  color: var(--text-dark);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}
.chat-bubble.admin {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.chat-time {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
.chat-bubble.user .chat-time {
  color: rgba(0, 0, 0, 0.5);
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-tertiary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.chat-suggestion-chip {
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
}
.chat-suggestion-chip:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-main);
}

.chat-footer {
  padding: 12px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex-grow: 1;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: var(--font-body);
}
.chat-input:focus {
  border-color: var(--gold-main);
}
.chat-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
}
.chat-send-btn:hover {
  transform: scale(1.05);
}

/* --- ADMIN DASHBOARD --- */
.admin-container {
  display: none;
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-main);
  grid-template-columns: 240px 1fr;
}
.admin-container.active {
  display: grid;
}

/* Admin Sidebar */
.admin-sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.admin-sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.admin-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.admin-menu-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.admin-menu-item a:hover, .admin-menu-item.active a {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-light);
  border-left: 3px solid var(--gold-main);
}
.admin-menu-item a svg {
  width: 18px;
  height: 18px;
}
.admin-sidebar-bottom button {
  width: 100%;
  padding: 10px;
  font-size: 12px;
}

/* Admin Main Content */
.admin-main {
  padding: 32px;
  overflow-y: auto;
  max-height: 100vh;
  position: relative;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 20px;
}
.admin-header h2 {
  font-size: 28px;
}
.admin-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.admin-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.admin-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Admin Views */
.admin-view {
  display: none;
  animation: slideUp 0.4s ease;
}
.admin-view.active {
  display: block;
}

/* Dashboard Overview View */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  padding: 20px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--bg-secondary);
}
.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.stat-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.stat-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-main);
}
.stat-card-value {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.stat-card-trend {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-card-trend.up { color: #10b981; }
.stat-card-trend.down { color: #ef4444; }

/* Mid Section Grid */
.admin-mid-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.admin-panel-card {
  padding: 24px;
  border-radius: var(--border-radius-lg);
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.card-header-with-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-header-with-actions h3 {
  font-size: 18px;
  font-family: var(--font-body);
}

/* Custom Charts */
.revenue-chart-display {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 200px;
  padding: 20px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.chart-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  max-width: 44px;
}
.chart-bar-filled {
  width: 100%;
  background: var(--gold-gradient);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: var(--transition-smooth);
}
.chart-bar-filled:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.chart-bar-val {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold-light);
}
.chart-bar-lbl {
  font-size: 10px;
  color: var(--text-muted);
}

.top-services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.top-service-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.top-service-name { font-weight: 500; }
.top-service-count { color: var(--text-muted); }
.progress-bar-bg {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 50px;
}

/* Bookings List Table */
.bookings-table-wrapper {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.admin-table th {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
}
.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.01);
}
.badge-status {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
}
.badge-status.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.badge-status.confirmed {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge-status.completed {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.badge-status.cancelled {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.admin-actions-cell {
  display: flex;
  gap: 6px;
}
.admin-actions-cell button {
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Admin Live Chat Center */
.admin-chat-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  height: calc(100vh - 160px);
}
.admin-chat-users-list {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-chat-user-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}
.admin-chat-user-item:hover, .admin-chat-user-item.active {
  background: rgba(212, 175, 55, 0.06);
}
.admin-chat-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-main);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
}
.admin-chat-user-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.admin-chat-user-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-chat-user-snippet {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-chat-user-badge {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
}

.admin-chat-window {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.admin-chat-win-header {
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-chat-win-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-chat-win-title h4 {
  font-size: 14px;
}
.admin-chat-win-title span {
  font-size: 11px;
  color: var(--text-muted);
}
.admin-chat-win-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-chat-win-footer {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 12px;
  background: var(--bg-tertiary);
}
.admin-chat-win-input {
  flex-grow: 1;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 50px;
  color: #fff;
  outline: none;
  font-size: 13px;
}
.admin-chat-win-input:focus {
  border-color: var(--gold-main);
}
.admin-chat-win-send {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
}

/* Therapist Management Cards */
.therapist-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.therapist-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}
.therapist-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
}
.therapist-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  border: 2px solid var(--gold-main);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.therapist-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.therapist-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.therapist-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.therapist-status-indicator.available {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.therapist-status-indicator.active {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.therapist-status-indicator.off {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* --- CLIENT RESERVATION TRACKING MODAL --- */
.tracking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tracking-modal.active {
  display: flex;
  animation: slideUp 0.3s ease;
}
.tracking-modal-content {
  width: 100%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--border-radius-lg);
  padding: 32px;
  position: relative;
}
.modal-close-x {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  color: var(--text-muted);
  font-size: 20px;
  border: none;
}
.modal-close-x:hover {
  color: #fff;
}
.tracking-search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.tracking-search-bar input {
  flex-grow: 1;
}

/* --- CATALOG MARKETING BADGE --- */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- DYNAMIC ADMINISTRATIVE TOAST --- */
.admin-notification-container {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10000;
  pointer-events: none;
}
.toast-card {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid #10b981;
  background: rgba(19, 24, 38, 0.95);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(16, 185, 129, 0.15);
  animation: toastSlideIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
@keyframes toastSlideIn {
  from { transform: translateX(100%) translateY(-20px); opacity: 0; }
  to { transform: translateX(0) translateY(0); opacity: 1; }
}

/* --- ANIMATIONS & KEYFRAMES --- */
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Booking Counter Widget Notification */
.live-counter-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-main);
  box-shadow: var(--gold-glow);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
}
.live-counter-widget.show {
  transform: translateY(0);
  opacity: 1;
}
.counter-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseGold 2s infinite;
}
.counter-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
}
.counter-text strong {
  color: var(--gold-light);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
  50% { transform: scale(1.04); box-shadow: 0 0 25px rgba(212, 175, 55, 0.45); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-content h2 { font-size: 44px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-container { grid-template-columns: 1fr; }
  .booking-wizard-card, .cart-sidebar { min-height: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-mid-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 0; }
  #hamburger-btn { display: block; }
  .hero { text-align: center; justify-content: center; }
  .hero-slide { background-position: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns button,
  .hero-btns .btn { width: 100%; }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .menu-card {
    padding: 12px;
    border-radius: var(--border-radius-md);
  }
  .card-mid {
    margin-bottom: 12px;
  }
  .card-mid h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .card-mid p {
    font-size: 11px;
    line-height: 1.4;
    min-height: 48px;
  }
  .card-bottom {
    padding-top: 10px !important;
  }
  .card-bottom div {
    font-size: 10px !important;
  }
  .card-badge {
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 2px 6px;
  }
  .card-img-header {
    margin-bottom: 10px;
  }
  .time-tag {
    bottom: 8px;
    right: 8px;
    font-size: 8px;
    padding: 2px 6px;
  }
  .time-tag svg {
    width: 9px;
    height: 9px;
  }
  .scheduler-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .form-col-full { grid-column: span 1; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .chat-box { width: 310px; height: 420px; right: -10px; bottom: 70px; }
  .admin-container { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .therapist-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h2 { font-size: 32px; }
  .therapist-list-grid { grid-template-columns: 1fr; }
}

/* --- FLOATING WHATSAPP DIRECT CONTACT --- */
.wa-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  text-decoration: none;
}
.wa-float-btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.wa-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.wa-float-text {
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* --- REVIEWS LAYOUT & CUSTOM MODAL STYLES --- */
.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  transition: var(--transition-smooth);
  height: 100%;
}

.review-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-hover);
}

.review-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.review-card:hover .review-photo {
  transform: scale(1.03);
}

.verified-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author h4 {
  font-size: 15px;
  font-family: var(--font-body);
  color: #fff;
  font-weight: 600;
}

.review-author span {
  font-size: 11px;
  color: var(--text-muted);
}

.review-date {
  font-size: 11px;
  color: var(--text-muted);
}

.review-stars {
  color: var(--gold-main);
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  flex-grow: 1;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Modal adjustments */
#review-modal input:focus, #review-modal textarea:focus {
  border-color: var(--gold-main) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.star-rating-input span {
  transition: color 0.15s ease;
}

.star-rating-input span:hover,
.star-rating-input span.hovered,
.star-rating-input span.selected {
  color: var(--gold-main) !important;
}

@media (max-width: 992px) {
  .reviews-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .review-card {
    padding: 12px;
    border-radius: var(--border-radius-md);
  }
  .review-header {
    margin-bottom: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .review-author h4 {
    font-size: 13px;
  }
  .review-author span {
    font-size: 9px;
  }
  .review-date {
    font-size: 9px;
  }
  .review-stars {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .review-text {
    font-size: 11px;
    line-height: 1.4;
  }
  .review-photo-wrapper {
    margin-top: 10px;
  }
  .verified-badge {
    top: 6px;
    left: 6px;
    font-size: 7px;
    padding: 2px 5px;
  }
}

/* --- CARD QUANTITY CONTROLLER --- */
.card-qty-controller {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  padding: 4px 10px;
  height: 36px;
  box-sizing: border-box;
}

.card-qty-controller .qty-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
  line-height: 1;
}

.card-qty-controller .qty-btn:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
}

.card-qty-controller .qty-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  min-width: 14px;
  text-align: center;
  font-family: var(--font-body);
}

/* --- REVIEWS ACTION BUTTON WRAPPER --- */
.reviews-action-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* General button disabled state */
button:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* Disabled load more reviews button - turns into a clean text label */
#load-more-reviews:disabled {
  background: transparent !important;
  border: none !important;
  color: var(--text-muted) !important;
  cursor: default !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 0;
  width: auto !important; /* Force auto width */
}


/* --- FLOATING CART BAR FOR MOBILE --- */
.floating-cart-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(19, 24, 38, 0.95) 0%, rgba(7, 9, 14, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-main);
  box-shadow: var(--gold-glow-strong);
  border-radius: 50px;
  padding: 12px 24px;
  z-index: 9999;
  display: none; /* Controlled via JS */
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.floating-cart-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-cart-qty {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.floating-cart-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-body);
}

.floating-cart-btn {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  box-shadow: var(--gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.floating-cart-btn:hover {
  background: var(--gold-gradient-hover);
  transform: scale(1.02);
}

.drawer-close-btn {
  display: none;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- MOBILE & TABLET MEDIA QUERY RESPONSIVENESS --- */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px; /* Hidden offscreen right */
    width: 280px;
    height: 100vh;
    background: rgba(7, 9, 14, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  }
  
  .nav-links.mobile-active {
    right: 0; /* Slide in drawer */
  }
  
  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .drawer-close-btn {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
  }
  
  .drawer-close-btn:hover {
    color: #fff;
  }
}

@media (max-width: 600px) {
  .reviews-action-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  
  .reviews-action-wrapper button {
    width: 100%;
  }
}

/* --- FAQ ACCORDION SECTION --- */
.faq-accordion {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}
.faq-question:hover {
  color: var(--gold-light);
}
.faq-icon {
  font-size: 18px;
  color: var(--gold-main);
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 20px;
}
.faq-item.active {
  border-color: var(--gold-main);
  box-shadow: var(--gold-glow);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* --- BOOKING MODAL CUSTOM STYLES --- */
#booking-modal input:focus, 
#booking-modal select:focus, 
#booking-modal textarea:focus {
  border-color: var(--gold-main) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

#booking-modal select option {
  background-color: var(--bg-tertiary) !important;
  color: #fff;
}

.check-card:hover {
  border-color: var(--gold-main) !important;
  background: rgba(212, 175, 55, 0.06) !important;
}

.price-summary span {
  font-family: var(--font-body);
}

