/* ════════════════════════════════════════════════════════
   THANGARAJ CATERING — Premium Catering Website
   Complete Redesigned Styles
   ════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --c-bg:           #ffffff;
  --c-bg-elevated:  #fafafa;
  --c-bg-card:      #fdfbf7;
  --c-bg-hover:     #f4f4f4;
  --c-gold:         #d4af37;
  --c-gold-light:   #e8cc6e;
  --c-gold-dim:     rgba(212, 175, 55, 0.15);
  --c-gold-glow:    rgba(212, 175, 55, 0.25);
  --c-saffron:      #f9a826;
  --c-red:          #c0392b;
  --c-red-light:    #e74c3c;
  --c-text:         #2d2b2a;
  --c-text-muted:   #66615b;
  --c-text-dim:     #8a8580;
  --c-border:       rgba(212, 175, 55, 0.3);
  --c-border-light: rgba(0, 0, 0, 0.06);
  --c-whatsapp:     #25d366;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Poppins', 'Segoe UI', system-ui, sans-serif;
  --ff-tamil:   'Noto Sans Tamil', 'Poppins', system-ui, sans-serif;

  --fs-display:  clamp(3.2rem, 8vw, 8rem);
  --fs-h1:       clamp(2.4rem, 5.5vw, 5rem);
  --fs-h2:       clamp(1.8rem, 3.5vw, 3.2rem);
  --fs-h3:       clamp(1.2rem, 2vw, 1.6rem);
  --fs-body:     clamp(0.95rem, 1.1vw, 1.1rem);
  --fs-small:    clamp(0.8rem, 0.9vw, 0.9rem);
  --fs-label:    clamp(0.7rem, 0.8vw, 0.8rem);

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    6rem;
  --space-2xl:   10rem;

  /* Layout */
  --container-max: 1280px;
  --gutter:        clamp(1.5rem, 4vw, 4rem);

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast:      0.3s;
  --dur-normal:    0.6s;
  --dur-slow:      1s;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

em {
  font-style: italic;
  color: var(--c-gold);
}

strong {
  font-weight: var(--fw-semibold);
  color: var(--c-gold-light);
}

::selection {
  background: var(--c-gold);
  color: var(--c-bg);
}


/* ─── Utility ─── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--c-gold);
}


/* ════════════════════════════════════════════════════════
   1. TOP HEADER BAR
   ════════════════════════════════════════════════════════ */
.top-bar {
  background: linear-gradient(135deg, var(--c-red) 0%, #8b1a1a 100%);
  padding: 0.55rem var(--gutter);
  text-align: center;
  position: relative;
  z-index: 200;
}

.top-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  transition: opacity var(--dur-fast) ease;
}

.top-bar__phone:hover {
  opacity: 0.85;
}

.top-bar__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar__phone strong {
  color: #fff;
  font-weight: var(--fw-bold);
}


/* ════════════════════════════════════════════════════════
   2. MAIN NAVIGATION BAR
   ════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--c-bg); /* Solid white by default */
  padding: 0.6rem var(--gutter);
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
  border-bottom: 1px solid var(--c-border-light);
  transition: all var(--dur-fast) ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* Home Page specific transparent header before scroll */
.home-page .site-header:not(.scrolled) {
  position: absolute;
  top: auto;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.home-page .site-header:not(.scrolled) .nav__links > li > a {
  color: #ffffff;
}

.home-page .site-header:not(.scrolled) .nav__logo-text {
  color: #ffffff;
}


.home-page .site-header:not(.scrolled) .nav__dropdown-trigger {
  color: #ffffff;
}

.home-page .site-header.scrolled {
  position: fixed;
  top: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.nav__logo-image {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  color: var(--c-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav__links > li > a {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  color: var(--c-text-muted);
  transition: color var(--dur-fast) ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav__links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--dur-fast) var(--ease-out-expo);
}

.nav__links > li > a:hover {
  color: var(--c-gold);
}

.nav__links > li > a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__dropdown-arrow {
  transition: transform var(--dur-fast) ease;
}

.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease, visibility var(--dur-fast);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 50;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  transition: all var(--dur-fast) ease;
  white-space: nowrap;
}

.nav__dropdown-menu li a:hover {
  color: var(--c-gold);
  background: var(--c-gold-dim);
}

/* Brochure Button */
.nav__brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--c-bg);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  transition: all var(--dur-fast) ease;
  flex-shrink: 0;
}

