/* ============================================
   Lotfi Paella Élixir — Style Principal
   Thème: Océan Neon — Dark Premium
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Noto+Kufi+Arabic:wght@400;700;900&family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --primary: #00e5ff;
  --primary-dark: #00b8d4;
  --primary-glow: rgba(0, 229, 255, 0.35);
  --secondary: #ff4444;
  --secondary-glow: rgba(255, 68, 68, 0.30);
  --accent-gold: #ffc947;
  --bg-deep: #070e1a;
  --bg-main: #0a1628;
  --bg-surface: #111d32;
  --bg-card: #152238;
  --bg-card-hover: #1a2a45;
  --text-primary: #e8f0fe;
  --text-secondary: #8fa3bf;
  --text-muted: #5a7192;
  --border-color: rgba(0, 229, 255, 0.12);
  --glass-bg: rgba(17, 29, 50, 0.65);
  --glass-border: rgba(0, 229, 255, 0.15);
  --overlay-dark: rgba(7, 14, 26, 0.7);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-heading-ar: 'Noto Kufi Arabic', sans-serif;
  --font-body-ar: 'Noto Sans Arabic', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1280px;
  --container-px: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-neon: 0 0 20px var(--primary-glow), 0 0 60px rgba(0, 229, 255, 0.1);
  --shadow-neon-red: 0 0 20px var(--secondary-glow), 0 0 60px rgba(255, 68, 68, 0.1);
}

/* ---------- Arabic Language Overrides ---------- */
[dir="rtl"] {
  --font-heading: 'Noto Kufi Arabic', sans-serif;
  --font-body: 'Noto Sans Arabic', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition-fast);
}
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-neon);
  animation: pulseNeon 1.5s ease-in-out infinite;
  object-fit: cover;
}

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

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

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.section-subtitle::after {
  background: linear-gradient(90deg, var(--primary), transparent);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* FIX: Only highlight the second span (the accent word) */
.section-title .highlight-text {
  color: var(--primary);
  text-shadow: 0 0 30px var(--primary-glow);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* Ripple effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn:active::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-deep);
  box-shadow: 0 4px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--primary-glow);
  color: var(--bg-deep);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.08);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-red {
  background: linear-gradient(135deg, #ff4444, #cc1111);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 68, 68, 0.35);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 68, 68, 0.45);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #e0a300);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(255, 201, 71, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 201, 71, 0.45);
  color: var(--bg-deep);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.nav-brand img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-neon);
  object-fit: cover;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--primary-glow);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.sidebar-social {
  display: none;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.mobile-lang {
  display: none;
}

.lang-toggle button {
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.lang-toggle button.active {
  background: var(--primary);
  color: var(--bg-deep);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Desktop Language Toggle */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-lang {
  display: flex;
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transform: scale(1.1);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 14, 26, 0.5) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    var(--bg-main) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  animation: floatBubble linear infinite;
  opacity: 0;
}

@keyframes floatBubble {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-px);
  animation: heroFadeIn 1.2s ease-out 0.3s both;
}

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

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-neon), 0 0 80px rgba(0, 229, 255, 0.15);
  animation: pulseNeon 3s ease-in-out infinite;
  object-fit: cover;
  background: var(--bg-deep);
}

