/* 
   ==========================================================================
   Marakesh Club - High-End Nightclub & Disco Stylesheet
   Theme: Ultra-Luxury Royal Champagne Gold & Deep Velvet Ruby
   100% Precision Responsive Engine (Tested for 320px up to 4K Desktops)
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&family=Cinzel:wght@700;900&display=swap');

:root {
  /* Rich Deep Backgrounds */
  --bg-dark: #090712;
  --bg-dark-secondary: #0d0a1a;
  --bg-card: rgba(18, 14, 30, 0.82);
  --bg-card-hover: rgba(28, 20, 48, 0.92);
  
  /* Glass Borders */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-gold-border: rgba(212, 175, 55, 0.28);
  
  /* Royal Champagne Gold Palette */
  --primary-gold: #d4af37;
  --gold-light: #fceabb;
  --gold-mid: #f8b500;
  --gold-dark: #aa820a;
  
  /* Deep Velvet Ruby & Magenta Mood Accents */
  --primary-ruby: #e0245e;
  --primary-burgundy: #a11243;
  --primary-purple: #7928ca;
  --primary-cyan: #00d2ff;
  
  /* Clean Luxury Text Colors */
  --text-main: #ffffff;
  --text-muted: #c8c2d6;
  --text-gold: #f3e2a9;
  
  /* Fonts */
  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --font-brand: 'Cinzel', serif;

  /* Ambient Metallic Glows */
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.45);
  --glow-ruby: 0 0 20px rgba(224, 36, 94, 0.45);
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Box Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.65;
  width: 100%;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #090712;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-gold), var(--primary-ruby));
  border-radius: 4px;
}

/* Responsive Media Defaults */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
}

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

ul {
  list-style: none;
}

/* Luxurious Metallic Gradients */
.text-gradient-gold {
  background: linear-gradient(135deg, #fff3cd 0%, #f8b500 40%, #d4af37 70%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #ff75c3 0%, #e0245e 50%, #a11243 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #7928ca 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: clamp(0.72rem, 1.8vw, 0.85rem);
  font-weight: 800;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(212, 175, 55, 0.08);
  padding: 5px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: clamp(1.45rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  max-width: 650px;
  margin: 8px auto 0 auto;
}

section {
  padding: clamp(2.5rem, 5vw, 4.8rem) 0.8rem;
  position: relative;
  width: 100%;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(0.6rem, 2vw, 1.2rem);
  padding-right: clamp(0.6rem, 2vw, 1.2rem);
}

/* Page Header Banner */
.page-banner {
  padding: clamp(90px, 14vw, 130px) 0.8rem 35px 0.8rem;
  background: linear-gradient(180deg, rgba(13, 10, 26, 0.96) 0%, rgba(9, 7, 18, 0.98) 100%),
              radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 60%);
  text-align: center;
  border-bottom: 1px solid var(--glass-gold-border);
}

.page-banner-title {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  font-weight: 600;
  flex-wrap: wrap;
}

.breadcrumb-nav a:hover {
  color: var(--primary-gold);
}

/* High-End Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
  width: 100%;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

/* Ultra-Luxury Buttons */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #fceabb 0%, #f8b500 50%, #d4af37 100%);
  color: #090712;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fceabb 40%, #f8b500 100%);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
  transform: translateY(-2px);
}

.btn-pink {
  background: linear-gradient(135deg, #e0245e 0%, #a11243 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(224, 36, 94, 0.4);
}
.btn-pink:hover {
  background: linear-gradient(135deg, #ff407d 0%, #e0245e 100%);
  box-shadow: 0 6px 25px rgba(224, 36, 94, 0.7);
  transform: translateY(-2px);
}

.btn-outline-neon {
  background: rgba(212, 175, 55, 0.04);
  color: var(--primary-gold);
  border: 1.5px solid var(--primary-gold);
}
.btn-outline-neon:hover {
  background: var(--primary-gold);
  color: #090712;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
}

/* HEADER & RESPONSIVE LOGO */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 0.75rem 0;
  background: rgba(9, 7, 18, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-fast);
}

.header.scrolled {
  background: rgba(9, 7, 18, 0.98);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img {
  height: clamp(34px, 4.5vw, 44px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.7));
  transition: var(--transition-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.95));
}