.nav__brochure-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--c-gold-glow);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 200;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__hamburger.active span {
  background: #ffffff;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-normal) var(--ease-out-expo),
              visibility var(--dur-normal);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__links a {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #ffffff;
  transition: color var(--dur-fast) ease;
}

.mobile-menu__links a:hover {
  color: var(--c-gold);
}

.mobile-menu__cta {
  font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
  font-family: var(--ff-body) !important;
  color: var(--c-gold) !important;
  border: 1px solid var(--c-gold);
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  margin-top: 0.5rem;
}


/* ════════════════════════════════════════════════════════
   3. HERO CAROUSEL
   ════════════════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-carousel__slide.active {
  opacity: 1;
  z-index: 1;
}

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

.hero-carousel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.8) 80%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-carousel__content {
  position: absolute;
  bottom: 12%;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  max-width: 800px;
}

.hero-carousel__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-carousel__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #ffffff;
  max-width: 600px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Carousel Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  transition: all var(--dur-fast) ease;
  cursor: pointer;
}

.hero-carousel__dot.active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  transform: scale(1.2);
}


/* ════════════════════════════════════════════════════════
   4. POPUP MODAL
   ════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) ease, visibility var(--dur-fast);
  padding: var(--gutter);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #ffffff;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.5s var(--ease-out-expo) forwards;
  padding: 24px 24px 28px;
  box-sizing: border-box;
}

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

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: all var(--dur-fast) ease;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.modal__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

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

.modal__text {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.modal__heading {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.2;
}

.modal__subheading {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  color: #d4af37;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.modal__paragraph {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.8;
  font-weight: 400;
}

/* Premium Desktop Modal Adjustments */
@media (min-width: 768px) {
  .modal {
    max-width: 720px;
    padding: 32px;
  }
  .modal__content {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .modal__image {
    width: 45%;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .modal__text {
    width: 55%;
    padding: 0;
  }
  .modal__close {
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    color: #1f2937;
    backdrop-filter: none;
  }
  .modal__close:hover {
    background: #e5e7eb;
    color: #111827;
  }
}


/* ════════════════════════════════════════════════════════
   5. ABOUT US SECTION
   ════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-xl) var(--gutter) var(--space-md);
  overflow: hidden;
}

.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.about__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--c-gold);
  margin-bottom: var(--space-md);
}

.about__para {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  max-width: 540px;
  line-height: 1.8;
}

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

.about__img-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}

.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about__img-wrap:hover img {
  transform: scale(1.06);
}

/* Statistics */
.stats {
  max-width: var(--container-max);
  margin: var(--space-xl) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
}

.stats__decorative {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  opacity: 0.5;
}

.stats__grid {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--space-lg) var(--space-md);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}

.stats__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 120px;
}

.stats__icon {
  width: 40px;
  height: 40px;
  color: var(--c-gold);
  margin-bottom: 0.3rem;
}

.stats__icon svg {
  width: 100%;
  height: 100%;
}

.stats__number {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  line-height: 1;
}

.stats__plus {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
}

.stats__label {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  letter-spacing: 0.03em;
}


/* ════════════════════════════════════════════════════════
   6. OUR MENU SECTION
   ════════════════════════════════════════════════════════ */
.menu-section {
  padding: var(--space-lg) var(--gutter);
  background: var(--c-bg-elevated);
}

.menu-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.menu-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.menu-section__subheading {
  color: var(--c-text-muted);
  line-height: 1.7;
}

.menu-section__cards {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.menu-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.menu-card__body {
  padding: 1.5rem;
}

.menu-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: 0.6rem;
}

.menu-card__desc {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.menu-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-gold);
  margin-top: 1.2rem;
  transition: gap var(--dur-fast) ease;
}

