/* ==========================================================================
   SHAHI BITE RESTAURANT — MASTER LUXURY STYLESHEET
   Identity: Pure White + Shahi Red + Deep Charcoal / Black
   Mobile-First, Production-Grade, Zero Bloat
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --shahi-white: #ffffff;
  --shahi-offwhite: #fbfbfb;
  --shahi-light-grey: #f4f5f7;
  --shahi-border: #e6e8ec;
  --shahi-border-light: #f0f1f3;
  
  --shahi-red: #c4121a;
  --shahi-red-hover: #a00d14;
  --shahi-red-tint: rgba(196, 18, 26, 0.08);
  
  --shahi-charcoal: #141414;
  --shahi-charcoal-light: #1f1f1f;
  --shahi-text-primary: #181818;
  --shahi-text-secondary: #585858;
  --shahi-text-muted: #888888;
  
  --wa-green: #25d366;
  --wa-green-hover: #20ba5a;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout Consts */
  --max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--shahi-white);
  color: var(--shahi-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.section-light-grey {
  background-color: var(--shahi-light-grey);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2-col {
  grid-template-columns: 1fr;
}

.grid-3-col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--shahi-red);
}

.text-white {
  color: var(--shahi-white);
}

.text-secondary {
  color: var(--shahi-text-secondary);
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.82);
}

.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.pt-0 { padding-top: 0; }

/* --------------------------------------------------------------------------
   SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--shahi-red);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--shahi-charcoal);
  color: #cfcfcf;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contact a {
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .top-bar-item:nth-child(2) {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   STICKY HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--shahi-white);
  height: var(--header-height);
  z-index: 999;
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
  border-bottom: 1px solid var(--shahi-border-light);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--shahi-charcoal);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--shahi-red);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--shahi-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-whatsapp {
  display: none;
}

.btn-header-reserve {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
  .btn-header-whatsapp {
    display: inline-flex;
  }
  .btn-header-reserve {
    display: inline-flex;
  }
  .hamburger-btn {
    display: none;
  }
}

/* Hamburger Button */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--shahi-charcoal);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Nav */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--shahi-white);
  z-index: 1000;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-smooth);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--shahi-charcoal);
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--shahi-border-light);
}

.mobile-link.active {
  color: var(--shahi-red);
  border-bottom-color: var(--shahi-red);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-info {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--shahi-text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   BUTTONS & MICRO-INTERACTIONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--shahi-red);
  color: var(--shahi-white);
}

.btn-primary:hover {
  background-color: var(--shahi-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 18, 26, 0.28);
}

.btn-secondary {
  background-color: var(--wa-green);
  color: var(--shahi-white);
}

.btn-secondary:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--shahi-white);
}

.btn-outline-white:hover {
  background-color: var(--shahi-white);
  color: var(--shahi-charcoal);
  border-color: var(--shahi-white);
}

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--shahi-charcoal);
  color: var(--shahi-charcoal);
}

.btn-outline-dark:hover {
  background-color: var(--shahi-charcoal);
  color: var(--shahi-white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

.btn-text-red {
  color: var(--shahi-red);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-text-red:hover {
  text-decoration: underline;
}

.icon-btn, .icon-sm {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shahi-red);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--shahi-charcoal);
  margin-bottom: 16px;
}

.body-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--shahi-charcoal-light);
  margin-bottom: 16px;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-description {
  font-size: 1rem;
  color: var(--shahi-text-secondary);
}

/* --------------------------------------------------------------------------
   CINEMATIC HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(90vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--shahi-charcoal);
  color: var(--shahi-white);
  padding: 60px 0;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.72) 55%, rgba(14, 14, 14, 0.45) 100%);
}

.hero-content-container {
  position: relative;
  z-index: 2;
}

.hero-text-block {
  max-width: 720px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.red-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background-color: var(--shahi-red);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   IMAGE FRAMES & PHOTO SHELLS
   -------------------------------------------------------------------------- */
.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-color: var(--shahi-light-grey);
}

.image-frame-stacked {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-color: var(--shahi-light-grey);
}

.content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.image-frame:hover .content-img {
  transform: scale(1.03);
}

.highlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: var(--shahi-light-grey);
  border-radius: 40px;
  font-size: 0.86rem;
  font-weight: 600;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--shahi-red);
}

