/* ============================================
   RESTAURANTE SEPHIA - PROFESSIONAL 3D WEBSITE
   ============================================ */

:root {
  --primary: #C9A96E;
  --primary-dark: #A8843A;
  --primary-light: #E4D5B7;
  --neon-purple: #9B59B6;
  --neon-purple-bright: #C77DFF;
  --neon-gold: #FFD700;
  --neon-gold-soft: #E8B84B;
  --bg-dark: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --bg-section: #0F0F0F;
  --text-white: #F5F0EB;
  --text-gray: #A0998F;
  --text-muted: #6B6560;
  --accent-red: #8B2D2D;
  --accent-green: #2D8B4A;
  --whatsapp: #25D366;
  --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.15);
  --shadow-neon: 0 0 30px rgba(155, 89, 182, 0.2), 0 0 60px rgba(201, 169, 110, 0.15);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 30px 80px rgba(0, 0, 0, 0.7);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --perspective: 1200px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 auto 16px;
  animation: pulse-gold 1.5s infinite;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.loader-logo-img {
  width: 280px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 28px;
  animation: loader-neon-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.5)) drop-shadow(0 0 40px rgba(155, 89, 182, 0.3));
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon-purple), var(--primary), var(--neon-gold));
  border-radius: 2px;
  animation: loader-fill 1.8s ease-in-out forwards;
}

@keyframes loader-fill {
  to { width: 100%; }
}

@keyframes loader-neon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.5)) drop-shadow(0 0 30px rgba(155, 89, 182, 0.25));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.7)) drop-shadow(0 0 60px rgba(155, 89, 182, 0.45)) drop-shadow(0 0 80px rgba(255, 215, 0, 0.2));
    transform: scale(1.03);
  }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(201, 169, 110, 0); }
}

/* ============================================
   NEON BACKGROUND WATERMARK (Non-editable)
   ============================================ */

.neon-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.neon-wm-img {
  position: absolute;
  opacity: 0.02;
  filter: blur(2px) saturate(1.5);
  user-select: none;
  -webkit-user-drag: none;
}

.neon-wm-1 {
  width: 500px;
  top: 15%;
  right: -8%;
  transform: rotate(-15deg);
  animation: wm-float-1 25s ease-in-out infinite;
}

.neon-wm-2 {
  width: 400px;
  bottom: 10%;
  left: -5%;
  transform: rotate(12deg);
  animation: wm-float-2 30s ease-in-out infinite;
}

.neon-wm-3 {
  width: 350px;
  top: 55%;
  right: 25%;
  transform: rotate(-8deg);
  animation: wm-float-3 20s ease-in-out infinite;
  opacity: 0.015;
}

@keyframes wm-float-1 {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-30px); }
}

@keyframes wm-float-2 {
  0%, 100% { transform: rotate(12deg) translateX(0); }
  50% { transform: rotate(10deg) translateX(20px); }
}

@keyframes wm-float-3 {
  0%, 100% { transform: rotate(-8deg) scale(1); opacity: 0.015; }
  50% { transform: rotate(-5deg) scale(1.05); opacity: 0.025; }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.3));
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.5)) drop-shadow(0 0 30px rgba(155, 89, 182, 0.3));
  transform: scale(1.05);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 1px;
}

.nav-logo:hover .logo-icon {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-social-links {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(201, 169, 110, 0.18);
}

.nav-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: var(--transition-fast);
}

