*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #0d1b2a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #FF6B35;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(255,107,53,0.3);
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 50px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35, #FF8F65);
  color: #fff;
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.6);
}

.btn-secondary {
  background: transparent;
  color: #00C9B1;
  border-color: #00C9B1;
}

.btn-secondary:hover {
  background: rgba(0,201,177,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,201,177,0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

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

/* ===== FLOATING EMOJIS ===== */
.floating-emoji {
  position: fixed;
  font-size: 2rem;
  z-index: 1;
  pointer-events: none;
  animation: floatEmoji 6s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  25% { transform: translateY(-30px) rotate(10deg); opacity: 0.5; }
  50% { transform: translateY(-15px) rotate(-5deg); opacity: 0.4; }
  75% { transform: translateY(-40px) rotate(8deg); opacity: 0.5; }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,53,0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13,27,42,0.97);
  box-shadow: 0 2px 30px rgba(255,107,53,0.15);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Righteous', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FF6B35;
  letter-spacing: 2px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  border-radius: 50%;
  border: 2px solid #FF6B35;
}

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

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #FF6B35, #FF8F65);
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.hero-gradient-anim {
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #0d1b2a, #1a3a5c, #FF6B35, #00C9B1, #0d1b2a);
  background-size: 400% 400%;
  animation: heroGradient 8s ease infinite;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  animation: heroFadeIn 1.5s ease forwards;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  text-shadow: 0 0 20px rgba(255,107,53,0.5), 0 0 40px rgba(255,107,53,0.3), 0 0 80px rgba(255,107,53,0.2);
  margin-bottom: 12px;
  animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { text-shadow: 0 0 20px rgba(255,107,53,0.5), 0 0 40px rgba(255,107,53,0.3); }
  50% { text-shadow: 0 0 30px rgba(255,107,53,0.8), 0 0 60px rgba(255,107,53,0.5), 0 0 100px rgba(255,107,53,0.3); }
  100% { text-shadow: 0 0 20px rgba(0,201,177,0.5), 0 0 40px rgba(0,201,177,0.3); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  min-height: 1.6em;
}

.hero-subtitle::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-tagline {
  font-family: 'Righteous', cursive;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #00C9B1;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(0,201,177,0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HERO PARTICLES ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: #FF6B35;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0.6;
}

@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-100px) scale(1.5); opacity: 0.3; }
  100% { transform: translateY(-200px) scale(0); opacity: 0; }
}

/* ===== HERO WAVES ===== */
.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-waves svg {
  width: 100%;
  height: 150px;
}

.wave {
  animation: waveAnim 6s ease-in-out infinite alternate;
}

.wave-1 {
  fill: rgba(13,27,42,0.8);
  animation-duration: 6s;
}

.wave-2 {
  fill: rgba(13,27,42,0.5);
  animation-duration: 8s;
  animation-delay: -2s;
}

.wave-3 {
  fill: rgba(13,27,42,0.3);
  animation-duration: 10s;
  animation-delay: -4s;
}

@keyframes waveAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-30px); }
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

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

.wave-divider-top {
  margin-bottom: -1px;
}

.wave-divider-bottom {
  margin-top: -1px;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  overflow: hidden;
}

.about-sunset-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,56,100,0.05), rgba(0,201,177,0.08));
  animation: sunsetPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sunsetPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

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

.about-video {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,107,53,0.2);
}

