/* ==========================================================================
   Bojo's Cafe & Restaurant — Official Landing Page Styles (www.bojos.in)
   Theme: Obsidian Dark Aesthetic with Emerald Glows & Pure Veg Accents
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #08111d;
  --bg-secondary: #0d1928;
  --bg-tertiary: #101e2f;
  --bg-card: rgba(16, 30, 47, 0.75);
  --bg-card-hover: rgba(22, 40, 62, 0.9);
  --bg-glass: rgba(13, 25, 40, 0.85);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(52, 211, 153, 0.18);
  --border-card-hover: rgba(52, 211, 153, 0.45);

  --emerald-primary: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --emerald-dark: #065f46;

  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.3);

  --blue-primary: #38bdf8;
  --blue-glow: rgba(56, 189, 248, 0.25);

  --rose-primary: #f43f5e;
  --rose-light: #fb7185;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 24px rgba(16, 185, 129, 0.28);
  --shadow-gold-glow: 0 0 24px rgba(245, 158, 11, 0.25);

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.12), transparent 30rem),
    radial-gradient(circle at 10% 45%, rgba(56, 189, 248, 0.08), transparent 28rem),
    radial-gradient(circle at 75% 85%, rgba(245, 158, 11, 0.07), transparent 32rem);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.glow-emerald {
  top: -10vw;
  right: -5vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
}

.glow-blue {
  top: 35vh;
  left: -10vw;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, transparent 70%);
}

.glow-gold {
  bottom: 10vh;
  right: 5vw;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
}

/* Top Announcement Banner */
.top-banner {
  background: linear-gradient(90deg, #064e3b 0%, #065f46 50%, #047857 100%);
  color: #ecfdf5;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.top-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.veg-dot-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.banner-divider {
  opacity: 0.5;
}

.banner-highlight {
  color: #fef08a;
  font-weight: 700;
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(8, 17, 29, 0.95);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.brand-logo {
  border-radius: 10px;
  filter: drop-shadow(0 2px 10px rgba(234, 179, 8, 0.35));
  transition: transform 0.3s var(--ease-spring);
}

.brand-link:hover .brand-logo {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 40%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--emerald-light);
  text-transform: uppercase;
}

/* Status Pill */
.status-pill-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: #6ee7b7;
}

.status-pill-wrapper.closed {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(251, 113, 133, 0.3);
  color: var(--rose-light);
}

.status-pill-wrapper.last-order {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(251, 191, 36, 0.35);
  color: var(--gold-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-primary);
  box-shadow: 0 0 8px var(--emerald-primary);
}

.status-dot.closed {
  background: var(--rose-primary);
  box-shadow: 0 0 8px var(--rose-primary);
}

.status-dot.last-order {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.dot-pulse {
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--emerald-light);
  transition: width 0.25s ease;
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #059669 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 50px 24px 70px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 640px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--emerald-light);
  display: inline-block;
}

.pure-veg-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-light);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-tag {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-title {
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 24px;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: #6ee7b7;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.68;
  color: #cbd5e1;
  margin-bottom: 22px;
}

.hero-subtitle strong {
  color: #ffffff;
}

/* Visual Dish Photo Highlights accompanying the description */
.hero-dish-strip {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
}

.dish-strip-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.pulse-sparkle {
  font-size: 0.95rem;
  animation: pulseSparkle 2s infinite ease-in-out;
}

@keyframes pulseSparkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.dish-strip-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-light);
}

.dish-strip-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dish-strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.28);
  padding: 4px 14px 4px 5px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dish-strip-pill:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: rgba(52, 211, 153, 0.65);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.pill-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(52, 211, 153, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.dish-strip-pill:hover .pill-thumb {
  transform: rotate(6deg) scale(1.08);
  border-color: #6ee7b7;
}

.pill-meta {
  display: flex;
  flex-direction: column;
}

.pill-dish {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.pill-tag {
  font-size: 0.66rem;
  color: var(--emerald-light);
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary-hero:hover::before {
  left: 100%;
}

.btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.65);
}

.btn-primary-hero .btn-text {
  display: flex;
  flex-direction: column;
}

.btn-primary-hero strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.btn-primary-hero small {
  font-size: 0.74rem;
  opacity: 0.85;
}

.btn-primary-hero .btn-arrow-icon {
  font-size: 1.35rem;
  transition: transform 0.25s ease;
}

.btn-primary-hero:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-whatsapp-hero:hover {
  background: rgba(37, 211, 102, 0.24);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

/* Trust Strip */
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1.3rem;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 0.84rem;
  color: #ffffff;
}

.trust-item span {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

/* Hero Showcase Card / 3D Preview Window */
.hero-showcase {
  position: relative;
  perspective: 1000px;
}

.showcase-card-wrapper {
  position: relative;
  z-index: 2;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s var(--ease-spring);
}

.showcase-card-wrapper:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.showcase-glow-halo {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  filter: blur(25px);
  z-index: 1;
}

.showcase-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, rgba(16, 30, 47, 0.92) 0%, rgba(10, 20, 32, 0.96) 100%);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.header-logo-group div {
  display: flex;
  flex-direction: column;
}

.header-logo-group strong {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.showcase-url {
  font-size: 0.75rem;
  color: var(--emerald-light);
  font-family: monospace;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.74rem;
  color: var(--emerald-light);
  font-weight: 600;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-primary);
  box-shadow: 0 0 6px var(--emerald-primary);
}

/* Showcase Spotlight Banner */
.showcase-spotlight {
  margin-bottom: 16px;
  position: relative;
}

.spotlight-media {
  position: relative;
  height: 185px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.spotlight-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.spotlight-cover-img.fade-in {
  animation: photoFadeIn 0.35s ease forwards;
}

@keyframes photoFadeIn {
  from { opacity: 0.35; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.spotlight-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 29, 0.1) 0%, rgba(8, 17, 29, 0.92) 88%);
  pointer-events: none;
}

.spotlight-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.spotlight-badge-fresh {
  background: rgba(245, 158, 11, 0.95);
  color: #0f172a;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.spotlight-badge-veg {
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.spotlight-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.spotlight-category {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #6ee7b7;
  text-transform: uppercase;
  margin-bottom: 2px;
}

#spotlight-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#spotlight-desc {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-banner {
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.35) 0%, rgba(16, 30, 47, 0.4) 100%);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-banner-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6ee7b7;
}