@keyframes pulseNeon {
  0%, 100% { box-shadow: var(--shadow-neon), 0 0 80px rgba(0, 229, 255, 0.15); }
  50% { box-shadow: 0 0 30px var(--primary-glow), 0 0 100px rgba(0, 229, 255, 0.25), 0 0 150px rgba(0, 229, 255, 0.08); }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

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

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-style: italic;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-location i {
  color: var(--secondary);
  animation: bouncePin 2s ease-in-out infinite;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.hero-buttons::-webkit-scrollbar {
  display: none;
}

.hero-buttons .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 32px;
  cursor: pointer;
  animation: bounceDown 2s ease-in-out infinite;
  transition: all var(--transition-fast);
  width: fit-content;
}

.hero-scroll-hint:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.hero-scroll-hint i {
  font-size: 1.1rem;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Section wave dividers */
.section-wave {
  position: relative;
  line-height: 0;
  margin-top: -2px;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-wave.flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Decorative element behind about image */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

[dir="rtl"] .about-image-wrapper::before {
  left: 12px;
  right: -12px;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-deep);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-neon);
  display: flex;
  align-items: center;
  gap: 8px;
}

[dir="rtl"] .about-image-badge {
  right: auto;
  left: 30px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.about-text h3 .highlight-text {
  color: var(--primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.about-feature:hover {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.04);
}

.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 30px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.stat-card .stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-primary);
  display: block;
}

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

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 14, 26, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--primary);
  transition: transform var(--transition-base);
  text-shadow: var(--shadow-neon);
  transform: scale(0.5);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
  transform: scale(1);
}

/* Featured items — span 2 rows */
.gallery-item.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-load-more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.menu-carousel {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.menu-slides {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-card);
  aspect-ratio: 9/16;
}

.menu-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.menu-slide.active {
  opacity: 1;
  position: relative;
}

.menu-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-card);
}

.menu-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.menu-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-card);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-nav button:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
  background: rgba(0, 229, 255, 0.08);
}

.menu-dots {
  display: flex;
  gap: 8px;
}

.menu-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-dots span.active {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  width: 28px;
  border-radius: 6px;
}

/* Menu slide counter */
.menu-counter {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-counter .current {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section {
  padding: var(--section-py) 0;
  background: var(--bg-deep);
  overflow: hidden;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all var(--transition-base);
}

.video-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  background: #000;
}

.video-card-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-card-info i {
  color: var(--primary);
}

.video-card-info span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Reels Section */
.reels-container {
  margin-top: 50px;
}

.reels-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.reels-title i {
  color: var(--secondary);
  margin: 0 6px;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.reel-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all var(--transition-base);
  position: relative;
}

.reel-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-neon-red);
  transform: translateY(-4px);
}

.reel-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #000;
}

.reel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--secondary), #ff6b6b);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

[dir="rtl"] .reel-badge {
  left: auto;
  right: 12px;
}

/* ============================================
   CHEF SECTION
   ============================================ */
.chef-section {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.chef-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.chef-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.chef-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.chef-slide.active {
  opacity: 1;
}

.chef-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-carousel-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.chef-carousel-nav span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chef-carousel-nav span.active {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  width: 28px;
  border-radius: 6px;
}

/* Chef carousel arrows */
.chef-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.chef-carousel-arrow:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--primary);
}

.chef-carousel-arrow.prev { left: 12px; }
.chef-carousel-arrow.next { right: 12px; }

[dir="rtl"] .chef-carousel-arrow.prev { left: auto; right: 12px; }
[dir="rtl"] .chef-carousel-arrow.next { right: auto; left: 12px; }

.chef-info h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.chef-info h3 .highlight-text {
  color: var(--primary);
}

.chef-info .chef-role {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chef-info .chef-role::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

[dir="rtl"] .chef-info .chef-role::before {
  order: 2;
}

.chef-info p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.chef-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.chef-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.chef-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: var(--section-py) 0;
  background: var(--bg-deep);
  overflow: hidden;
}

.reviews-track-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  direction: ltr; /* Force LTR for layout stability in scrolling review cards */
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep), transparent);
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep), transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 80s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



.review-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all var(--transition-base);
  cursor: pointer;
}

.review-card:hover {
  border-color: var(--primary);
  transform: scale(1.03);
}

.review-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================
   LOCATION / CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FIX: Reset link styles inside contact cards */
a.contact-card {
  color: inherit;
  text-decoration: none;
}

a.contact-card:hover {
  color: inherit;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-neon);
}

