/* ============================================
   SUNDAY'S CHENNAI — Premium CSS
   Pantone Color Palette
   ============================================ */

@font-face {
  font-family: 'Adelon';
  src: url('../fonts/fonnts.com-Adelon-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Adelon';
  src: url('../fonts/fonnts.com-Adelon-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Adelon';
  src: url('../fonts/fonnts.com-Adelon-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* --- CSS Variables / Design Tokens --- */
:root {
  --yellow: #FCEEA8;
  --sea-blue: #2E8B84;
  --beige: #C4A882;
  --ice-melt: #C8DCE8;
  --buttercream: #EDE0C8;
  --silence: #EAE5DC;
  --estate-blue: #1B2A4A;
  --forest-green: #4A7A3A;
  --quiet-tide: #A8CBDA;
  --brown: #5C2E1A;

  --primary: var(--estate-blue);
  --secondary: var(--sea-blue);
  --accent: var(--yellow);
  --highlight: var(--forest-green);
  --light-bg: var(--silence);
  --dark-bg: #0D1825;
  --warm-bg: var(--buttercream);
  --text-dark: #0D1825;
  --text-light: #F5F0E8;
  --text-muted: #7A7267;

  --font-heading: 'Cinzel Decorative', 'Playfair Display', serif;
  --font-serif: 'Cinzel', serif;
  --font-sans: 'IBM Plex Sans', 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 8px 40px rgba(13, 24, 37, 0.12);
  --shadow-glow: 0 0 60px rgba(46, 139, 132, 0.25);
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--silence);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

li,
span,
label,
input,
select,
textarea,
td,
th {
  font-family: var(--font-sans);
}

p {
  font-family: 'Adelon', sans-serif !important;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--estate-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--sea-blue);
  border-radius: 3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sea-blue);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--estate-blue);
  line-height: 1.15;
}

.section-title.light {
  color: var(--buttercream);
}

.divider-leaf {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sea-blue), var(--forest-green));
  display: inline-block;
  border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-sunday {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: 'Adelon', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-sunday::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-sunday:hover::before {
  transform: translateX(0);
}

.btn-sunday-primary {
  background: var(--sea-blue);
  color: white;
  box-shadow: 0 6px 30px rgba(46, 139, 132, 0.4);
}

.btn-sunday-primary:hover {
  background: var(--estate-blue);
  color: var(--yellow);
  box-shadow: 0 10px 40px rgba(27, 42, 74, 0.5);
  transform: translateY(-2px);
}

.btn-sunday-outline {
  background: transparent;
  color: var(--buttercream);
  border: 1.5px solid rgba(237, 224, 200, 0.5);
}

.btn-sunday-outline:hover {
  background: var(--buttercream);
  color: var(--estate-blue);
  border-color: var(--buttercream);
  transform: translateY(-2px);
}

.btn-sunday-gold {
  background: linear-gradient(135deg, var(--yellow), #e8c85a);
  color: var(--estate-blue);
  font-weight: 500;
  box-shadow: 0 6px 30px rgba(252, 238, 168, 0.4);
}

.btn-sunday-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(252, 238, 168, 0.6);
}

/* ============================================
   TOPBAR — Ultra Premium
   ============================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(75, 20, 45, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.4rem 0;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar i {
  font-size: 0.72rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.topbar a:hover {
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(252, 238, 168, 0.4);
}

.topbar .topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.8rem;
}

/* Push navbar below topbar */
#mainNav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  top: 0;
  padding: 0.6rem 0;
  background: rgba(7, 14, 25, 0.85);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05);
  border-bottom: none;
}

/* When scrolled, hide topbar */
.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

#mainNav .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1;
  background: linear-gradient(to right, #ffffff, #ede0c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#mainNav .navbar-brand span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-sans);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--yellow), #c4a882);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  margin-top: 4px;
}

.neon-logo {
  animation: neon-glow-pulse 2s ease-in-out infinite alternate;
  will-change: filter;
}

@keyframes neon-glow-pulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(252, 238, 168, 0.4)) drop-shadow(0 0 4px rgba(252, 238, 168, 0.2));
  }

  100% {
    filter: drop-shadow(0 0 6px rgba(252, 238, 168, 0.8)) drop-shadow(0 0 12px rgba(252, 238, 168, 0.6)) drop-shadow(0 0 20px rgba(252, 238, 168, 0.4));
  }
}

#mainNav .nav-link {
  font-family: 'Adelon', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 1.2rem;
  margin: 0 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#mainNav .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 238, 168, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