.nav-social-link:hover {
  color: var(--primary);
  border-color: rgba(201, 169, 110, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(201, 169, 110, 0.12);
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.35), 0 0 20px rgba(155, 89, 182, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: var(--perspective);
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-layer-1 {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(155, 89, 182, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(199, 125, 255, 0.04) 0%, transparent 40%),
    var(--bg-dark);
}

.hero-layer-2 {
  background: 
    repeating-conic-gradient(
      rgba(201, 169, 110, 0.02) 0% 25%, 
      transparent 0% 50%
    ) 0 0 / 80px 80px;
  opacity: 0.5;
  animation: subtle-shift 20s linear infinite;
}

.hero-layer-3 {
  background: radial-gradient(circle at center, transparent 30%, rgba(10, 10, 10, 0.8) 100%);
}

@keyframes subtle-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  transform-style: preserve-3d;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-badge i {
  color: #FFD700;
}

/* Hero Logo (Non-editable branding) */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-logo-img {
  width: clamp(280px, 50vw, 520px);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.4)) drop-shadow(0 0 40px rgba(155, 89, 182, 0.2));
  animation: hero-logo-breathe 4s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.12) 0%, rgba(155, 89, 182, 0.06) 40%, transparent 70%);
  animation: hero-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-logo-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.4)) drop-shadow(0 0 30px rgba(155, 89, 182, 0.15));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(201, 169, 110, 0.6)) drop-shadow(0 0 50px rgba(155, 89, 182, 0.3)) drop-shadow(0 0 80px rgba(255, 215, 0, 0.1));
    transform: scale(1.015);
  }
}

@keyframes hero-glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.hero-title {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-title-line {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.hero-title-accent {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  filter: drop-shadow(0 4px 30px rgba(201, 169, 110, 0.2));
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-gray);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-info i {
  color: var(--primary);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 1.1s both;
}

.hero-scroll {
  animation: fadeInUp 0.8s ease 1.3s both;
}

.hero-scroll span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(155, 89, 182, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(155, 89, 182, 0.1);
}

.scroll-indicator i {
  color: var(--primary);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

.hero-3d-element {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: var(--perspective);
}

.floating-card {
  position: absolute;
  padding: 14px 20px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-gray);
  transform-style: preserve-3d;
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.06), 0 0 40px rgba(201, 169, 110, 0.04);
}

.floating-card i {
  color: var(--primary);
  font-size: 1rem;
  filter: drop-shadow(0 0 4px rgba(201, 169, 110, 0.5));
}

.card-1 {
  top: 25%;
  left: 5%;
  animation: float3d-1 6s ease-in-out infinite;
  transform: rotateY(15deg) rotateX(-5deg);
}

.card-2 {
  top: 20%;
  right: 5%;
  animation: float3d-2 7s ease-in-out infinite;
  transform: rotateY(-15deg) rotateX(5deg);
}

.card-3 {
  bottom: 25%;
  right: 8%;
  animation: float3d-3 5s ease-in-out infinite;
  transform: rotateY(-10deg) rotateX(-8deg);
}

@keyframes float3d-1 {
  0%, 100% { transform: rotateY(15deg) rotateX(-5deg) translateY(0) translateZ(0); }
  50% { transform: rotateY(18deg) rotateX(-8deg) translateY(-20px) translateZ(30px); }
}

@keyframes float3d-2 {
  0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0) translateZ(0); }
  50% { transform: rotateY(-18deg) rotateX(8deg) translateY(-15px) translateZ(25px); }
}

@keyframes float3d-3 {
  0%, 100% { transform: rotateY(-10deg) rotateX(-8deg) translateY(0) translateZ(0); }
  50% { transform: rotateY(-12deg) rotateX(-12deg) translateY(-25px) translateZ(20px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-purple-bright), var(--primary), transparent);
}

.section-divider i {
  color: var(--primary);
  font-size: 0.9rem;
  filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.4));
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-gray);
  font-size: 1rem;
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  perspective: var(--perspective);
}

.about-card-3d {
  perspective: 800px;
  cursor: pointer;
}

.about-card-inner {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--border-radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.about-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.about-card-3d:hover .about-card-inner {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-card), 0 0 30px rgba(155, 89, 182, 0.08);
  transform: translateZ(20px);
}

.about-card-3d:hover .about-card-inner::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--neon-purple), var(--primary), var(--neon-purple), transparent);
}

