@font-face {
  font-family: 'Compressa VF';
  src: url('https://res.cloudinary.com/dr6lvwubh/raw/upload/v1529908256/CompressaPRO-GX.woff2');
  font-style: normal;
}

:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --skyblue: #4a90d9;
  --lightblue: #b8d4f0;
  --white: #fff;
  --offwhite: #f4f8fd;
  --gold: #c9a84c;
  --text: #1a1a2e;
}

.text-pressure-title.flex {
  display: flex;
  justify-content: space-between;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  cursor: none;
}

/* ── LIQUID CHROME CANVAS (hero background) ── */
#liquid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── CUSTOM CURSOR ── */
#cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5c518;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .08s ease;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(245, 197, 24, .6);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s, background .2s;
}

#cursor-dot.hover {
  transform: translate(-50%, -50%) scale(0);
}

#cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: #f5c518;
  background: rgba(245, 197, 24, .1);
}

/* ── CANVAS PARTICLES ── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: auto;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s ease;
}

nav.scrolled {
  background: rgba(21, 23, 22, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 152px;
  height: 52px;
  border-radius: 4px;
  object-fit: contain;
}

.nav-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-social-link {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .3s;
}

.nav-social-link svg {
  width: 13px;
  height: 13px;
  fill: rgba(255, 255, 255, .7);
  stroke: rgba(255, 255, 255, .7);
}

.nav-social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.nav-social-link:hover svg {
  fill: var(--navy);
  stroke: var(--navy);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .3s;
}

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

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

.nav-book {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600;
}

.nav-book:hover {
  background: var(--white) !important;
}

.nav-book::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  display: block;
  transition: .3s;
}

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

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, .82) 0%, rgba(26, 58, 107, .55) 50%, rgba(10, 22, 40, .75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 1.2s ease .3s both;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 7px 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
  will-change: transform;
}

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

.hero-sub {
  font-size: .85rem;
  letter-spacing: 4px;
  color: var(--lightblue);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 40px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: .3s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .5s, height .5s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, .5);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: .3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── CURVED MARQUEE (below hero) ── */
.marquee-section {
  background: var(--navy);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.curved-marquee-svg {
  display: block;
  width: 100%;
  overflow: visible;
  user-select: none;
}

.curved-marquee-svg text {
  fill: var(--gold);
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
}

/* ── STATS ── */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lightblue);
  margin-top: 8px;
  display: block;
}

/* ── SHARED SECTION ── */
section {
  padding: 100px 5%;
  position: relative;
}

.section-tag {
  font-size: .65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
  will-change: transform;
}

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(var(--gold), var(--skyblue));
  margin-bottom: 32px;
}

.section-sub {
  color: #555;
  line-height: 1.8;
  max-width: 600px;
  font-size: .9rem;
}

/* ── ABOUT ── */
.about {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, .2);
  transition: transform .6s ease;
}

.about-img-main:hover {
  transform: scale(1.02);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
}

.about-img-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
}

.about-img-badge span {
  font-size: .6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, .15);
  transition: .3s;
}

.about-feat:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .04);
}

.feat-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg {
  fill: var(--gold);
  width: 18px;
  height: 18px;
}

.feat-text strong {
  display: block;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.feat-text span {
  font-size: .75rem;
  color: #777;
}

/* ── MENU FILTERS ── */
.menu-section {
  background: var(--white);
}

.menu-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 16px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid #d0dde8;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: none;
  transition: .3s;
  color: #666;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.type-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.veg-dot {
  background: #2d8b2d;
  border: 1.5px solid #2d8b2d;
}

.nonveg-dot {
  background: #c0392b;
  border: 1.5px solid #c0392b;
}

.menu-tabs {
  display: flex;
  gap: 0;
  margin: 0 0 40px;
  border-bottom: 1px solid #e0e8f4;
  overflow-x: auto;
}

.menu-tab {
  padding: 14px 28px;
  cursor: none;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: .3s;
}

.menu-tab.active {
  color: var(--navy);
  border-color: var(--gold);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.menu-item {
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #dde8f5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: all .2s;
  position: relative;
  z-index: 1;
}

.menu-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.scroll-stack-scroller {
  position: relative;
  width: 100%;
}

.scroll-stack-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.scroll-stack-card {
  position: relative;
  width: 100%;
  will-change: transform, filter;
  transform-origin: top center;
  backface-visibility: hidden;
  perspective: 1000px;
}

.scroll-stack-end {
  height: 50vh;
  width: 100%;
  pointer-events: none;
}


.item-info {
  display: flex;
  flex-direction: column;
}

.item-info strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-info p {
  font-size: .73rem;
  color: #888;
  margin-top: 4px;
  line-height: 1.5;
}

.item-price {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery {
  background: var(--navy);
  overflow: hidden;
}

.gallery .section-title {
  color: var(--white);
}

.circular-gallery {
  width: 100%;
  height: 80vh;
  margin-top: 50px;
  overflow: hidden;
  cursor: grab;
  position: relative;
}

.circular-gallery:active {
  cursor: grabbing;
}

.circular-gallery canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}

.gallery-item {
  overflow: hidden;
  cursor: none;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.tall img {
  height: 564px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  transition: .4s;
}

.gallery-item:hover::after {
  background: rgba(10, 22, 40, .2);
}

/* ── PROJECT-STYLE HOVER PREVIEW on gallery ── */
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(10, 22, 40, .85));
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: .4s;
  z-index: 2;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── BOOKING ── */
.booking {
  background: var(--offwhite);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
}

.booking-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.booking-info p {
  font-size: .85rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--gold);
  fill: none;
  width: 18px;
  height: 18px;
}