#mainNav .nav-link:hover {
  color: var(--yellow);
  border-color: rgba(252, 238, 168, 0.4);
  box-shadow: 0 4px 15px rgba(252, 238, 168, 0.15), inset 0 0 10px rgba(252, 238, 168, 0.1);
}

#mainNav .nav-link:hover::before {
  opacity: 1;
}

#mainNav .btn-nav-reserve {
  background: rgba(255, 255, 255, 0.05);
  color: var(--yellow);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: 1px solid rgba(252, 238, 168, 0.3);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.8rem;
  backdrop-filter: blur(10px);
}

#mainNav .btn-nav-reserve:hover {
  background: var(--yellow);
  color: var(--estate-blue);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 238, 168, 0.25);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Keep mobile drawer menu above floating widgets */
.offcanvas {
  z-index: 11050 !important;
}

.offcanvas-backdrop {
  z-index: 11040 !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banner.webp') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 30, 30, 0.85) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(46, 139, 132, 0.2) 100%);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
}

#hero .hero-eyebrow {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

#hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

#hero .hero-title .highlight {
  color: var(--yellow);
}

#hero .hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

#hero .hero-actions {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

#hero .hero-info {
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease 2s both;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.4;
  }
}

/* Floating badges */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #4caf7d;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(76, 175, 125, 0);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-aos] {
  will-change: transform, opacity;
}

/* ============================================
   SECTION WRAPPING
   ============================================ */