.about-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #00C9B1 !important;
  font-style: italic;
  text-shadow: 0 0 20px rgba(0,201,177,0.3);
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,107,53,0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255,107,53,0.1);
  border-color: #FF6B35;
  box-shadow: 0 15px 40px rgba(255,107,53,0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stat-number {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: #FF6B35;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== MENU ===== */
.menu {
  background: linear-gradient(180deg, #111f30, #0d1b2a);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 12px 28px;
  font-family: 'Righteous', cursive;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.menu-tab:hover {
  color: #fff;
  border-color: rgba(255,107,53,0.4);
  background: rgba(255,107,53,0.1);
}

.menu-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #FF6B35, #FF8F65);
  border-color: #FF6B35;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.menu-subcategory {
  margin-bottom: 36px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.menu-subcategory::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/burger.jpg') center/cover fixed;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.menu-subcategory:hover {
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}

.menu-subcategory-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #FF6B35;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,107,53,0.2);
  position: relative;
  z-index: 1;
}

.menu-items {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: rgba(255,107,53,0.08);
  padding-left: 20px;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
  padding-right: 12px;
}

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

.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  max-width: 600px;
}

.menu-item-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00C9B1;
  white-space: nowrap;
  background: rgba(0,201,177,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

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

/* ===== GALLERY ===== */
.gallery {
  background: #0d1b2a;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.gallery-item[data-size="large"] {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item[data-size="medium"] {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item[data-size="small"] {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: var(--g-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-inner {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.8), rgba(255,107,53,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,107,53,0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
  line-height: 1;
}

.lightbox-close:hover {
  color: #FF6B35;
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,53,0.3);
}

/* ===== RESERVATION ===== */
.reservation {
  position: relative;
  overflow: hidden;
}

.reservation-sunset {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b2a, #1a3a5c, #FF6B35, #FF3844, #8B2FC9);
  background-size: 300% 300%;
  animation: sunsetAnim 10s ease infinite;
  opacity: 0.15;
  pointer-events: none;
}

@keyframes sunsetAnim {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.reservation-cta {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 50px 30px;
  background: rgba(255,107,53,0.05);
  border: 2px solid rgba(255,107,53,0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.reservation-phone-icon {
  color: #FF6B35;
  margin-bottom: 16px;
}

.reservation-phone {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.reservation-phone a {
  color: #FF6B35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.reservation-phone a:hover {
  color: #FF8F65;
}

.reservation-info {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
  background: #0d1b2a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  color: #FF6B35;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,53,0.1);
  border-radius: 50%;
}

.contact-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF6B35;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.contact-item a:hover {
  color: #00C9B1;
}

.contact-note {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.5) !important;
  font-style: italic;
  margin-top: 2px;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
  filter: invert(0.9) hue-rotate(180deg);
  border: 2px solid rgba(255,107,53,0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0d1b2a, #1a0a2e, #2d1b4e);
  border-top: 1px solid rgba(255,107,53,0.1);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF6B35, #FF3844, #8B2FC9, transparent);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Righteous', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FF6B35;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: 50%;
  border: 2px solid #FF6B35;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== FOOTER STATUS ===== */
.footer-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.open {
  background: #00C9B1;
  box-shadow: 0 0 10px rgba(0,201,177,0.6);
  animation: pulseDot 2s infinite;
}

.status-dot.closed {
  background: #FF3844;
  box-shadow: 0 0 10px rgba(255,56,68,0.6);
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 5px rgba(0,201,177,0.4); }
  50% { box-shadow: 0 0 15px rgba(0,201,177,0.8); }
  100% { box-shadow: 0 0 5px rgba(0,201,177,0.4); }
}

.status-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,107,53,0.1);
  color: #FF6B35;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: linear-gradient(135deg, #FF6B35, #FF3844);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #fff;
  color: #0d1b2a;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

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

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  right: 72px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item[data-size="large"],
  .gallery-item[data-size="medium"] {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(255,107,53,0.15);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .section {
    padding: 70px 0;
  }

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

  .gallery-item[data-size="large"],
  .gallery-item[data-size="medium"] {
    grid-column: span 1;
    grid-row: span 1;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

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

  .hero-waves svg {
    height: 80px;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    grid-auto-rows: 120px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .menu-item {
    flex-direction: column;
    gap: 2px;
  }

  .menu-item-price {
    align-self: flex-end;
  }

  .floating-emoji {
    display: none;
  }
}