.logo-title-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.logo-tagline {
  font-family: var(--font-brand);
  font-size: clamp(0.5rem, 1.5vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
  margin-top: 2px;
  white-space: nowrap;
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.6rem);
}

.nav-link {
  font-size: clamp(0.85rem, 1.4vw, 0.96rem);
  font-weight: 700;
  color: #d1cbdc;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* ROYAL DROPDOWN MENU STYLING */
.nav-dropdown-wrap {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: -80px;
  width: 620px;
  max-height: 480px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 1.4rem;
  background: rgba(10, 7, 22, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--primary-gold);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  z-index: 12000;
}

.nav-dropdown-wrap:hover .dropdown-menu,
.nav-dropdown-wrap.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-header {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-gold);
  border-bottom: 1px solid var(--glass-gold-border);
  padding-bottom: 4px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-item {
  color: #c8c2d6;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 6px;
  transition: var(--transition-fast);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #ffffff;
  padding-right: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: clamp(0.78rem, 1.5vw, 0.85rem);
  font-weight: 800;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  border-radius: 40px;
  background: rgba(212, 175, 55, 0.06);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.header-btn:hover {
  background: var(--primary-gold);
  color: #090712;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
}

.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.42;
  filter: brightness(0.65) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(9, 7, 18, 0.35) 0%, rgba(9, 7, 18, 0.96) 90%),
              linear-gradient(180deg, rgba(9, 7, 18, 0.5) 0%, rgba(9, 7, 18, 0.98) 100%);
  z-index: -1;
}

canvas#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 5px 16px;
  border-radius: 50px;
  color: var(--gold-light);
  font-weight: 800;
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.12rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.8rem auto;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.stat-item {
  padding: 0.8rem 0.4rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.3rem, 3.5vw, 2.1rem);
  font-weight: 900;
  color: var(--primary-gold);
  display: block;
}

.stat-label {
  font-size: clamp(0.72rem, 1.8vw, 0.85rem);
  color: var(--text-muted);
  font-weight: 700;
}

