@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Theme Variables --- */
:root {
  --banner-offset: 45px;
  --bg-dark: #07090e;
  --bg-card: rgba(17, 23, 39, 0.65);
  --bg-card-hover: rgba(25, 34, 57, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #a3aed0;
  
  /* Neon Accents */
  --neon-cyan: #00f2fe;
  --neon-cyan-glow: rgba(0, 242, 254, 0.4);
  --neon-purple: #9d4edd;
  --neon-purple-glow: rgba(157, 78, 221, 0.4);
  --neon-pink: #ff007f;
  --neon-pink-glow: rgba(255, 0, 127, 0.4);
  
  --gold: #fbbf24;
  
  /* Font Families */
  --font-en: 'Outfit', sans-serif;
  --font-kr: 'Noto Sans KR', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-kr), var(--font-en);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-kr);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

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

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

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Background Gradients */
.glow-bg {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

.glow-cyan {
  top: 10%;
  left: -10%;
  background: var(--neon-cyan);
}

.glow-purple {
  bottom: 10%;
  right: -10%;
  background: var(--neon-purple);
}

/* --- Reusable Components --- */

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 
              0 0 15px rgba(0, 242, 254, 0.05);
  background: var(--bg-card-hover);
}

/* Section Title */
.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title span {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-family: var(--font-kr);
  gap: 0.6rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--neon-cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--neon-cyan-glow), 0 0 15px var(--neon-purple-glow);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.btn-phone {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #ffffff;
  box-shadow: 0 4px 20px var(--neon-pink-glow);
}

.btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--neon-pink-glow), 0 0 15px var(--neon-purple-glow);
}

/* Micro interaction - glowing text */
.glow-text-cyan {
  text-shadow: 0 0 8px var(--neon-cyan-glow);
}

.glow-text-pink {
  text-shadow: 0 0 8px var(--neon-pink-glow);
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: var(--banner-offset);
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

header.scrolled {
  height: 75px;
  background: rgba(7, 9, 14, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--neon-cyan);
}

.logo-text span {
  color: var(--neon-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

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

.nav-links a.active {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(130px + var(--banner-offset));
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0) 0%, var(--bg-dark) 90%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 0, 127, 0.08);
  border: 1px solid rgba(255, 0, 127, 0.2);
  color: var(--neon-pink);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--neon-pink);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple) 70%, var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 1px solid var(--border-color);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 10s ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.08);
}

.hero-banner-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-banner-tag p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-banner-tag span {
  color: var(--neon-cyan);
  font-weight: 700;
}

/* --- Intro Section --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.intro-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.8rem;
  border-radius: 16px;
  transition: var(--transition-normal);
}

.feature-item:hover {
  border-color: rgba(157, 78, 221, 0.3);
  background: rgba(25, 34, 57, 0.5);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(157, 78, 221, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-purple);
  margin-bottom: 1.2rem;
}

.feature-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  cursor: pointer;
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 9, 14, 0.95) 10%, rgba(7, 9, 14, 0.4) 50%, transparent 100%);
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(7, 9, 14, 0.98) 20%, rgba(7, 9, 14, 0.6) 60%, transparent 100%);
}

.gallery-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 0.8rem;
}

.gallery-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.gallery-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Custom Grid Spans for Gallery (Pinterest/Mosaic Style) */
.gallery-vip {
  grid-column: span 8;
  height: 380px;
}
.gallery-standard {
  grid-column: span 4;
  height: 380px;
}
.gallery-lobby {
  grid-column: span 4;
  height: 380px;
}
.gallery-food {
  grid-column: span 8;
  height: 380px;
}

/* --- Pricing Section --- */
.price-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.popular {
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-cyan);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.price-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.price-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.price-header .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-amount-wrap {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.price-val {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-card.popular .price-val {
  color: var(--neon-cyan);
}

.price-unit {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.price-features svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.price-features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.price-features li.disabled svg {
  color: var(--text-muted);
}

.price-card .btn {
  width: 100%;
}

.price-info-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
}

.price-info-note span {
  color: var(--neon-cyan);
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-main);
  position: relative;
}

.review-text::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: -20px;
  left: -10px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.95rem;
}