[dir="rtl"] .contact-card:hover {
  transform: translateX(-6px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.contact-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.contact-social a:hover {
  transform: translateY(-5px);
}

.contact-social a.fb:hover {
  border-color: #1877F2;
  color: #1877F2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.contact-social a.ig:hover {
  border-color: #E4405F;
  color: #E4405F;
  box-shadow: 0 0 20px rgba(228, 64, 95, 0.3);
}

.contact-social a.tk:hover {
  border-color: #00f2ea;
  color: #00f2ea;
  box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}

.contact-social a.wa:hover {
  border-color: #25D366;
  color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.contact-social a.phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-card);
  height: 380px;
  min-height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.85) contrast(1.1) saturate(0.8) hue-rotate(200deg);
  transition: filter var(--transition-base);
}

.map-container:hover iframe {
  filter: brightness(0.9) contrast(1.05) saturate(0.9) hue-rotate(200deg);
}

/* ============================================
   NEON SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--primary));
  background-size: 200% 100%;
  animation: shine 3s linear infinite;
  box-shadow: 0 0 10px var(--primary-glow), 0 0 15px rgba(0, 229, 255, 0.4);
  z-index: 100000;
  pointer-events: none;
  transition: width 0.1s ease-out;
}

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

/* ============================================
   LIVE STATUS BADGE
   ============================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

[dir="rtl"] .status-badge {
  margin-left: 0;
  margin-right: 8px;
}

.status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.status-badge.open {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.status-badge.open::before {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulseGreen 1.6s ease-in-out infinite;
}

.status-badge.closed {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.15);
}

.status-badge.closed::before {
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
  animation: pulseRed 1.6s ease-in-out infinite;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes pulseRed {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.booking-container::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.booking-form {
  position: relative;
  z-index: 1;
}

.booking-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.booking-form .form-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.booking-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  background: var(--bg-card-hover);
}

.booking-form select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.w-100 {
  width: 100%;
}

.mt-4 {
  margin-top: 24px;
}

/* Dish Cards Grid for Booking */
.dish-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.dish-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 110px;
}

.dish-card-img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all var(--transition-fast);
}

.dish-card:hover .dish-card-img {
  filter: brightness(1.0);
  transform: scale(1.03);
}