.menu-card:hover .menu-card__action {
  gap: 0.6rem;
}


/* ════════════════════════════════════════════════════════
   7. OUR SERVICES SECTION
   ════════════════════════════════════════════════════════ */
.services-section {
  padding: var(--space-lg) var(--gutter);
}

.services-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.services-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.services-section__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.service-card__image {
  position: absolute;
  inset: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.service-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: #fff;
}

.service-card__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  transition: all var(--dur-fast) ease;
  white-space: nowrap;
}

.service-card__link:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}


/* ════════════════════════════════════════════════════════
   8. GALLERY SECTION
   ════════════════════════════════════════════════════════ */
.gallery-section {
  padding: var(--space-2xl) var(--gutter);
  background: var(--c-bg-elevated);
}

.gallery-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.gallery-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.gallery-section__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}

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

.gallery-item__overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-fast) ease, visibility var(--dur-fast);
  padding: var(--space-md);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--dur-fast) ease;
  line-height: 1;
}

.lightbox__close:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}


/* ════════════════════════════════════════════════════════
   9. CALL-TO-ACTION SECTION
   ════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--space-2xl) var(--gutter);
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(10,10,10,1) 50%, rgba(192,57,43,0.08) 100%);
  text-align: center;
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--space-sm);
}

.cta-section__subheading {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.cta-section__text {
  font-size: var(--fs-body);
  color: var(--c-text-muted);
  margin-bottom: var(--space-lg);
}

.cta-section__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-bold);
  color: var(--c-bg);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  padding: 1rem 2.5rem;
  border-radius: 100px;
  transition: all var(--dur-fast) ease;
  box-shadow: 0 4px 20px var(--c-gold-glow);
}

.cta-section__phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--c-gold-glow);
}


/* ════════════════════════════════════════════════════════
   10. WHY CHOOSE US SECTION
   ════════════════════════════════════════════════════════ */
.why-section {
  padding: var(--space-2xl) var(--gutter);
  background: var(--c-bg-elevated);
}

.why-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.why-section__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  border-color: var(--c-gold);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  color: var(--c-gold);
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: 0.6rem;
}

.why-card__desc {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.why-section__bottom {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--c-border);
}

.why-section__bottom h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.why-section__bottom p {
  color: var(--c-text-muted);
  line-height: 1.8;
}


/* ════════════════════════════════════════════════════════
   11. CONTACT / RESERVATION SECTION
   ════════════════════════════════════════════════════════ */
.reservation-section {
  padding: var(--space-2xl) var(--gutter);
}

.reservation-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.reservation-section__decorative {
  width: 120px;
  height: 20px;
  flex-shrink: 0;
}

.reservation-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  white-space: nowrap;
}

.reservation-section__cards {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reservation-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.reservation-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
}

.reservation-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--c-gold);
}

.reservation-card__icon svg {
  width: 100%;
  height: 100%;
}

.reservation-card__label {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: 0.6rem;
}

.reservation-card__info {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: 1.7;
}

a.reservation-card__info {
  transition: color var(--dur-fast) ease;
}

a.reservation-card__info:hover {
  color: var(--c-gold);
}

.reservation-card--cta {
  border-color: var(--c-gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), var(--c-bg-card));
}

.reservation-card__phone-btn {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--c-bg);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  transition: all var(--dur-fast) ease;
}

.reservation-card__phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--c-gold-glow);
}