.user-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.user-info p {
  font-size: 0.85rem;
}

/* --- Map & Directions Section --- */
.map-direction-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 450px;
  position: relative;
  background: #111827;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(17, 24, 39, 0.5) 0%, rgba(7, 9, 14, 0.95) 100%);
}

.map-placeholder-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.map-placeholder h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  max-width: 320px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.direction-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.direction-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.direction-steps {
  list-style: none;
  margin-bottom: 2rem;
}

.direction-step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-en);
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.step-info p {
  font-size: 0.95rem;
}

/* --- Contact & Reservation Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

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

.contact-header h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-header p {
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  transition: var(--transition-fast);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 0, 127, 0.3);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.icon-phone {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  box-shadow: 0 4px 15px var(--neon-pink-glow);
}

.icon-kakao {
  background: #fef01b;
  color: #3c1e1e;
  box-shadow: 0 4px 15px rgba(254, 240, 27, 0.3);
}

.contact-details h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-details p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-en);
}

.contact-item a {
  display: block;
}

.reservation-form-wrap h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-family: var(--font-kr);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
}

.reservation-form .btn {
  margin-top: 1rem;
  width: 100%;
}

/* --- Long-tail Keyword Section --- */
.seo-longtail-section {
  padding: 4rem 0;
  background: #04060a;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.seo-longtail-section h4 {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.seo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.seo-tag {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  transition: var(--transition-fast);
  cursor: default;
}

.seo-tag:hover {
  color: var(--neon-cyan);
}

/* --- Footer --- */
footer {
  background: #020305;
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.footer-brand .logo-wrap {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav h4,
.footer-business h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--neon-cyan);
}

.business-details {
  list-style: none;
}

.business-details li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
}

.business-details span {
  color: var(--text-main);
  font-weight: 500;
}

.placeholder-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--neon-pink);
  border: 1px solid rgba(255, 0, 127, 0.3);
  background: rgba(255, 0, 127, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-seller-call {
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  max-width: 450px;
}

.footer-seller-call h5 {
  font-size: 0.9rem;
  color: var(--neon-cyan);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.footer-seller-call p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-seller-call a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* --- Animations --- */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
  }
  70% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 0 10px rgba(255, 0, 127, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
  }
}

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

/* --- Mobile / Responsive Design --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-badge {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .price-container {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 3rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .map-direction-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .map-container {
    height: 350px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    position: fixed;
    top: calc(90px + var(--banner-offset));
    left: 0;
    width: 100%;
    height: calc(100vh - 90px - var(--banner-offset));
    background: #07090e;
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 105;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-cta {
    display: none; /* Embedded inside mobile links or simplified */
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Menu icon animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    gap: 1rem;
  }
  
  .gallery-vip,
  .gallery-standard,
  .gallery-lobby,
  .gallery-food {
    grid-column: span 12;
    height: 280px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
}

/* --- Sale Top Banner --- */
.sale-top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-offset);
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple) 50%, #4300a3);
  background-size: 200% auto;
  animation: bannerMove 5s linear infinite;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.25);
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.sale-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

.sale-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sale-badge {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.sale-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sale-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sale-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sale-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.4);
}

.sale-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
  padding: 0 0.5rem;
}

.sale-close:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .sale-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  :root {
    --banner-offset: 52px;
  }
  
  .sale-banner-container {
    padding: 0 1rem;
  }
  
  .sale-left {
    gap: 0.5rem;
  }
  
  .sale-text {
    font-size: 0.75rem;
  }
  
  .sale-badge {
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
  }
  
  .sale-btn {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 580px) {
  :root {
    --banner-offset: 80px;
  }
  
  .sale-banner-container {
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    position: relative;
  }
  
  .sale-right {
    width: 100%;
    justify-content: center;
  }
  
  .sale-btn {
    width: auto;
    flex-grow: 0;
  }
  
  .sale-close {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
  }
}