.about-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.about-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.about-card-3d:hover .about-icon {
  background: var(--primary);
  transform: translateZ(30px) scale(1.1);
}

.about-card-3d:hover .about-icon i {
  color: var(--bg-dark);
}

.about-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.about-card-inner p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--border-radius);
  padding: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICES
   ============================================ */

.services-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-section), var(--bg-dark));
}

.services-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  perspective: var(--perspective);
}

.service-item-3d {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-item-3d:hover {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-10px) translateZ(15px);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--primary);
}

.service-item-3d:hover .service-icon {
  background: var(--primary);
  transform: translateZ(20px) rotateY(10deg);
}

.service-item-3d:hover .service-icon i {
  color: var(--bg-dark);
}

.service-item-3d h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-item-3d p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* ============================================
   MENU
   ============================================ */

.menu-section {
  background: var(--bg-dark);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.menu-filter {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-filter:hover {
  border-color: rgba(201, 169, 110, 0.3);
  color: var(--primary);
}

.menu-filter.active {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  font-weight: 600;
}

.menu-filter i {
  font-size: 0.8rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  perspective: var(--perspective);
}

.menu-card-3d {
  perspective: 800px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-card-3d.hidden {
  display: none;
}

.menu-card-3d.fade-out {
  opacity: 0;
  transform: scale(0.8) rotateX(10deg);
}

.menu-card-3d.fade-in {
  animation: cardFadeIn 0.5s ease forwards;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.8) translateY(30px) rotateX(-10deg); }
  to { opacity: 1; transform: scale(1) translateY(0) rotateX(0); }
}

.menu-card-inner {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  transition: var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.menu-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.menu-card-3d:hover .menu-card-inner {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-card), 0 0 25px rgba(155, 89, 182, 0.06);
  transform: translateZ(25px) translateY(-5px);
}

.menu-card-3d:hover .menu-card-inner::after {
  transform: scaleX(1);
}

.menu-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: 20px;
  transform: translateZ(30px);
}

.menu-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.menu-card-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}

.menu-card-3d:hover .menu-card-icon {
  background: rgba(201, 169, 110, 0.15);
  transform: translateZ(15px) scale(1.1);
}

.menu-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-white);
}

.menu-card-inner p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-card-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(201, 169, 110, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.menu-card-tags i {
  font-size: 0.65rem;
  color: var(--primary);
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
  padding: 80px 24px;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(201, 169, 110, 0.06)),
    radial-gradient(ellipse at right, rgba(155, 89, 182, 0.08), transparent 60%),
    radial-gradient(ellipse at left, rgba(201, 169, 110, 0.08), transparent 60%);
  border-top: 1px solid rgba(155, 89, 182, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), var(--primary), var(--neon-purple), transparent);
  opacity: 0.5;
}

.promo-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: var(--primary);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 30px;
  margin-bottom: 20px;
}

.promo-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.promo-content p {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-section {
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  perspective: var(--perspective);
  margin-bottom: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  transform-style: preserve-3d;
}

.gi-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-placeholder i {
  font-size: 2rem;
  color: rgba(201, 169, 110, 0.3);
}

.gallery-placeholder span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateZ(20px) scale(1.02);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.gallery-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.gallery-note i {
  color: var(--primary);
  margin-right: 6px;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-section {
  background: var(--bg-dark);
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--border-radius);
}

.rating-big {
  text-align: center;
}

.rating-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  margin-bottom: 8px;
}