section {
  overflow: hidden;
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-sm {
  padding: 4rem 0;
}

/* ============================================
   FAN IMAGE GALLERY — Scroll-Driven Open/Close
   ============================================ */
.fan-gallery-section {
  padding: 5rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.fan-gallery-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  perspective: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.fan-item {
  flex-shrink: 0;
  will-change: transform, opacity;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.8s ease,
    margin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fan-figure {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.4s ease;
}

.fan-figure:hover {
  box-shadow: 0 24px 70px rgba(46, 139, 132, 0.3), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fan-figure img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* --- CLOSED STATE (default — all stacked in center) --- */
.fan-pos-center .fan-figure {
  width: 280px;
  height: 380px;
}

.fan-pos-left .fan-figure,
.fan-pos-right .fan-figure {
  width: 240px;
  height: 240px;
}

.fan-pos-far-left .fan-figure,
.fan-pos-far-right .fan-figure {
  width: 220px;
  height: 220px;
}

.fan-pos-center {
  z-index: 5;
}

.fan-pos-left {
  z-index: 4;
}

.fan-pos-right {
  z-index: 4;
}

.fan-pos-far-left {
  z-index: 3;
}

.fan-pos-far-right {
  z-index: 3;
}

.fan-pos-center {
  opacity: 1;
  transform: scale(0.92);
}

.fan-pos-left {
  opacity: 0;
  transform: translateX(120px) rotate(0deg) scale(0.85);
  margin-right: -100px;
}

.fan-pos-right {
  opacity: 0;
  transform: translateX(-120px) rotate(0deg) scale(0.85);
  margin-left: -100px;
}

.fan-pos-far-left {
  opacity: 0;
  transform: translateX(200px) rotate(0deg) scale(0.78);
  margin-right: -160px;
}

.fan-pos-far-right {
  opacity: 0;
  transform: translateX(-200px) rotate(0deg) scale(0.78);
  margin-left: -160px;
}

/* --- OPEN STATE (on scroll) --- */
.fan-open .fan-pos-center {
  transform: translateY(0) rotate(0deg) scale(1);
}

.fan-open .fan-pos-left {
  opacity: 0.92;
  transform: translateX(0) rotate(-2deg) scale(0.97);
  margin-right: 0;
}

.fan-open .fan-pos-right {
  opacity: 0.92;
  transform: translateX(0) rotate(2deg) scale(0.97);
  margin-left: 0;
}

.fan-open .fan-pos-far-left {
  opacity: 0.6;
  transform: translateX(0) translateY(18px) rotate(-4deg);
  margin-right: 0;
}

.fan-open .fan-pos-far-right {
  opacity: 0.6;
  transform: translateX(0) translateY(18px) rotate(4deg);
  margin-left: 0;
}

/* Stagger the open animation */
.fan-open .fan-pos-center {
  transition-delay: 0s;
}

.fan-open .fan-pos-left {
  transition-delay: 0.08s;
}

.fan-open .fan-pos-right {
  transition-delay: 0.08s;
}

.fan-open .fan-pos-far-left {
  transition-delay: 0.16s;
}

.fan-open .fan-pos-far-right {
  transition-delay: 0.16s;
}

/* Add gap when open */
.fan-open .fan-gallery-track,
.fan-gallery-track {
  transition: gap 0.8s ease;
}

.fan-open .fan-gallery-track {
  gap: 1.2rem;
}

@media (max-width: 991.98px) {
  .fan-gallery-track {
    gap: 0.8rem;
  }

  .fan-pos-center .fan-figure {
    width: 200px;
    height: 280px;
  }

  .fan-pos-left .fan-figure,
  .fan-pos-right .fan-figure {
    width: 170px;
    height: 170px;
  }

  .fan-pos-far-left .fan-figure,
  .fan-pos-far-right .fan-figure {
    width: 140px;
    height: 140px;
  }

  .fan-gallery-section {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 575.98px) {
  .fan-gallery-track {
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }

  .fan-pos-center .fan-figure {
    width: 140px;
    height: 200px;
  }

  .fan-pos-left .fan-figure,
  .fan-pos-right .fan-figure {
    width: 100px;
    height: 100px;
  }

  .fan-pos-far-left,
  .fan-pos-far-right {
    display: none;
  }

  .fan-gallery-section {
    padding: 2rem 0 1.5rem;
  }
}

/* ============================================
   IMAGE MARQUEE (Dual-row, Slow, Opposite)
   ============================================ */
.marquee-section {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused !important;
}

/* Row 1: moves left (default) — very slow */
.marquee-ltr {
  animation: marqueeScrollLTR 60s linear infinite;
}

/* Row 2: moves right (opposite) — very slow */
.marquee-rtl {
  animation: marqueeScrollRTL 65s linear infinite;
}

@keyframes marqueeScrollLTR {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: translateX(0);
  }
}

.marquee-track img {
  height: 200px;
  width: 300px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marquee-track img:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: linear-gradient(180deg, #f0ebe3 0%, #e8e2d8 100%);
  position: relative;
}

#about::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 18rem;
  color: var(--buttercream);
  opacity: 0.6;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-img-wrapper img,
.about-img-wrapper video {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

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

.about-img-accent {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--estate-blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}

.about-img-accent .big-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.about-img-accent small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* About Tabs */
.about-tabs .nav-tabs {
  border: none;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.about-tabs .nav-tabs .nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  background: transparent;
  transition: var(--transition);
}

.about-tabs .nav-tabs .nav-link:hover {
  color: var(--sea-blue);
  border-color: var(--sea-blue);
}

.about-tabs .nav-tabs .nav-link.active {
  background: var(--estate-blue);
  color: var(--yellow);
  border-color: var(--estate-blue);
}

.about-tabs .tab-content {
  padding-top: 2rem;
}

.about-tabs .tab-pane p {
  font-size: 1rem;
  line-height: 1.85;
  color: #4a4640;
  font-family: var(--font-sans);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--estate-blue);
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
  display: block;
  font-family: var(--font-sans);
}

/* ============================================
   MENU SECTION
   ============================================ */
#menu {
  background: linear-gradient(135deg, #0a1420 0%, #0f2038 50%, #0a1a2e 100%);
  position: relative;
}

#menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sea-blue), var(--forest-green), var(--sea-blue));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

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

  100% {
    background-position: 200% 50%;
  }
}

.menu-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.menu-card:hover {
  border-color: rgba(46, 139, 132, 0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.menu-card .menu-img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1.8rem;
}

.menu-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea-blue);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--buttercream);
  margin-bottom: 0.75rem;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  font-family: var(--font-sans);
}

/* ============================================
   RESERVATIONS SECTION
   ============================================ */
#reservations {
  background: var(--warm-bg);
  position: relative;
}

.reservation-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.reservation-left {
  background: var(--estate-blue);
  padding: 3rem 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.reservation-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: var(--sea-blue);
  border-radius: 50%;
  opacity: 0.15;
}

.seating-slot {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.slot-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.slot-info h6 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.2rem;
}

.slot-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

.reservation-right {
  padding: 3rem 2.5rem;
}

/* Form Styles */
.form-label-custom {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}

.form-control-custom {
  border: 1.5px solid #e0d8cc;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #faf8f5;
  width: 100%;
}

.form-control-custom:focus {
  border-color: var(--sea-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 139, 132, 0.12);
  background: white;
}

.policy-badge {
  background: var(--silence);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.policy-badge .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
  background: var(--silence);
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  cursor: pointer;
}

.gallery-item-1 {
  grid-column: 1 / 7;
  grid-row: 1;
}

.gallery-item-2 {
  grid-column: 7 / 13;
  grid-row: 1;
}

.gallery-item-3 {
  grid-column: 1 / 5;
  grid-row: 2;
}

.gallery-item-4 {
  grid-column: 5 / 9;
  grid-row: 2;
}

.gallery-item-5 {
  grid-column: 9 / 13;
  grid-row: 2;
}

.gallery-item-6 {
  grid-column: 1 / 5;
  grid-row: 3;
}

.gallery-item-7 {
  grid-column: 5 / 9;
  grid-row: 3;
}

.gallery-item-8 {
  grid-column: 9 / 13;
  grid-row: 3;
}

.gallery-item-9 {
  grid-column: 1 / 5;
  grid-row: 4;
}

.gallery-item-10 {
  grid-column: 5 / 9;
  grid-row: 4;
}

.gallery-item-11 {
  grid-column: 9 / 13;
  grid-row: 4;
}

.gallery-item-12 {
  grid-column: 1 / 7;
  grid-row: 5;
}

.gallery-item-13 {
  grid-column: 7 / 13;
  grid-row: 5;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-item-1 img,
.gallery-item-2 img,
.gallery-item-12 img,
.gallery-item-13 img {
  height: 400px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.6), rgba(46, 139, 132, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-overlay-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--estate-blue);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

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

/* ============================================
   AWARDS SECTION
   ============================================ */
#awards {
  background: var(--estate-blue);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#awards::before {
  content: '★';
  position: absolute;
  font-size: 20rem;
  color: rgba(252, 238, 168, 0.04);
  top: -5rem;
  left: -3rem;
  pointer-events: none;
}

.award-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.award-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(252, 238, 168, 0.3);
  transform: translateY(-6px);
}