/* ════════════════════════════════════════════════════════
   12. TESTIMONIALS SECTION
   ════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--space-2xl) var(--gutter);
  background: var(--c-bg-elevated);
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials-section__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.testimonials-section__carousel {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}

.testimonials-section__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-fast) ease;
}

.testimonials-section__arrow:hover {
  border-color: var(--c-gold);
  background: var(--c-gold-dim);
}

.testimonials-section__arrow svg {
  width: 20px;
  height: 20px;
  color: var(--c-text);
}

.testimonials-section__track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-normal) ease;
}

.testimonial-card.active {
  opacity: 1;
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--c-gold);
}

.testimonial-card__avatar svg {
  width: 40px;
  height: 40px;
}

.testimonial-card__name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--c-gold);
  margin-bottom: 0.8rem;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  color: var(--c-text-muted);
  line-height: 1.7;
  font-style: italic;
  max-width: 500px;
}


/* ════════════════════════════════════════════════════════
   13. FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  padding: var(--space-xl) var(--gutter) var(--space-md);
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-light);
}

.footer__top {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--c-border);
}

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

.footer__logo-icon {
  font-size: 2rem;
}

.footer__logo-text {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--c-gold);
}

.footer__tagline {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  max-width: 300px;
  margin-top: 0.5rem;
}

.footer__links-group h4 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

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

.footer__links-group li,
.footer__links-group a {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  transition: color var(--dur-fast) ease;
}

.footer__links-group a:hover {
  color: var(--c-gold);
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: var(--space-md);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-label);
  color: var(--c-text-dim);
}


/* ════════════════════════════════════════════════════════
   14. WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 500;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

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


/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */

/* Large tablets */
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .menu-section__cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-section__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats__decorative {
    display: none;
  }

  .stats__grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links,
  .nav__brochure-btn {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero-carousel {
    height: 70vh;
    min-height: 400px;
  }

  .hero-carousel__content {
    bottom: 18%;
  }

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

  .modal__image {
    max-height: 200px;
  }

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

  .stats__grid {
    flex-direction: column;
    gap: var(--space-md);
  }

  .gallery-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .reservation-section__header {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .reservation-section__decorative {
    display: none;
  }

  .testimonials-section__carousel {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .testimonials-section__track {
    width: 100%;
  }

  .testimonials-section__arrow {
    width: 40px;
    height: 40px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .top-bar__phone {
    font-size: 0.75rem;
  }

  .cta-section__phone-btn {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }
}

/* Very small phones */
@media (max-width: 400px) {
  .hero-carousel__title {
    font-size: 2rem;
  }

  .hero-carousel__subtitle {
    font-size: 0.9rem;
  }

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

/* ════════════════════════════════════════════════════════
   18. MULTI-PAGE SPECIFIC STYLES
   ════════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 100%);
}
.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--c-text);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* New Dark Footer Layout */
.site-footer {
  background-color: #1a1e23;
  color: #a0a0a0;
  padding: 60px 20px 20px;
  font-family: var(--ff-body);
}
.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.site-footer__logo-img {
  max-width: 150px;
  margin-bottom: 15px;
}
.site-footer__logo-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.site-footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
}
.site-footer__heading {
  color: var(--c-gold);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__list li a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.site-footer__list li a::before {
  content: '▸';
  color: var(--c-gold);
}
.site-footer__list li a:hover {
  color: var(--c-gold);
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.95rem;
}
.site-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.site-footer__contact-item svg {
  color: var(--c-gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}
.site-footer__bottom span {
  color: var(--c-gold);
}
@media (max-width: 992px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* Detailed Menu Page Styles */
.detailed-menu {
  background-color: #fdfbf7;
  color: var(--c-text-dark);
  padding: 60px 20px;
}
.menu-tab-content {
  max-width: var(--container-max);
  margin: 0 auto;
}
.menu-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.menu-package-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.menu-package-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}
.menu-package-card__body {
  padding: 25px;
  text-align: center;
}
.menu-package-card__title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: #1a1e23;
  margin-bottom: 25px;
}
.menu-package-card__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.menu-package-btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.menu-package-btn--view {
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  background: transparent;
}
.menu-package-btn--view:hover {
  background: var(--c-gold);
  color: #fff;
}
.menu-package-btn--enquire {
  border: 1px solid #1a1e23;
  color: #1a1e23;
  background: transparent;
}
.menu-package-btn--enquire:hover {
  background: #1a1e23;
  color: #fff;
}

/* Expanded Menu Details */
.menu-expanded-details {
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.menu-expanded-details.active {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  animation: slideDownFade 0.5s ease;
}
@keyframes slideDownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-expanded-details__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.menu-expanded-details__content {
  padding: 40px;
}
.menu-expanded-details__title {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: #1a1e23;
  margin-bottom: 5px;
}
.menu-expanded-details__subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.menu-expanded-details__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.menu-expanded-details__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 1rem;
}
.menu-expanded-details__icon {
  color: var(--c-gold);
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .menu-expanded-details.active {
    grid-template-columns: 1fr;
  }
  .menu-expanded-details__list {
    grid-template-columns: 1fr;
  }
}

/* Contact Us Page specific styling */
.contact-page {
  background-color: #fdfbf7;
  color: var(--c-text-dark);
  padding: 60px 20px;
}
.contact-page__heading {
  text-align: center;
  color: var(--c-gold);
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  margin-bottom: 40px;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto 60px;
}
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid #eee;
}
.contact-info-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-info-card__content h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1e23;
}
.contact-info-card__content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-persons {
  text-align: center;
  margin-bottom: 80px;
}
.contact-persons h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: #1a1e23;
  margin-bottom: 10px;
}
.contact-persons > p {
  color: #666;
  margin-bottom: 40px;
}
.contact-persons-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.person-card {
  text-align: center;
}
.person-card__img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: var(--c-gold); /* Fallback */
}
.person-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card h4 {
  color: #1a1e23;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.person-card p {
  color: var(--c-gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Contact Layout Form & Illustration */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}
.contact-layout__img img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}
.contact-layout__form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}
.contact-layout__form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}
.form-group input, .form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f9f9f9;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
}
.btn-submit {
  grid-column: 1 / -1;
  background: var(--c-gold);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover {
  background: #b5922d;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .contact-layout__form form {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   MULTI-PAGE LAYOUT ADDITIONS
   ════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding-top: 170px;
  padding-bottom: 90px;
  background-image: linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)), url('https://images.unsplash.com/photo-1555244162-803834f70033?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 2px solid var(--c-gold);
  overflow: hidden;
  box-shadow: inset 0 -10px 40px rgba(0,0,0,0.5);
}
.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--c-gold);
  font-weight: var(--fw-bold);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.detailed-menu {
  padding: 80px var(--gutter);
  max-width: 1200px;
  margin: 0 auto;
}