.rating-stars i {
  color: #FFD700;
  font-size: 1.1rem;
  margin: 0 2px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rating-bars {
  flex: 1;
  max-width: 350px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.rating-bar-item span {
  font-size: 0.85rem;
  color: var(--text-gray);
  width: 16px;
  text-align: center;
}

.bar {
  flex: 1;
  height: 8px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 4px;
  transition: width 1s ease;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  perspective: var(--perspective);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: var(--transition);
  transform-style: preserve-3d;
}

.review-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  box-shadow: var(--shadow-card);
  transform: translateZ(15px) translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.review-info {
  flex: 1;
  min-width: 0;
}

.review-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-badge i {
  color: var(--primary);
  margin-right: 4px;
}

.review-stars {
  flex-shrink: 0;
}

.review-stars i {
  color: #FFD700;
  font-size: 0.85rem;
  margin: 0 1px;
}

.review-stars .far {
  color: var(--text-muted);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-date i {
  color: var(--primary);
  margin-right: 6px;
}

.reviews-cta {
  text-align: center;
}

/* ============================================
   HOURS
   ============================================ */

.hours-section {
  background: var(--bg-section);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hours-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 28px;
}

.hours-info h2 span {
  color: var(--primary);
}

.hours-table {
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  transition: var(--transition-fast);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  background: rgba(201, 169, 110, 0.04);
}

.hours-row.highlight {
  background: rgba(201, 169, 110, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 110, 0.12);
}

.hours-row .day {
  font-weight: 500;
  color: var(--text-white);
}

.hours-row .time {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.hours-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hours-note i {
  color: var(--primary);
  margin-right: 6px;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--border-radius);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  transform-style: preserve-3d;
}

.cta-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: var(--shadow-gold);
  transform: translateZ(15px);
}

.cta-card > i {
  font-size: 3rem;
  color: var(--whatsapp);
  margin-bottom: 20px;
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.cta-phone {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-phone i {
  color: var(--primary);
  margin-right: 6px;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-section {
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: var(--transition);
  transform-style: preserve-3d;
}

.contact-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateZ(10px) translateY(-3px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.contact-card-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 14px;
  line-height: 1.6;
}

.location-card {
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  animation: location-float 5.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.location-card > * {
  position: relative;
  z-index: 2;
}

.location-card:nth-child(2n) {
  animation-delay: 0.6s;
}

.location-card:nth-child(3n) {
  animation-delay: 1.1s;
}

.location-photo {
  width: 100%;
  height: 165px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  flex-shrink: 0;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-card.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--loc-image);
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.03);
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 0;
}

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.82) 10%, rgba(10, 10, 10, 0.58) 55%, rgba(10, 10, 10, 0.80) 100%);
  z-index: 1;
}

.location-card.has-image:hover::before {
  opacity: 0.48;
  transform: scale(1.06);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link:hover {
  text-decoration: underline;
}

@keyframes location-float {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 169, 110, 0); }
  50% { box-shadow: 0 12px 24px rgba(201, 169, 110, 0.08); }
}

.map-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.map-overlay-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 10px 20px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.map-overlay-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.3));
  transition: var(--transition);
}

.footer-logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.5)) drop-shadow(0 0 40px rgba(155, 89, 182, 0.25));
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.footer-contact .btn {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

/* Neon accent lines between sections */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.15), rgba(201, 169, 110, 0.2), rgba(155, 89, 182, 0.15), transparent);
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: var(--transition);
    border-left: 1px solid rgba(201, 169, 110, 0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 14px 16px;
    width: 100%;
    border-radius: var(--border-radius-sm);
  }

  .nav-link:hover {
    background: rgba(201, 169, 110, 0.06);
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 12px;
  }

  .nav-social-links {
    width: 100%;
    justify-content: center;
    margin: 8px 0 2px;
    padding-left: 0;
    border-left: none;
  }

  .floating-card {
    display: none;
  }

  .hero-logo-img {
    width: clamp(220px, 70vw, 350px);
  }

  .neon-watermark {
    display: none;
  }

  .nav-logo-img {
    height: 38px;
  }

  .hero-info {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gi-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gi-wide {
    grid-column: span 2;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 70px 0;
  }

  .reviews-rating-summary {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .menu-filters {
    gap: 6px;
  }

  .menu-filter {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .gi-large,
  .gi-wide {
    grid-column: span 1;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