/* Page Connect Grid */
.page-connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.page-connect-card {
  padding: 1.4rem;
  text-align: center;
  border: 1px solid var(--glass-gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-connect-icon {
  font-size: 1.9rem;
  color: var(--primary-gold);
  margin-bottom: 0.7rem;
}

.page-connect-title {
  font-size: 1.08rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.page-connect-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-main-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-gold-border);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.feature-box {
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-box i {
  font-size: 1.4rem;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.feature-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Rules List Layout */
.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.7;
}

.rules-list li i {
  color: var(--primary-gold);
  font-size: 1.15rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.rules-list li div {
  flex: 1;
}

.rules-list strong {
  color: #ffffff;
  font-size: 0.98rem;
  display: inline-block;
  margin-left: 6px;
}

.rules-list span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Events & Media */
.event-card {
  overflow: hidden;
  width: 100%;
}

.event-img-box {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.event-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event-card:hover .event-img-box img {
  transform: scale(1.08);
}

.event-date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #fceabb, #f8b500);
  color: #090712;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
}

.event-content {
  padding: 1.2rem;
}

.event-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.event-meta {
  display: flex;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

/* Videos & Photos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0818;
  border: 1px solid var(--glass-gold-border);
  width: 100%;
}

.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  background: #000000;
}

.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 0.8rem;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.video-tag {
  font-size: 0.72rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-gold);
  color: #090712;
  border-color: var(--primary-gold);
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}

.photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 210px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

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

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 7, 18, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.photo-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090712;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.photo-card:hover .photo-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

.photo-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
}

/* Services & VIP Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.vip-card {
  padding: 1.5rem;
  position: relative;
}

.vip-card.recommended {
  border-color: var(--primary-gold);
  box-shadow: var(--glow-gold);
}

.vip-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, #fceabb, #f8b500);
  color: #090712;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 30px;
}

.vip-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-gold);
  margin: 0.6rem 0;
}

.vip-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.vip-features-list li i {
  color: var(--primary-gold);
}

/* Menu Category Titles */
.menu-category-title {
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--glass-gold-border);
  padding-bottom: 6px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.menu-item-card {
  padding: 1rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.menu-item-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.menu-item-badge {
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(224, 36, 94, 0.18);
  color: #ff5e95;
  font-weight: 800;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-header {
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
}

.faq-header i {
  color: var(--primary-gold);
  transition: var(--transition-fast);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.85rem;
}

.faq-item.active .faq-body {
  padding: 0 1.2rem 1rem 1.2rem;
  max-height: 300px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}

.contact-info-box {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-gold);
}

.social-links-grid {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 0.8rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.social-btn.tiktok:hover { background: #00f2fe; color: #000; border-color: #00f2fe; }
.social-btn.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.social-btn.snapchat:hover { background: #fffc00; color: #000; border-color: #fffc00; }
.social-btn.whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }

.map-container {
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--glass-gold-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition-fast);
  cursor: pointer;
}

.float-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-phone { background: linear-gradient(135deg, #f8b500, #d4af37); color: #090712; }

/* Modal Overlay & Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 7, 18, 0.94);
  backdrop-filter: blur(18px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 0.8rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: 92%;
  max-width: 460px;
  max-height: 85vh;
  overflow-y: auto;
  background: #100b21;
  border: 1px solid var(--primary-gold);
  border-radius: 16px;
  padding: 1.4rem;
  position: relative;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--primary-gold);
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.06);
}

/* Footer Styling */
.footer {
  background: #040309;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.8rem 0 100px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}

.footer-col-title {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 4px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.copyright-bar {
  text-align: center;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* 
   ==========================================================================
   EXPLICIT RESPONSIVE BREAKPOINTS (320px, 480px, 768px, 992px)
   ========================================================================== 
*/

/* Desktop & Laptop (Min 992px) */
@media (min-width: 992px) {
  .nav-menu {
    display: flex !important;
  }
  .mobile-toggle {
    display: none !important;
  }
}

/* Tablet & Mobile (Max 991px) */
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(9, 7, 18, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
    padding: 5rem 1.5rem 2rem 1.5rem;
    overflow-y: auto;
    z-index: 11000;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--glass-gold-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
  }

  .nav-menu.active {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(18, 14, 30, 0.6);
    box-shadow: none;
    border: none;
    padding: 0.5rem;
    transform: none;
  }

  .nav-dropdown-wrap.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-link {
    font-size: 1.05rem;
  }

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

  .hero-buttons .btn-neon {
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile Devices (Max 576px) */
@media (max-width: 576px) {
  .header {
    padding: 0.55rem 0;
  }
  
  .nav-container {
    padding: 0 0.3rem;
  }

  .brand-logo {
    gap: 5px;
  }

  .logo-name {
    font-size: 1.1rem;
  }
  
  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .header-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  
  .header-btn i {
    font-size: 0.82rem;
  }

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

  .about-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

  .page-connect-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 110px;
  }

  .floating-actions {
    bottom: 14px;
    left: 14px;
  }
  
  .float-btn {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }
}

/* Ultra Small Devices (Max 360px) */
@media (max-width: 360px) {
  .header-btn span {
    display: none;
  }
  
  .header-btn {
    padding: 6px;
    border-radius: 50%;
    width: 34px;
    height: 34px;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-tagline {
    display: none;
  }
}
