/* ==========================================================================
   MARINA TUNA DAVAO - MODERN SINGLE-PAGE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-dark: #061121;
  --primary-navy: #0A1B36;
  --primary-blue: #112D57;
  --ocean-accent: #0088CC;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #F4E3AC;
  --accent-gold-hover: #C29D26;
  --accent-gold-glow: rgba(212, 175, 55, 0.3);

  --bg-main: #0B1629;
  --bg-card: #12223D;
  --bg-card-hover: #192D4F;
  --bg-light: #F8FAFC;
  --surface-white: #FFFFFF;

  --text-dark: #0F172A;
  --text-muted-dark: #64748B;
  --text-white: #FFFFFF;
  --text-gold: #F3E0A0;
  --text-muted: #94A3B8;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.3);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
  border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--accent-gold);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B89320 100%);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #F4E3AC 0%, var(--accent-gold) 100%);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.825rem;
  white-space: nowrap;
}

/* Top Announcement Bar */
.top-bar {
  background: var(--primary-dark);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar-item svg {
  color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.top-bar-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-bar-item a:hover {
  color: var(--accent-gold);
}

/* Fixed Combined Header Container (Top Bar + Navigation Bar) */
.header-sticky-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.75);
  background: rgba(6, 17, 33, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body {
  padding-top: 112px;
}

.navbar {
  position: relative;
  background: rgba(6, 17, 33, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-normal);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-normal);
  border-radius: 2px;
}

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

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

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.75) 0%, rgba(11, 22, 41, 0.92) 100%),
              url('images/Header.png') center/cover no-repeat;
  padding: 5rem 0 6rem 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.hero-title .gold-accent {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: rgba(18, 34, 61, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Base Section Styling with Rich Ocean Background */
.section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #0D2245 0%, #061121 80%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-dark {
  background: radial-gradient(circle at 20% 30%, #0A1B36 0%, #050E1B 100%);
}

.section-card-bg {
  background: radial-gradient(circle at 80% 70%, #0C1E3D 0%, #061121 100%);
}

/* Section Specific Food & Ambiance Background Image Overlays */
#about {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.90) 0%, rgba(6, 17, 33, 0.95) 100%),
              url('images/IMG_4438.JPG') center/cover no-repeat fixed;
}

#tenway {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.91) 0%, rgba(6, 17, 33, 0.96) 100%),
              url('images/TunaPanga.png') center/cover no-repeat fixed;
}

#menu {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.92) 0%, rgba(6, 17, 33, 0.96) 100%),
              url('images/Tunabelly.png') center/cover no-repeat fixed;
}

#gallery {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.88) 0%, rgba(6, 17, 33, 0.95) 100%),
              url('images/tuna_kinilaw.jpg') center/cover no-repeat fixed;
}

#reviews {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.90) 0%, rgba(6, 17, 33, 0.95) 100%),
              url('images/IMG_4438.JPG') center/cover no-repeat fixed;
}

#reserve {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.90) 0%, rgba(6, 17, 33, 0.96) 100%),
              url('images/sizzling_sisig.jpg') center/cover no-repeat fixed;
}

#contact {
  background: linear-gradient(180deg, rgba(6, 17, 33, 0.92) 0%, rgba(6, 17, 33, 0.97) 100%),
              url('images/Header.png') center/cover no-repeat fixed;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  margin: 1.5rem 0 2rem 0;
}

.highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-info h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.highlight-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.15);
  border: 2px solid var(--border-gold);
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
}

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

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(6, 17, 33, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent-gold);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.2;
}

/* 10-Way Tuna Showcase Section */
.tenway-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.tenway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.tenway-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.tenway-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

.tenway-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.tenway-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.tenway-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tenway-number {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.tenway-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.tenway-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.tenway-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.tenway-prep {
  font-size: 0.85rem;
  color: var(--text-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Digital Menu Category Selector & Scroll Arrows */
.menu-nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.menu-select-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 27, 54, 0.95);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  max-width: 480px;
  width: 100%;
}

.menu-select-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}

.menu-select {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  width: 100%;
  outline: none;
  cursor: pointer;
}

.menu-select option {
  background: #061121;
  color: #FFFFFF;
  padding: 8px;
}