.dish-card-info {
  padding: 8px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

/* Checkbox Indicator overlay */
.dish-card-checkbox {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(7, 14, 26, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all var(--transition-fast);
  z-index: 2;
}

[dir="rtl"] .dish-card-checkbox {
  right: auto;
  left: 8px;
}

/* Active Selected Card Style */
.dish-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  background: var(--bg-card-hover);
}

.dish-card.selected .dish-card-img {
  filter: brightness(1.0);
}

.dish-card.selected .dish-card-checkbox {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-deep);
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Responsive adjustment for Mobile view */
@media (max-width: 600px) {
  .dish-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 24px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.footer-brand h3 {
  font-size: 1.3rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 8px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours li span:last-child {
  color: var(--primary);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--primary-dark);
  text-shadow: 0 0 10px var(--primary-glow);
}

.footer-bottom span {
  color: var(--secondary);
}

.footer-bottom .developer-info span {
  color: inherit;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btn {
  position: fixed;
  bottom: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp {
  right: 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  animation: pulseWhatsApp 2.5s ease-in-out infinite;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 28px;
}

.floating-whatsapp.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* WhatsApp tooltip */
.floating-whatsapp .wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

[dir="rtl"] .floating-whatsapp .wa-tooltip {
  right: auto;
  left: 68px;
}

.floating-whatsapp .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

[dir="rtl"] .floating-whatsapp .wa-tooltip::after {
  right: auto;
  left: -6px;
  border-left-color: transparent;
  border-right-color: #fff;
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

.floating-scroll-top {
  left: 28px;
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

[dir="rtl"] .floating-scroll-top {
  left: auto;
  right: 28px;
}

.floating-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-scroll-top:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 85vw;
  max-height: 85vh;
  z-index: 1;
}

.lightbox img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform var(--transition-slow);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 15px;
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  text-align: center;
  background: rgba(17, 29, 50, 0.75);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: auto;
  min-width: 200px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base) 0.15s;
}

.lightbox.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 20;
}

.lightbox-close:hover {
  background: rgba(255, 68, 68, 0.3);
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary-glow);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-arrow.prev {
  left: 30px;
}

.lightbox-arrow.next {
  right: 30px;
}

.lightbox-arrow:hover {
  background: var(--primary);
  color: var(--bg-deep);
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* RTL adjustment: Swap chevrons display direction visually */
[dir="rtl"] .lightbox-arrow.prev i {
  transform: rotate(180deg);
}

[dir="rtl"] .lightbox-arrow.next i {
  transform: rotate(180deg);
}

/* Mobile responsive styles for Lightbox */
@media (max-width: 768px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .lightbox-arrow.prev {
    left: 12px;
  }
  .lightbox-arrow.next {
    right: 12px;
  }
  .lightbox-caption {
    font-size: 0.95rem;
    padding: 6px 15px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children animation */
.stagger-children .reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .about-grid,
  .chef-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --container-px: 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 4px;
    transition: right var(--transition-base), left var(--transition-base);
    z-index: 999;
    overflow-y: auto;
  }

  [dir="rtl"] .nav-links {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid var(--border-color);
  }

  .nav-links.open {
    right: 0;
  }

  [dir="rtl"] .nav-links.open {
    right: auto;
    left: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .desktop-lang {
    display: none;
  }

  .mobile-lang {
    display: flex;
  }

  .sidebar-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }

  .sidebar-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
  }

  .sidebar-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
  }

  .sidebar-social a.fb:hover { border-color: #1877F2; color: #1877F2; }
  .sidebar-social a.ig:hover { border-color: #E4405F; color: #E4405F; }
  .sidebar-social a.tk:hover { border-color: #00f2ea; color: #00f2ea; }
  .sidebar-social a.wa:hover { border-color: #25D366; color: #25D366; }
  .sidebar-social a.phone:hover { border-color: var(--primary); color: var(--primary); }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

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

  .hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-location {
    margin-bottom: 20px;
  }


  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 14, 26, 0.45) 0%,
      rgba(10, 22, 40, 0.55) 75%,
      var(--bg-main) 100%
    );
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px 0;
    overflow: visible;
  }

  .hero-buttons .btn {
    padding: 12px 14px;
    font-size: clamp(0.78rem, 3.2vw, 0.88rem);
    display: flex;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .wave-divider svg {
    height: 40px;
  }

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

  .gallery-item.featured {
    grid-row: span 1;
  }

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

  .stat-card {
    padding: 20px 12px;
  }

  .stat-card .stat-number {
    font-size: 1.7rem;
  }

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

  .about-image-wrapper::before {
    display: none;
  }

  .menu-carousel {
    max-width: 100%;
  }

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

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

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

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .review-card {
    width: 240px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    font-size: 1.3rem;
  }

  .floating-whatsapp {
    right: 18px;
  }

  .floating-scroll-top {
    left: 18px;
  }

  [dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 18px;
  }

  [dir="rtl"] .floating-scroll-top {
    left: auto;
    right: 18px;
  }

  .floating-whatsapp .wa-tooltip {
    display: none;
  }

  .chef-carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .booking-container {
    padding: 24px 16px;
  }

  .about-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {

  .hero-logo {
    width: 95px;
    height: 95px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 6px;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .hero-location {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .hero-buttons .btn:nth-child(1),
  .hero-buttons .btn:nth-child(2) {
    grid-column: span 2;
  }

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

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

  .contact-social {
    flex-wrap: wrap;
  }

  .nav-brand-text {
    font-size: 1rem;
  }

  .nav-brand img {
    width: 36px;
    height: 36px;
  }

  .status-badge {
    padding: 2px 6px;
    font-size: 0.65rem;
  }

  .map-container {
    height: 280px;
    min-height: 280px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-primary-c { color: var(--primary) !important; }
.text-secondary-c { color: var(--secondary) !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Neon text glow */
.neon-text {
  text-shadow: 0 0 10px var(--primary-glow), 0 0 40px rgba(0, 229, 255, 0.15);
}



/* Selection color */
::selection {
  background: var(--primary);
  color: var(--bg-deep);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ============================================
   CUSTOM NEON CURSOR (Desktop Only)
   ============================================ */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100001;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow), 0 0 20px rgba(0, 229, 255, 0.2);
  transform: translate(-50%, -50%);
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 229, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}

.cursor-outline.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.06);
}

.cursor-outline.cursor-click {
  width: 28px;
  height: 28px;
  border-color: var(--accent-gold);
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}

/* ============================================
   ENHANCED VIDEO PLAYER
   ============================================ */
.video-card video,
.reel-card video {
  border-radius: 0;
}

.video-card video::-webkit-media-controls-panel,
.reel-card video::-webkit-media-controls-panel {
  background: linear-gradient(0deg, rgba(7, 14, 26, 0.85) 0%, transparent 60%);
}

.video-card video::-webkit-media-controls-play-button,
.reel-card video::-webkit-media-controls-play-button {
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.4));
}

/* Video play overlay animation */
.video-card .video-card-info i {
  transition: transform var(--transition-base), color var(--transition-base);
}

.video-card:hover .video-card-info i {
  transform: scale(1.25);
  color: var(--accent-gold);
}

/* ============================================
   TILT HOVER EFFECTS
   ============================================ */
.stat-card,
.contact-card,
.gallery-item {
  transition: all var(--transition-base), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   LINK & BUTTON MICRO-ANIMATIONS
   ============================================ */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

/* Nav link glow on hover */
.nav-links a:hover {
  text-shadow: 0 0 12px var(--primary-glow);
}

/* Footer link slide effect */
.footer-links a {
  position: relative;
  overflow: hidden;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.footer-links a:hover::before {
  width: 100%;
}

[dir="rtl"] .footer-links a::before {
  left: auto;
  right: 0;
}

/* Social icons pulse on hover */
.contact-social a:hover,
.chef-social a:hover {
  animation: iconPulse 0.4s ease;
}

@keyframes iconPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.15); }
  100% { transform: translateY(-5px) scale(1); }
}

/* Gallery item shine effect */
.gallery-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(0, 229, 255, 0.04) 50%,
    transparent 60%
  );
  transform: rotate(45deg) translateY(100%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover::after {
  transform: rotate(45deg) translateY(-100%);
}

/* Section header text reveal animation */
.section-subtitle span {
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.reveal .section-subtitle span {
  transform: translateY(10px);
  opacity: 0;
}

.reveal.visible .section-subtitle span {
  transform: translateY(0);
  opacity: 1;
}

/* Smooth image loading fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

/* ========== CHEF SHARE BUTTON ========== */
.chef-share-container {
  margin-top: 38px;
}

.btn-share-chef {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.05);
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-share-chef:hover {
  background: var(--primary);
  color: var(--bg-deep) !important;
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

.btn-share-chef i {
  font-size: 1rem;
  transition: transform var(--transition-base);
}

.btn-share-chef:hover i {
  animation: shareRotate 0.6s ease-in-out;
}

@keyframes shareRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(20deg) scale(1.25); }
  100% { transform: rotate(0deg) scale(1); }
}

/* ========== TOAST NOTIFICATION ========== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100002;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-notification {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-neon);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification i {
  color: var(--primary);
  font-size: 1.1rem;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-notification.hide {
  opacity: 0;
  transform: translateY(-20px);
}