.award-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8c85a, var(--yellow));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 24px rgba(252, 238, 168, 0.3);
}

.award-card h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--buttercream);
  margin-bottom: 0.4rem;
}

.award-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}

/* Press */
.press-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
  color: white;
  display: block;
}

.press-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(46, 139, 132, 0.4);
  color: white;
  transform: translateY(-4px);
}

.press-source {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea-blue);
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.press-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   BAR TAKEOVERS SECTION
   ============================================ */
#bar-takeovers {
  background: var(--silence);
}

.takeover-feature {
  background: linear-gradient(135deg, var(--estate-blue) 0%, #0f2038 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.takeover-bg-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.03);
  right: -2rem;
  bottom: -2rem;
  line-height: 1;
  pointer-events: none;
}

.takeover-content {
  padding: 4rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   SIGNATURE EXPERIENCE / WHY SUNDAYS
   ============================================ */
.why-sundays-section {
  background: linear-gradient(135deg, #0D1825 0%, var(--estate-blue) 50%, #0D1825 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why-sundays-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 139, 132, 0.12), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sea-blue), var(--yellow));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 139, 132, 0.3);
  transform: translateY(-8px);
}

.why-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  background: rgba(46, 139, 132, 0.15);
  border: 1px solid rgba(46, 139, 132, 0.25);
}

.why-card h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--buttercream);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-family: var(--font-sans);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--sea-blue), var(--estate-blue));
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 238, 168, 0.15), transparent 70%);
  left: -100px;
  bottom: -100px;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: white;
}

.cta-banner p {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0.75rem auto 1.5rem;
  font-size: 0.95rem;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
#location {
  background: var(--warm-bg);
}

.location-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  padding: 2.5rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #f0ebe3;
}

.info-row:last-child {
  border: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--silence);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--sea-blue);
}

.info-row h6 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
}

.info-row p,
.info-row a {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin: 0;
  text-decoration: none;
  font-family: var(--font-sans);
}

.info-row a:hover {
  color: var(--sea-blue);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--dark-bg);
  position: relative;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  border-color: rgba(46, 139, 132, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
}

.contact-icon-teal {
  background: rgba(46, 139, 132, 0.2);
  color: var(--sea-blue);
}

.contact-icon-yellow {
  background: rgba(252, 238, 168, 0.15);
  color: var(--yellow);
}

.contact-icon-green {
  background: rgba(74, 122, 58, 0.2);
  color: #6db85c;
}

.contact-icon-brown {
  background: rgba(92, 46, 26, 0.2);
  color: #c4785a;
}

.contact-card h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--buttercream);
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-size: 0.92rem;
  display: block;
  transition: color 0.2s;
  font-family: var(--font-sans);
}

.contact-card a:hover {
  color: var(--yellow);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #070e19;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 400;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-family: var(--font-sans);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-sans);
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--sea-blue);
  border-color: var(--sea-blue);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-sans);
}

/* ============================================
   NAVARASA SPECIAL
   ============================================ */