.menu-tabs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.menu-scroll-btn {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.menu-scroll-btn:hover {
  transform: scale(1.1);
  background: #F4E3AC;
}

.menu-scroll-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-scroll-btn.left {
  margin-right: 0.5rem;
}

.menu-scroll-btn.right {
  margin-left: 0.5rem;
}

.menu-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 0.75rem 0.25rem;
  margin-bottom: 0;
  flex-grow: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.05);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.menu-controls::-webkit-scrollbar {
  height: 6px;
}

.menu-controls::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.menu-controls::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

.menu-tab {
  background: rgba(10, 27, 54, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B89320 100%);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

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

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-fast);
}

.menu-item-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
  background-color: rgba(212, 175, 55, 0.1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('images/TunaPanga.png');
}

.menu-item-details {
  flex-grow: 1;
}

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

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.menu-item-price {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--accent-gold);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 17, 33, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

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

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

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 10, 20, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonials / Social Proof */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-dark);
}

.author-details h5 {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 700;
}

.author-details span {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* Reservation Section */
.reservation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.reservation-info {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-light);
}

.res-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.res-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.res-info-text h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.res-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.reservation-form-container {
  padding: 3.5rem 3rem;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(6, 17, 33, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background: rgba(6, 17, 33, 0.9);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-alert.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #34D399;
}

.form-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #F87171;
}

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

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

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

.contact-detail-content h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail-content a:hover {
  color: var(--accent-gold);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

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

/* Footer */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating Action Bar for Mobile */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 17, 33, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1rem;
  z-index: 999;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
}

.mobile-bottom-btn svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

/* Official Meta Customer Chat Plugin Widget Style */
.fb-plugin-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fb-plugin-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0084FF 0%, #00C6FF 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 132, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  margin-left: auto;
}

.fb-plugin-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 132, 255, 0.6);
}

.fb-plugin-trigger svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

.fb-plugin-card {
  width: 350px;
  background: #FFFFFF;
  color: #050505;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding: 24px;
  margin-bottom: 14px;
  display: none;
  animation: fbPopUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fb-plugin-card.active {
  display: block;
}

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

.fb-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fb-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0084FF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 132, 255, 0.3);
}

.fb-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-card-dots {
  color: #65676B;
  font-size: 1.25rem;
  cursor: pointer;
  letter-spacing: 2px;
}

.fb-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #050505;
  margin-bottom: 2px;
  line-height: 1.2;
}

.fb-card-subtitle {
  font-size: 0.8rem;
  color: #65676B;
  margin-bottom: 14px;
}

.fb-card-greeting {
  font-size: 0.9rem;
  color: #050505;
  line-height: 1.45;
  margin-bottom: 20px;
}

.fb-btn-messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #0084FF 0%, #00C6FF 100%);
  color: #FFFFFF !important;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.fb-btn-messenger:hover {
  opacity: 0.92;
  color: #FFFFFF !important;
}

.fb-btn-messenger svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.fb-btn-guest {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: #E4E6EB;
  color: #050505 !important;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 16px;
}

.fb-btn-guest:hover {
  background: #D8DADF;
  color: #050505 !important;
}

.fb-card-disclaimer {
  font-size: 0.68rem;
  color: #8A8D91;
  text-align: center;
  line-height: 1.35;
}

.fb-card-disclaimer a {
  color: #65676B;
  font-weight: 600;
  text-decoration: underline;
}

/* In-Website Live Guest Chat View */
.fb-welcome-view {
  display: block;
}

.fb-welcome-view.hidden {
  display: none;
}

.fb-guest-chat-view {
  display: none;
  flex-direction: column;
  height: 340px;
}

.fb-guest-chat-view.active {
  display: flex;
}

.fb-chat-messages-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fb-chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.fb-chat-bubble.bot {
  background: #F0F2F5;
  color: #050505;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.fb-chat-bubble.user {
  background: #0084FF;
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.fb-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.fb-chip-btn {
  background: #E4E6EB;
  border: none;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #050505;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.fb-chip-btn:hover {
  background: #0084FF;
  color: #FFFFFF;
}

.fb-chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #E4E6EB;
  padding-top: 10px;
  margin-top: 6px;
}