.showcase-banner p {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
}

.showcase-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
  border-left: 3px solid transparent;
}

.showcase-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(52, 211, 153, 0.3);
  transform: translateX(4px);
}

.showcase-item.active {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(52, 211, 153, 0.45);
  border-left: 3px solid #10b981;
}

.showcase-item.active strong {
  color: #6ee7b7;
}

.showcase-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.item-emoji {
  font-size: 1.4rem;
}

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

.item-info strong {
  font-size: 0.88rem;
  color: #f1f5f9;
}

.item-info span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.item-badge-veg {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--emerald-light);
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
}

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

.showcase-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald-primary), #059669);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 22, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.floating-badge-icon {
  font-size: 1.4rem;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}

.floating-badge strong {
  font-size: 0.84rem;
  color: #ffffff;
}

.floating-badge small {
  font-size: 0.72rem;
  color: var(--emerald-light);
}

.badge-top-right {
  top: -18px;
  right: -24px;
  border-color: rgba(245, 158, 11, 0.4);
  animation: floatTop 4s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: -22px;
  left: -20px;
  border-color: rgba(52, 211, 153, 0.4);
  animation: floatBottom 4.5s ease-in-out infinite;
}

@keyframes floatTop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatBottom {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Appetizing Food Photo Reel / Marquee Ribbon */
.food-photo-reel-section {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 17, 29, 0.7) 0%, rgba(13, 27, 42, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0 28px;
  overflow: hidden;
}

.reel-inner-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.reel-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.reel-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reel-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: var(--emerald-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 9999px;
}

.reel-title {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.reel-order-link {
  color: #6ee7b7;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.reel-order-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.food-reel-scroller {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 211, 153, 0.35) transparent;
}

.food-reel-scroller::-webkit-scrollbar {
  height: 5px;
}

.food-reel-scroller::-webkit-scrollbar-thumb {
  background: rgba(52, 211, 153, 0.35);
  border-radius: 9999px;
}

.food-reel-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.reel-card {
  display: flex;
  flex-direction: column;
  width: 175px;
  background: rgba(16, 30, 47, 0.85);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.reel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(16, 185, 129, 0.25);
}

.reel-img-wrap {
  position: relative;
  height: 110px;
  overflow: hidden;
  background: #050c15;
}

.reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reel-card:hover .reel-img {
  transform: scale(1.1);
}

.reel-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(8, 17, 29, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.reel-card-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.reel-card-info strong {
  font-size: 0.86rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.reel-card-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* COMMON SECTION STYLING */
.section {
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--emerald-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* OFFERINGS GRID */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  margin-bottom: 50px;
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-card-hover);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.offering-card:hover::before {
  opacity: 1;
}

.card-icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.offering-card:hover .card-icon-bubble {
  transform: scale(1.1) rotate(5deg);
}

/* Card Food Photography Styling */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #050c15;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-spring);
}

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

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 29, 0.05) 0%, rgba(8, 17, 29, 0.65) 100%);
  pointer-events: none;
}

.card-icon-float {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(8, 17, 29, 0.88);
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform 0.3s var(--ease-spring);
}

.offering-card:hover .card-icon-float {
  transform: scale(1.12) rotate(6deg);
}

.card-veg-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(6, 78, 59, 0.92);
  border: 1px solid rgba(52, 211, 153, 0.6);
  color: #6ee7b7;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card-footer-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.card-footer-tags span {
  font-size: 0.74rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 6px;
}

.card-footer-tags .tag-veg {
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.12);
  font-weight: 700;
}

/* Offerings CTA Strip */
.offerings-cta-strip {
  margin-top: 20px;
}