.navarasa-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(252, 238, 168, 0.12), transparent 48%),
    radial-gradient(circle at 86% 78%, rgba(46, 139, 132, 0.14), transparent 55%),
    linear-gradient(135deg, #07101E 0%, #0D1825 50%, #1B2A4A 100%);
  border-radius: var(--radius-xl);
  padding: 3.4rem 2.6rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.navarasa-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 45%);
  opacity: 0.35;
  pointer-events: none;
}


.emotion-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 181, 83, 0.15), rgba(212, 181, 83, 0.05));
  border: 1px solid rgba(212, 181, 83, 0.3);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4b553;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: var(--font-sans);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.emotion-chip:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, rgba(212, 181, 83, 0.3), rgba(212, 181, 83, 0.1));
  border-color: rgba(212, 181, 83, 0.6);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(212, 181, 83, 0.25), inset 0 0 10px rgba(212, 181, 83, 0.1);
}

.navarasa-eyebrow {
  color: #d4b553 !important;
}

.navarasa-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: white;
  line-height: 1.08;
}

.navarasa-title-gold {
  color: #d4b553;
}

.navarasa-description {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  font-size: 0.98rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.navarasa-emotions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  width: 100%;
}

.navarasa-cta {
  letter-spacing: 0.1em;
}

.navarasa-copy {
  padding-right: 1rem;
}

.navarasa-left {
  padding-right: 1.1rem;
}

.navarasa-right {
  display: flex;
  align-items: center;
}

.navarasa-divider {
  width: 64px;
  height: 2px;
  border-radius: 2px;
}

/* ============================================
   OPERATING HOURS BADGE
   ============================================ */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(74, 122, 58, 0.15);
  border: 1px solid rgba(74, 122, 58, 0.35);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: #6db85c;
  font-weight: 500;
  font-family: var(--font-sans);
}

/* ============================================
   LIGHTBOX (above navbar / offcanvas / floats)
   ============================================ */
#lightboxModal {
  z-index: 12050 !important;
}

#lightboxModal .modal-dialog {
  z-index: 12051;
}

body:has(#lightboxModal.show) > .modal-backdrop {
  z-index: 12045 !important;
  background: rgba(5, 10, 20, 0.88) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-modal .modal-dialog {
  max-width: min(96vw, 1120px);
  width: 100%;
  margin: 1.25rem auto;
}

.lightbox-modal .modal-content {
  background:
    radial-gradient(circle at 20% 0%, rgba(252, 238, 168, 0.1), transparent 42%),
    radial-gradient(circle at 80% 100%, rgba(46, 139, 132, 0.12), transparent 48%),
    linear-gradient(160deg, rgba(20, 30, 51, 0.97), rgba(8, 14, 26, 0.99));
  border: 1px solid rgba(252, 238, 168, 0.14);
  border-radius: var(--radius-xl);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.lightbox-modal .modal-body {
  padding: 0.85rem;
}

.lightbox-modal .lightbox-img-wrap {
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  background: #05080f;
  line-height: 0;
}

.lightbox-modal .lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 1;
  transition: background 0.25s ease, transform 0.2s ease;
}

.lightbox-modal .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  transform: scale(1.05);
}

.lightbox-modal .lightbox-img-wrap img {
  width: 100%;
  max-height: min(85vh, 820px);
  object-fit: contain;
  display: block;
  vertical-align: middle;
}

/* ============================================
   MENU FLIPBOOK
   ============================================ */
#menuModal {
  z-index: 12000;
}

.menu-modal-dialog {
  z-index: 12001;
  max-width: min(95vw, 1400px);
  margin: 0.75rem auto;
  max-height: calc(100dvh - 1.5rem);
}

.menu-modal-content {
  background: radial-gradient(circle at 20% 0%, rgba(252, 238, 168, 0.18), transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(46, 139, 132, 0.18), transparent 45%),
    rgba(5, 10, 20, 0.92);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  max-height: calc(100dvh - 1.5rem);
}

.menu-modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 0.65rem 0.75rem;
  justify-content: flex-end;
  pointer-events: none;
}

.menu-modal-close {
  pointer-events: auto;
  filter: invert(1) grayscale(100%) brightness(200%);
  width: 2.25rem;
  height: 2.25rem;
  background-size: 1.35rem;
  opacity: 1;
  margin: 0;
}

.menu-modal-body {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-height: calc(100dvh - 1.5rem);
}

.menu-flipbook-shell {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 3.5rem 3.75rem;
  box-sizing: border-box;
}

.menu-flipbook-hint {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  right: 3.5rem;
  z-index: 30;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-flipbook-title {
  font-family: var(--font-heading);
  color: var(--buttercream);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  line-height: 1.25;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.menu-flipbook-subtitle {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flipbook-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.flipbook-nav:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.05);
  background: rgba(46, 139, 132, 0.25);
  border-color: rgba(46, 139, 132, 0.5);
}

.flipbook-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.flipbook-prev {
  left: 0.65rem;
}

.flipbook-next {
  right: 0.65rem;
}

#flipbook {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y pinch-zoom;
  max-width: 100%;
}