/* Menu Package Cards Container */
.menu-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Individual Package Card */
.menu-package-card {
  background: var(--c-bg-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-package-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.menu-package-card__body {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-package-card__title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.menu-package-card__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Buttons */
.menu-package-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.menu-package-btn--view {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
}
.menu-package-btn--view:hover {
  background: rgba(212, 175, 55, 0.1);
}
.menu-package-btn--enquire {
  background: var(--c-gold);
  color: #fff;
  border: 1px solid var(--c-gold);
}
.menu-package-btn--enquire:hover {
  background: #b5922d;
}

/* Expanded List */
.menu-expanded-details {
  display: none;
  background: var(--c-bg-alt);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}
.menu-expanded-details.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-expanded-details__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-expanded-details__content {
  padding: 40px;
}
.menu-expanded-details__title {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--c-gold);
  margin-bottom: 5px;
}
.menu-expanded-details__subtitle {
  color: var(--c-text-muted);
  margin-bottom: 25px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-expanded-details__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.menu-expanded-details__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}
.menu-expanded-details__icon {
  width: 20px;
  height: 20px;
  color: var(--c-gold);
}

@media (max-width: 768px) {
  .menu-expanded-details.active {
    grid-template-columns: 1fr;
  }
  .menu-expanded-details__img {
    height: 250px;
  }
  .menu-expanded-details__list {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   GALLERY HOVER ANIMATION ADDITIONS
   ════════════════════════════════════════════════════════ */
.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
}

.gallery__item img {
  transition: transform 0.6s var(--ease-out-expo);
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.gallery__overlay svg {
  width: 40px;
  height: 40px;
  color: #fff;
  transform: scale(0.5);
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__overlay svg {
  transform: scale(1);
}

/* ════════════════════════════════════════════════════════
   UPGRADED ULTRA-PREMIUM GALLERY MASONRY LAYOUT
   ════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--space-xl) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.gallery__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--c-gold);
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
}

.gallery__subheading {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  font-weight: var(--fw-light);
}

.masonry-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--c-border);
  background: var(--c-bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all var(--dur-normal) var(--ease-out-expo);
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  opacity: 0;
  transform: scale(0.95);
  transition: all var(--dur-normal) var(--ease-out-expo);
  z-index: 11;
  pointer-events: none;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-quad);
  z-index: 10;
}

.gallery__overlay svg {
  width: 44px;
  height: 44px;
  color: var(--c-gold);
  transform: scale(0.6);
  transition: transform 0.5s var(--ease-out-expo);
}

.masonry-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px var(--c-gold-glow);
  border-color: var(--c-gold);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.masonry-item:hover .gallery__overlay {
  opacity: 1;
}

.masonry-item:hover .gallery__overlay svg {
  transform: scale(1);
}

.masonry-item.hidden {
  display: none;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* ════════════════════════════════════════════════════════
   GLOBAL MOBILE OVERRIDES & BUG FIXES (320px+)
   ════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about__para {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .about__images {
    justify-content: center;
    grid-template-columns: 1fr; /* Stack images on mobile */
  }
  
  .stats {
    flex-direction: column;
    padding: 0 var(--gutter);
  }
  
  .stats__grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: var(--space-md);
  }
  
  .stats__decorative {
    display: none;
  }
  
  .reservation-section__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reservation-section__decorative {
    display: none;
  }
  
  .reservation-section__heading {
    font-size: 1.8rem;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .modal-overlay {
    padding: 15px;
  }
  
  .modal {
    padding: 16px 16px 20px;
  }
  
  .modal__image {
    margin-bottom: 15px;
  }
  
  .modal__heading {
    font-size: 1.6rem;
  }
  
  .modal__subheading {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  
  .menu-section__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-section__grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════════════════════
   FORM VALIDATION ERROR STYLES
   ════════════════════════════════════════════════════════ */
.form-error {
  border-color: var(--c-red) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15) !important;
}

.form-error-msg {
  color: var(--c-red);
  font-size: var(--fs-label);
  margin-top: 4px;
  display: block;
  animation: errorFadeIn 0.3s ease;
}

@keyframes errorFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE OPTIMIZATION OVERRIDES --- */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* Top Bar */
  .top-bar {
    padding: 0.5rem 1rem !important;
  }
  .top-bar__phone {
    font-size: 0.8rem !important;
  }
  
  /* Navigation */
  .nav__links {
    display: none; /* Should be hidden on mobile in favor of hamburger */
  }
  
  /* Footer */
  .site-footer__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  .site-footer__contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  
  /* Contact Layout */
  .contact-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
  }
  
  .contact-info-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  
  .contact-form-container {
    width: 100% !important;
    padding: 1.5rem !important;
  }

/* --- MOBILE OPTIMIZATION OVERRIDES --- */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* Top Bar */
  .top-bar {
    padding: 0.5rem 1rem !important;
  }
  .top-bar__phone {
    font-size: 0.8rem !important;
  }
  
  /* Navigation */
  .nav__links {
    display: none; /* Should be hidden on mobile in favor of hamburger */
  }
  
  /* Footer */
  .site-footer__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  .site-footer__contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  
  /* Contact Layout */
  .contact-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
  }
  
  .contact-info-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }
  
  .contact-form-container {
    width: 100% !important;
    padding: 1.5rem !important;
  }
  
  .contact-premium-details {
    width: 100% !important;
  }
  
  /* Typography tweaks */
  .page-hero__title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }

  /* Hero Scroll Hint (Mobile Only) */
  .hero-scroll-hint {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: #ffffff;
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    gap: 6px;
    pointer-events: none;
    opacity: 0.8;
  }
  
  .hero-scroll-hint__arrow {
    display: inline-flex;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }
}

/* Default Scroll Hint State (Hidden on Desktop) */
.hero-scroll-hint {
  display: none;
}