.fb-chat-input {
  flex-grow: 1;
  border: 1px solid #CED0D4;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
}

.fb-chat-input:focus {
  border-color: #0084FF;
}

.fb-chat-send-btn {
  background: #0084FF;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-chat-send-btn svg {
  width: 16px;
  height: 16px;
  fill: #FFFFFF;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .nav-links {
    gap: 0.85rem;
  }

  .nav-links a {
    font-size: 0.825rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }
}

@media (max-width: 992px) {
  .about-grid,
  .reservation-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .reservation-info {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(6, 17, 33, 0.98);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-bottom: 1px solid var(--border-gold);
    gap: 1.25rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .form-group-grid {
    grid-template-columns: 1fr;
  }

  .reservation-form-container {
    padding: 2rem 1.5rem;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  .fb-chat-widget {
    bottom: 5.25rem;
    right: 1rem;
    padding: 0.75rem 1rem;
  }

  .fb-chat-sub {
    display: none;
  }

  body {
    padding-top: 118px;
    padding-bottom: 60px;
  }

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

/* Festival & Celebration Canvas & Overlay Banner */
.festival-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 2s ease;
}

.festival-banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 17, 33, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.4s ease;
}

.festival-banner-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.96) 0%, rgba(13, 20, 33, 0.98) 100%);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25), 0 0 30px rgba(255, 215, 0, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 580px;
  width: 100%;
  text-align: center;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.festival-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.festival-close-btn:hover {
  background: var(--accent-gold);
  color: #000;
  transform: rotate(90deg);
}

.festival-header-badge {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.festival-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #FFF 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.festival-desc {
  color: #E2E8F0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.festival-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Jollibee-Style Mega Dropdown Panel */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}

.nav-item-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 92vw;
  max-width: 920px;
  background: rgba(6, 17, 33, 0.98);
  border: 1.5px solid var(--border-gold);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-item-dropdown:hover .mega-menu-panel:not(.closed),
.mega-menu-panel.show:not(.closed) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.85rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.mega-menu-grid::-webkit-scrollbar {
  width: 6px;
}

.mega-menu-grid::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

.mega-menu-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.25s ease;
}

.mega-menu-card:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.mega-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.mega-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.mega-menu-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.mega-view-all-btn {
  padding: 0.65rem 2.2rem;
  font-weight: 700;
  border-radius: 30px;
}

/* Mobile Responsiveness for Jollibee-Style Mega Menu */
@media (max-width: 768px) {
  .mega-menu-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    width: 100vw;
    max-width: 100vw;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
    padding: 1.25rem 1rem;
    max-height: 80vh;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.95);
  }

  .nav-item-dropdown:hover .mega-menu-panel,
  .mega-menu-panel.show {
    transform: translateY(0);
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    max-height: 55vh;
  }

  .mega-menu-card {
    padding: 0.65rem 0.75rem;
    gap: 0.6rem;
  }

  .mega-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .mega-card-title {
    font-size: 0.78rem;
  }
}

/* Mobile Readability & Text Overflow Fixes */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .about-highlights {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .reservation-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0;
    width: 100% !important;
    box-sizing: border-box;
  }

  .reservation-info {
    padding: 1.75rem 1.25rem !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    width: 100% !important;
    box-sizing: border-box;
  }

  .reservation-form-container {
    padding: 1.75rem 1.15rem !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .res-info-item {
    gap: 0.85rem !important;
    margin-bottom: 1.25rem !important;
    width: 100% !important;
  }

  .res-info-text,
  .contact-detail-content {
    flex: 1 !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .res-info-text p,
  .res-info-text h4,
  .contact-detail-content p,
  .contact-detail-content h4 {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .contact-card-box {
    padding: 1.5rem 1.1rem !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .map-container,
  .map-container iframe {
    min-height: 350px !important;
    height: 350px !important;
    width: 100% !important;
    display: block !important;
  }

  .form-control {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    gap: 0.5rem !important;
    max-width: 75vw !important;
  }

  .brand-name {
    font-size: 0.95rem !important;
    white-space: normal !important;
  }

  .brand-tag {
    font-size: 0.58rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 180px !important;
    line-height: 1.15 !important;
  }
}