.cta-strip-card {
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.45) 0%, rgba(13, 25, 40, 0.8) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 18px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.cta-strip-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-strip-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emerald-primary), #059669);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.65);
}

/* BULK & PARTY SECTION */
.bulk-section {
  background: linear-gradient(180deg, transparent 0%, rgba(16, 30, 47, 0.5) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bulk-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(320px, 0.8fr);
  gap: 50px;
  align-items: center;
}

.bulk-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

.bulk-desc strong {
  color: #ffffff;
}

.bulk-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.bulk-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-light);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bulk-features-list li div {
  display: flex;
  flex-direction: column;
}

.bulk-features-list li strong {
  color: #f1f5f9;
  font-size: 0.95rem;
}

.bulk-features-list li span {
  color: #94a3b8;
  font-size: 0.88rem;
}

.bulk-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-call-bulk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-primary), #d97706);
  color: #ffffff;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
  transition: transform 0.25s ease;
}

.btn-call-bulk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
}

.btn-whatsapp-bulk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-whatsapp-bulk:hover {
  background: rgba(37, 211, 102, 0.22);
  transform: translateY(-2px);
}

/* Party Badge Card */
.party-illustration-box {
  background: linear-gradient(145deg, rgba(22, 40, 62, 0.85) 0%, rgba(13, 25, 40, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
  position: relative;
}

/* Party & Catering Photo Mosaic */
.party-photos-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.mosaic-item {
  position: relative;
  height: 105px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  background: #050c15;
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.mosaic-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(8, 17, 29, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.party-box-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.party-illustration-box h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.party-illustration-box p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.party-highlights {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.party-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f1f5f9;
}

.party-card-footer small {
  color: var(--text-subtle);
  font-size: 0.78rem;
}

/* LOCATION & GOOGLE DIRECTIONS SECTION */
.location-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(380px, 1.2fr);
  gap: 40px;
  align-items: stretch;
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-details {
  flex: 1;
}

.info-details h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.restaurant-address {
  font-style: normal;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 8px;
}

.restaurant-address strong {
  color: #34d399;
}

.landmark-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Timings Table */
.timings-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.day-label {
  color: #cbd5e1;
  font-weight: 500;
}

.time-label {
  color: #34d399;
  font-weight: 700;
}

.timing-row.highlight-sub .time-label {
  color: var(--gold-light);
}

.holiday-badge {
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose-light) !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.phone-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.phone-link {
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #6ee7b7;
  text-decoration: underline;
}

.email-link-wrap {
  margin-top: 6px;
}

.email-link {
  color: var(--blue-primary);
  text-decoration: none;
  font-size: 0.88rem;
}

.email-link:hover {
  text-decoration: underline;
}

.directions-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald-primary), #059669);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  transition: transform 0.25s ease;
}

.btn-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6);
}

.btn-map-view {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-map-view:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Embedded Map */
.map-card-wrapper {
  position: relative;
  min-height: 420px;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-container iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(8, 17, 29, 0.92);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.map-badge-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.map-overlay-badge div {
  display: flex;
  flex-direction: column;
}

.map-overlay-badge strong {
  font-size: 0.85rem;
  color: #ffffff;
}

.map-overlay-badge span {
  font-size: 0.72rem;
  color: var(--emerald-light);
}

/* CONTACT SECTION */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-method-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.3);
}

.method-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-method-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-method-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
  flex: 1;
}

.method-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--emerald-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.method-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.method-link.link-primary {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 8px 18px;
  border-radius: 8px;
}

.phone-buttons-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.method-btn-tel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #34d399;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.method-btn-tel:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
}

.method-btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.method-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* FOOTER */
.site-footer {
  background: #040910;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 24px 30px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo {
  border-radius: 8px;
}

.footer-brand-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-about {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pure-veg-footer-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--emerald-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #34d399;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  color: #cbd5e1;
}

.holiday-note {
  color: var(--rose-light);
}

.timings-status-msg {
  color: var(--emerald-light);
  font-weight: 600;
  margin-top: 4px;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contacts p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 4px;
}

.footer-contacts a {
  color: #34d399;
  text-decoration: none;
}

.footer-contacts a:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: #64748b;
}

/* Sticky Mobile Floating Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 17, 29, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-card);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  justify-content: space-between;
  gap: 10px;
}

.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-bar-btn.btn-call {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
}

.mobile-bar-btn.btn-wa {
  background: rgba(37, 211, 102, 0.18);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.mobile-bar-btn.btn-order {
  flex: 1.5;
  background: linear-gradient(135deg, var(--emerald-primary), #059669);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-showcase {
    max-width: 540px;
    margin: 0 auto;
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-header .nav-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #08111d;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    align-items: flex-start;
  }

  .site-header .nav-menu.is-open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .status-pill-wrapper {
    display: none; /* Hide on small mobile nav to save space; shown in hero */
  }

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

  .cta-strip-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-badge {
    display: none;
  }

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

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

  body {
    padding-bottom: 64px; /* clearance for sticky bottom bar */
  }
}