/* --------------------------------------------------------------------------
   CUISINE CATEGORY CARDS
   -------------------------------------------------------------------------- */
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .cuisine-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cuisine-card {
  background-color: var(--shahi-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--shahi-border);
  text-align: center;
  transition: all var(--transition-smooth);
}

.cuisine-card:hover {
  border-color: var(--shahi-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cuisine-icon-shell {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--shahi-light-grey);
  color: var(--shahi-charcoal);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.cuisine-card:hover .cuisine-icon-shell {
  background-color: var(--shahi-red);
  color: var(--shahi-white);
}

.cuisine-svg {
  width: 28px;
  height: 28px;
}

.cuisine-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cuisine-desc {
  font-size: 0.85rem;
  color: var(--shahi-text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   FEATURED FOOD CARDS
   -------------------------------------------------------------------------- */
.featured-food-card {
  background-color: var(--shahi-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--shahi-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.featured-food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--shahi-red);
}

.food-media-shell {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--shahi-light-grey);
}

.food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.featured-food-card:hover .food-img {
  transform: scale(1.04);
}

.food-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--shahi-charcoal);
  color: var(--shahi-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.food-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.food-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.food-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.food-price {
  color: var(--shahi-red);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.food-desc {
  font-size: 0.9rem;
  color: var(--shahi-text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.food-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--shahi-border-light);
  padding-top: 14px;
}

.food-portion {
  font-size: 0.82rem;
  color: var(--shahi-text-muted);
}

/* --------------------------------------------------------------------------
   EXPERIENCE CHECKLIST
   -------------------------------------------------------------------------- */
.experience-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.check-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-icon {
  color: var(--shahi-red);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   EDITORIAL GALLERY PREVIEW
   -------------------------------------------------------------------------- */
.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 900px) {
  .editorial-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item-medium {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.gallery-item-large, .gallery-item-medium, .gallery-item-small {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--shahi-light-grey);
}

.gallery-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.editorial-gallery-grid div:hover .gallery-preview-img {
  transform: scale(1.03);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--shahi-white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   RESERVATION SECTION & FORMS
   -------------------------------------------------------------------------- */
.section-reservation {
  background-color: var(--shahi-charcoal);
  color: var(--shahi-white);
}

.reservation-card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .reservation-card-wrapper {
    grid-template-columns: 1.1fr 1.3fr;
  }
}

.reservation-intro .section-heading {
  margin-bottom: 20px;
}

.reservation-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.perk-item svg {
  color: var(--shahi-red);
}

.reservation-form-container {
  background-color: var(--shahi-white);
  border-radius: var(--radius-md);
  padding: clamp(24px, 5vw, 40px);
  color: var(--shahi-text-primary);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--shahi-charcoal);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--shahi-border);
  border-radius: var(--radius-sm);
  background-color: var(--shahi-white);
  color: var(--shahi-text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--shahi-red);
  box-shadow: 0 0 0 3px var(--shahi-red-tint);
}

.form-error-text {
  display: none;
  color: var(--shahi-red);
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 500;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: var(--shahi-red);
}

.form-group.has-error .form-error-text {
  display: block;
}

.form-success-banner {
  margin-top: 16px;
  padding: 12px;
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--wa-green);
  color: #0b6127;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   LOCATION BANNER
   -------------------------------------------------------------------------- */
.location-banner {
  background-color: var(--shahi-white);
  border: 1px solid var(--shahi-border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.location-contact-list {
  margin: 20px 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   CTA BANNER SECTION
   -------------------------------------------------------------------------- */
.cta-banner-section {
  background-color: var(--shahi-light-grey);
  border-top: 1px solid var(--shahi-border);
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner-sub {
  font-size: 1.1rem;
  color: var(--shahi-text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   PAGE HEADER BANNERS (ABOUT, MENU, GALLERY, CONTACT)
   -------------------------------------------------------------------------- */
.page-header-section {
  padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 6vw, 60px);
  background-color: var(--shahi-light-grey);
  border-bottom: 1px solid var(--shahi-border);
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--shahi-charcoal);
  margin-bottom: 16px;
}

.page-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--shahi-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   MENU SPECIFIC UX (SEARCH & STICKY RAIL)
   -------------------------------------------------------------------------- */
.menu-search-wrapper {
  max-width: 540px;
  margin: 28px auto 0;
}

.search-input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: var(--shahi-text-muted);
}

.menu-search-field {
  width: 100%;
  padding: 14px 44px 14px 48px;
  border-radius: 40px;
  border: 1px solid var(--shahi-border);
  font-size: 0.95rem;
  background-color: var(--shahi-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.menu-search-field:focus {
  outline: none;
  border-color: var(--shahi-red);
  box-shadow: 0 0 0 3px var(--shahi-red-tint);
}

.clear-search-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--shahi-text-muted);
  cursor: pointer;
  display: none;
}

.menu-categories-sticky {
  position: sticky;
  top: var(--header-height);
  background-color: var(--shahi-white);
  z-index: 90;
  border-bottom: 1px solid var(--shahi-border);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.categories-scroll-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll-track::-webkit-scrollbar {
  height: 4px;
}

.categories-scroll-track::-webkit-scrollbar-thumb {
  background: var(--shahi-border);
  border-radius: 4px;
}

.cat-pill {
  background-color: var(--shahi-light-grey);
  color: var(--shahi-charcoal);
  border: 1px solid var(--shahi-border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.cat-pill:hover,
.cat-pill.active {
  background-color: var(--shahi-red);
  color: var(--shahi-white);
  border-color: var(--shahi-red);
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 680px) {
  .menu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .menu-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item-card {
  background-color: var(--shahi-white);
  border: 1px solid var(--shahi-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.menu-item-card:hover {
  border-color: var(--shahi-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.menu-item-card.is-hidden {
  display: none !important;
}

.card-media {
  aspect-ratio: 16/9;
  background-color: var(--shahi-light-grey);
  overflow: hidden;
  position: relative;
}

.card-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fallback-svg {
  width: 44px;
  height: 44px;
  color: var(--shahi-text-muted);
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.menu-item-card:hover .menu-img {
  transform: scale(1.04);
}

.card-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-cat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--shahi-red);
  letter-spacing: 0.05em;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--shahi-charcoal);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--shahi-text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-meta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--shahi-border-light);
  padding-top: 12px;
}

@media (min-width: 420px) {
  .card-meta-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.meta-portion {
  font-size: 0.8rem;
  color: var(--shahi-text-muted);
}

.no-results-state {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.1rem;
  color: var(--shahi-text-secondary);
}

/* --------------------------------------------------------------------------
   GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gallery-tab {
  background: var(--shahi-white);
  border: 1px solid var(--shahi-border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-tab.active,
.gallery-tab:hover {
  background-color: var(--shahi-red);
  color: var(--shahi-white);
  border-color: var(--shahi-red);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.gallery-card.is-hidden {
  display: none !important;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-thumb-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--shahi-light-grey);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--shahi-white);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: 300;
}

.gallery-tag {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.94);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-active-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: var(--shahi-white);
  font-size: 1rem;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--shahi-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--shahi-white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --------------------------------------------------------------------------
   CONTACT PAGE & PARALLEL FORMS
   -------------------------------------------------------------------------- */
.contact-info-card {
  background-color: var(--shahi-white);
  border: 1px solid var(--shahi-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--shahi-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shahi-red);
  margin-bottom: 4px;
}

.contact-svg {
  width: 24px;
  height: 24px;
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.card-btn-stack {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.status-indicator-badge {
  color: #1b8a3b;
  font-weight: 600;
  font-size: 0.88rem;
}

.form-card {
  background-color: var(--shahi-white);
  border: 1px solid var(--shahi-border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}

.form-box-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--shahi-charcoal);
  color: #c9c9c9;
  padding: 70px 0 24px;
  border-top: 4px solid var(--shahi-red);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 640px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--shahi-white);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-brand-subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shahi-white);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--shahi-red);
  transform: translateY(-2px);
}

.social-svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--shahi-white);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--shahi-white);
  padding-left: 4px;
}

.footer-info-list li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-info-list strong {
  display: block;
  color: var(--shahi-white);
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-phone {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--shahi-white);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: var(--wa-green);
  color: var(--shahi-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform var(--transition-smooth), background-color var(--transition-fast);
}

.floating-whatsapp:hover {
  background-color: var(--wa-green-hover);
  transform: scale(1.08) translateY(-2px);
}

.floating-wa-icon {
  width: 32px;
  height: 32px;
}

/* --------------------------------------------------------------------------
   SCROLL REVEALS & PERFORMANCE ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-fade-up, .reveal-slide-left, .reveal-slide-right {
    opacity: 1 !important;
    transform: none !important;
  }
}