#flipbook .turn-page {
  background: #f8f3e6;
}

#flipbook img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f8f3e6;
}

.menu-flipbook-footer {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  pointer-events: none;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  white-space: nowrap;
}

html.menu-modal-open,
html.menu-modal-open body {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .menu-modal-dialog {
    max-width: 100%;
    width: 100%;
    margin: 0;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .menu-modal-content {
    border-radius: 0;
    border: 0;
    min-height: 100dvh;
    max-height: 100dvh;
    background: rgba(5, 10, 20, 0.97);
  }

  .menu-modal-body {
    max-height: 100dvh;
    align-items: stretch;
  }

  .menu-flipbook-shell {
    flex: 1;
    justify-content: flex-start;
    padding: 3.5rem 0.35rem calc(3.25rem + env(safe-area-inset-bottom, 0px));
    padding-top: calc(3.25rem + env(safe-area-inset-top, 0px));
  }

  .menu-flipbook-hint {
    position: static;
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 0 2.75rem 0.65rem;
    flex-shrink: 0;
  }

  .menu-flipbook-title {
    font-size: 1rem;
  }

  .menu-flipbook-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  #flipbook {
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }

  .flipbook-nav {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .flipbook-prev {
    left: 0.2rem;
  }

  .flipbook-next {
    right: 0.2rem;
  }

  .menu-flipbook-footer {
    bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    font-size: 0.76rem;
  }

  .menu-modal-header {
    padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
    padding-right: calc(0.5rem + env(safe-area-inset-right, 0px));
  }
}

/* ============================================
   SITE FORMS (contact + reservation)
   ============================================ */
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.45;
}

.form-feedback--success {
  background: rgba(77, 168, 85, 0.12);
  border: 1px solid rgba(77, 168, 85, 0.4);
  color: #9ee0a5;
}

.form-feedback--error {
  background: rgba(220, 45, 35, 0.18);
  border: 1px solid #ff4d3d;
  color: #ff6b5e;
  font-weight: 600;
}

.reservation-right .form-feedback--error {
  color: #d62828;
  background: rgba(214, 40, 40, 0.1);
  border-color: #e63946;
}

.form-control-custom.is-invalid,
select.form-control-custom.is-invalid,
textarea.form-control-custom.is-invalid {
  border-color: #ff3b30 !important;
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.35) !important;
}

.reservation-right .form-control-custom.is-invalid {
  border-color: #e63946 !important;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.28) !important;
}

.field-error-msg {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  color: #ff5a4d;
  font-weight: 600;
  line-height: 1.35;
}

.reservation-right .field-error-msg {
  color: #d62828;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-yellow {
  color: var(--yellow) !important;
}

.text-sea-blue {
  color: var(--sea-blue) !important;
}

.text-beige {
  color: var(--beige) !important;
}

.text-buttercream {
  color: var(--buttercream) !important;
}

.bg-estate {
  background-color: var(--estate-blue) !important;
}

.bg-silence {
  background-color: var(--silence) !important;
}

.bg-warm {
  background-color: var(--warm-bg) !important;
}

.rounded-custom {
  border-radius: var(--radius-lg) !important;
}

.rounded-xl {
  border-radius: var(--radius-xl) !important;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-brand {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.loader-brand span {
  color: var(--yellow);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--sea-blue), var(--yellow));
  border-radius: 2px;
  animation: loadProgress 1.6s ease forwards;
}