.contact-text strong {
  display: block;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-text span {
  font-size: .85rem;
  color: var(--navy);
}

.booking-form {
  background: var(--white);
  padding: 50px 44px;
  box-shadow: 0 10px 50px rgba(10, 22, 40, .1);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-sub {
  font-size: .78rem;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d0dff0;
  background: var(--offwhite);
  font-family: "Montserrat", sans-serif;
  font-size: .85rem;
  color: var(--navy);
  outline: none;
  transition: .3s;
  border-radius: 1px;
  cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--skyblue);
  background: var(--white);
}

.form-group textarea {
  height: 70px;
  resize: none;
}

.form-submit {
  width: 100%;
  padding: 17px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: .3s;
  font-weight: 600;
}

.form-submit:hover {
  background: var(--blue);
}

.success-msg {
  display: none;
  background: #eaf4e8;
  border: 1px solid #7bc67e;
  color: #2d6a2f;
  padding: 16px 20px;
  border-radius: 2px;
  font-size: .85rem;
  margin-top: 16px;
  text-align: center;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--navy);
  padding: 100px 5%;
}

.reviews-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 10px;
}

.reviews-sub {
  font-size: .75rem;
  letter-spacing: 3px;
  color: var(--lightblue);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.reviews-loading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--lightblue);
  font-size: .85rem;
  padding: 30px 0;
}

.loading-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(201, 168, 76, .25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

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

.reviews-error {
  background: rgba(255, 80, 80, .08);
  border: 1px solid rgba(255, 80, 80, .25);
  color: #ff9999;
  padding: 14px 20px;
  border-radius: 2px;
  font-size: .82rem;
  margin-bottom: 24px;
}

.reviews-error a {
  color: var(--gold);
}

/* Elfsight widget wrapper */
.elfsight-wrap {
  margin-bottom: 40px;
}

/* Scrolling marquee of cards */
.reviews-marquee-wrap {
  overflow: hidden;
  margin-bottom: 50px;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.reviews-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

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

.reviews-marquee .review-card {
  width: 310px;
  flex-shrink: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.no-reviews {
  color: rgba(255, 255, 255, .4);
  font-size: .9rem;
  font-style: italic;
  grid-column: 1/-1;
}

.review-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 168, 76, .2);
  padding: 26px 22px;
  transition: border-color .3s, background .3s, transform .3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: cardIn .5s ease forwards;
}

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

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: rgba(201, 168, 76, .07);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(201, 168, 76, .6);
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px);
}

.review-stars {
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.star {
  font-size: 1.05rem;
}

.star.filled {
  color: var(--gold);
}

.star.empty {
  color: rgba(201, 168, 76, .22);
}

.review-text {
  font-size: .84rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 12px;
  gap: 10px;
  flex-wrap: wrap;
}

.review-name {
  font-family: "Playfair Display", serif;
  font-size: .95rem;
  color: var(--gold);
}

.review-date {
  font-size: .66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.reviews-cta {
  text-align: center;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.reviews-cta p {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ── MAGNETIC TEXT (hero h1 hover effect in CSS) ── */
.magnetic-word {
  display: inline-block;
  transition: transform .15s ease;
}

/* ── FOOTER ── */
footer {
  background: #151716;
  padding: 60px 5% 30px;
  color: rgba(255, 255, 255, .6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand img {
  width: 220px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.footer-h {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .8rem;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: .3s;
  color: var(--gold);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 14px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .3s;
}

.social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, .6);
}

.social-link:hover svg {
  fill: var(--navy);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.3);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

  .about-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .menu-panel.active {
    grid-template-columns: 1fr;
  }

  .about-img-badge {
    right: 10px;
  }

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

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

  .gallery-item.tall img,
  .gallery-item img {
    height: 200px;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

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

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

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 30px 20px;
  }

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

  .nav-social {
    display: none;
  }
}

:root {
  --primary-color: #2563eb;
  /* Modern Blue */
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Floating Button */
#chatbot-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  font-size: 24px;
}

#chatbot-btn:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Chat Container */
#chatbot-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  max-height: 500px;
  background: var(--glass-bg);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#chatbot-box.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Header */
#chat-header {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Chat Body */
#chat-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Bubbles */
.msg {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
  animation: fadeIn 0.3s ease forwards;
}

.msg.bot {
  background: #f1f5f9;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.msg.user {
  background: var(--primary-color);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* Options/Buttons */
.options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chat-btn {
  background: white;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.chat-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Links inside chat */
.chat-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Custom Scrollbar */
#chat-body::-webkit-scrollbar {
  width: 5px;
}

#chat-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}