@keyframes loadProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .about-img-accent {
    right: 0;
    bottom: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .gallery-item-2 {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .gallery-item-3 {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .gallery-item-4 {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .gallery-item-5 {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-item-6 {
    grid-column: 1 / 2;
    grid-row: 4;
  }

  .gallery-item-7 {
    grid-column: 2 / 3;
    grid-row: 4;
  }

  .gallery-item-8 {
    grid-column: 1 / 3;
    grid-row: 5;
  }

  .gallery-item-9 {
    grid-column: 1 / 2;
    grid-row: 6;
  }

  .gallery-item-10 {
    grid-column: 2 / 3;
    grid-row: 6;
  }

  .gallery-item-11 {
    grid-column: 1 / 3;
    grid-row: 7;
  }

  .gallery-item-12 {
    grid-column: 1 / 2;
    grid-row: 8;
  }

  .gallery-item-13 {
    grid-column: 2 / 3;
    grid-row: 8;
  }

  .gallery-item img,
  .gallery-item-1 img,
  .gallery-item-2 img,
  .gallery-item-12 img,
  .gallery-item-13 img {
    height: 250px !important;
  }

  .reservation-left,
  .reservation-right {
    padding: 2rem 1.5rem;
  }

  .takeover-content {
    padding: 2.5rem 2rem;
  }

  .navarasa-section {
    padding: 2.5rem 2rem;
  }

  .navarasa-left {
    padding-right: 0;
  }

  .navarasa-description {
    max-width: 100%;
  }

  .navarasa-emotions {
    max-width: 520px;
  }

  .navarasa-right {
    margin-top: 1.2rem;
    align-items: flex-start;
  }

  .marquee-track img {
    height: 160px;
    width: 240px;
  }

  #mainNav {
    top: 0;
  }

  .topbar {
    display: none !important;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .contact-card {
    padding: 1.8rem 1.2rem;
  }

  .award-card {
    padding: 2rem 1.5rem;
  }

  .menu-card .menu-img {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .section-title {
    font-size: 1.6rem !important;
  }

  .section-pad {
    padding: 3rem 0;
  }

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

  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5,
  .gallery-item-6,
  .gallery-item-7,
  .gallery-item-8,
  .gallery-item-9,
  .gallery-item-10,
  .gallery-item-11,
  .gallery-item-12,
  .gallery-item-13 {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-item img,
  .gallery-item-1 img,
  .gallery-item-2 img,
  .gallery-item-12 img,
  .gallery-item-13 img {
    height: 220px !important;
  }

  .about-img-accent {
    position: static;
    margin-top: 1rem;
  }

  .about-img-wrapper img {
    height: 280px;
  }

  .marquee-track img {
    height: 120px;
    width: 180px;
  }

  .marquee-section {
    padding: 1.2rem 0;
  }

  .menu-card .menu-img {
    height: 200px;
  }

  .menu-card-body {
    padding: 1.4rem;
  }

  .menu-card-title {
    font-size: 1.3rem !important;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-card h5 {
    font-size: 0.95rem;
  }

  .contact-card p {
    font-size: 0.75rem;
  }

  .contact-card a {
    font-size: 0.8rem;
  }

  .award-card {
    padding: 1.5rem 1rem;
  }

  .award-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    border-radius: 16px;
    margin-bottom: 0.8rem;
  }

  .award-card h5 {
    font-size: 0.95rem;
  }

  .award-card p {
    font-size: 0.72rem;
  }

  .reservation-left,
  .reservation-right {
    padding: 1.5rem 1.2rem;
  }

  .navarasa-section {
    padding: 2rem 1.5rem;
  }

  .navarasa-emotions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
  }

  .navarasa-right {
    margin-top: 1rem;
    align-items: flex-start;
  }

  .takeover-content {
    padding: 2rem 1.2rem;
  }

  .takeover-feature img {
    height: 250px !important;
  }

  .location-info {
    padding: 1.5rem;
  }

  .map-embed {
    height: 250px;
  }

  .footer-brand {
    font-size: 1.4rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .btn-sunday {
    padding: 0.7rem 1.5rem;
    font-size: 0.78rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.premium-footer {
  background: radial-gradient(circle at 50% 100%, #152336 0%, #060b14 100%);
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 238, 168, 0.3), transparent);
}

.premium-footer .footer-brand {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, #ffffff, #ede0c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.premium-footer .footer-brand span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--yellow), #c4a882);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
}

.premium-footer .footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 90%;
}

.premium-footer .social-links {
  display: flex;
  gap: 1rem;
}

.premium-footer .social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.premium-footer .social-link:hover {
  background: var(--yellow);
  color: #000 !important;
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(252, 238, 168, 0.25);
}

.premium-footer .footer-heading {
  font-family: var(--font-sans);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.premium-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-footer .footer-links li {
  margin-bottom: 1rem;
}

.premium-footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.premium-footer .footer-links a::before {
  content: '→';
  color: var(--yellow);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-right: 0;
  display: inline-block;
  width: 0;
  overflow: hidden;
}

.premium-footer .footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
  margin-right: 8px;
  width: auto;
}

.premium-footer .footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.premium-footer .footer-bottom {
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@media (max-width: 991.98px) {
  .premium-footer {
    padding: 4rem 0 0;
  }

  .premium-footer .footer-bottom {
    margin-top: 3rem;
  }
}

      .press-card-new:hover {
                    transform: translateY(-8px);
                    border-color: rgba(255,255,255,0.2) !important;
                    background: rgba(255,255,255,0.06) !important;
                    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
                }

                .award-card-new {
                    background: radial-gradient(circle at 50% 0%, #1a2a47 0%, #0d1627 100%);
                    border: 1px solid rgba(212, 181, 83, 0.4);
                    border-radius: 12px;
                    padding: 3rem 1.5rem;
                    text-align: center;
                    height: 100%;
                    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
                    position: relative;
                    z-index: 1;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
                }

                .award-card-new::before {
                    content: '';
                    position: absolute;
                    inset: 6px;
                    border: 1px solid rgba(212, 181, 83, 0.15);
                    border-radius: 6px;
                    z-index: -1;
                    pointer-events: none;
                }

                .award-card-new::after {
                    content: '';
                    position: absolute;
                    top: 0; left: 50%; transform: translateX(-50%);
                    width: 70%; height: 100%;
                    background: radial-gradient(ellipse at top, rgba(212, 181, 83, 0.15) 0%, transparent 60%);
                    z-index: -1;
                    pointer-events: none;
                }

                .award-card-new:hover {
                    transform: translateY(-12px);
                    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212, 181, 83, 0.2);
                    border-color: rgba(212, 181, 83, 0.6);
                }

                .award-icon-new {
                    width: 90px;
                    height: 90px;
                    margin: 0 auto 2rem;
                    background: linear-gradient(135deg, rgba(212, 181, 83, 0.2), transparent);
                    border: 2px solid #d4b553;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 2.5rem;
                    box-shadow: 0 0 20px rgba(212, 181, 83, 0.3), inset 0 0 15px rgba(212, 181, 83, 0.2);
                    position: relative;
                    transition: all 0.5s ease;
                }

                .award-icon-new::after {
                    content: '';
                    position: absolute;
                    inset: -8px;
                    border: 1px dashed rgba(212, 181, 83, 0.6);
                    border-radius: 50%;
                    animation: spin 20s linear infinite;
                }

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

                .award-card-new:hover .award-icon-new {
                    transform: scale(1.1);
                    background: rgba(212, 181, 83, 0.3);
                    box-shadow: 0 0 30px rgba(212, 181, 83, 0.5), inset 0 0 20px rgba(212, 181, 83, 0.4);
                }

                .award-badge {
                    position: absolute;
                    top: -14px;
                    left: 50%;
                    transform: translateX(-50%);
                    background: linear-gradient(90deg, #d4b553, #fdf1a9, #d4b553);
                    color: #0d1627;
                    font-size: 0.75rem;
                    font-weight: 800;
                    letter-spacing: 0.2em;
                    padding: 0.5rem 1.5rem;
                    text-transform: uppercase;
                    border-radius: 30px;
                    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
                    z-index: 2;
                }

                .award-card-new h5 {
                    color: #d4b553;
                    font-family: var(--font-serif);
                    margin-bottom: 1rem;
                    font-size: 1.4rem;
                    line-height: 1.3;
                    letter-spacing: 0.05em;
                }

                .award-card-new p {
                    color: rgba(255, 255, 255, 0.85);
                    font-size: 0.85rem;
                    font-family: var(--font-sans);
                    line-height: 1.6;
                    margin: 0;
                    text-transform: uppercase;
                    letter-spacing: 0.1em;
                }

/* ============================================
   NAVARASA VIDEO GALLERY (NVG)
   ============================================ */
.navarasa-video-section {
  padding: 2rem 0 2rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.navarasa-video-section video {
  content-visibility: auto;
}

.nvg-intro {
  color: rgba(20, 30, 51, 0.62);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ── Featured Card (left col-lg-7) ── */
.nvg-feature {
  border-radius: 26px;
  background: linear-gradient(145deg, #13223c 0%, #1b2d4f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(10, 18, 34, 0.35);
  overflow: hidden;
}

.nvg-feature-media {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.nvg-feature-media video {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
  display: block;
}

.nvg-feature-content {
  padding: 1.4rem 1.4rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.nvg-feature-content h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  margin-bottom: 0.5rem;
}

.nvg-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.nvg-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Mini 2×2 Grid (right col-lg-5) ── */
.nvg-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.nvg-mini {
  border-radius: 18px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 30, 51, 0.1);
  box-shadow: 0 10px 24px rgba(20, 30, 51, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nvg-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(20, 30, 51, 0.17);
}

.nvg-mini video {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #000;
  display: block;
}

.nvg-mini h6 {
  margin: 0.65rem 0 0.12rem;
  color: var(--estate-blue);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.nvg-mini p {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nvg-mini p a {
  color: #C13584;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s ease;
}

.nvg-mini p a:hover {
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .nvg-mini-grid {
    grid-template-columns: 1fr;
  }
}