/* ==========================================================================
   GAVLIYA - ULTRA LUXURY RESTAURANT PROFILE & EXECUTIVE CARD STYLES
   ========================================================================== */

:root {
  --bg-dark: #080a0f;
  --bg-card: rgba(18, 22, 32, 0.7);
  --bg-card-hover: rgba(26, 32, 48, 0.85);
  --bg-glass-nav: rgba(10, 13, 20, 0.75);

  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa820a;
  --gold-gradient: linear-gradient(135deg, #f7d070 0%, #d4af37 50%, #996515 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-strong: rgba(212, 175, 55, 0.45);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-glass: rgba(212, 175, 55, 0.2);
  --border-glass-subtle: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(212, 175, 55, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-lux: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);

  --font-serif: 'Cinzel', serif, Georgia;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold-icon {
  color: var(--gold-primary);
}

/* Canvas & Ambient Glows */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.orb-1 {
  top: 10%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

.orb-2 {
  bottom: 20%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #ff9900 0%, transparent 70%);
}

.orb-3 {
  top: 50%;
  left: 45%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #e2b755 0%, transparent 70%);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.luxury-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass-subtle);
  transition: var(--transition);
}

.luxury-navbar.scrolled {
  background: rgba(6, 8, 12, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 1px 0 var(--border-glass);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand mark */
.brand-brandmark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-shield {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.logo-shield.micro {
  width: 38px;
  height: 38px;
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

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

.brand-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-glass-subtle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-glass-subtle:hover {
  background: rgba(37, 211, 102, 0.22);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-luxury-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-gradient);
  color: #0d0e12;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px var(--gold-glow);
  cursor: pointer;
  border: none;
}

.btn-luxury-gradient:hover {
  box-shadow: 0 6px 28px var(--gold-glow-strong);
  transform: translateY(-2px);
  color: #000;
}

.btn-luxury-gradient.big {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-luxury-gradient.full-w {
  width: 100%;
  padding: 0.85rem;
}

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

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(12, 16, 24, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--border-glass);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass-subtle);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-subtle);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.drawer-link {
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.drawer-link i {
  color: var(--gold-primary);
  width: 20px;
}

.drawer-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
}

/* ==========================================================================
   HERO SECTION & EXECUTIVE DASHBOARD CARD
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 105px;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Cinematic Background Container */
.hero-cinematic-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) contrast(1.1) saturate(1.15);
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.backdrop-gradient-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 35%, rgba(8, 10, 15, 0.25) 0%, rgba(8, 10, 15, 0.75) 75%, var(--bg-dark) 100%);
}

.backdrop-radial-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Executive Dashboard Card - Ultra Translucent Frosted Glass */
.hero-executive-board {
  position: relative;
  background: rgba(12, 16, 24, 0.42);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  padding: 2.75rem;
  overflow: hidden;
}

.hero-executive-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.board-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

/* Left Column */
.hero-col-left {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.status-badge-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: live-pulse 1.8s infinite;
}

@keyframes live-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 14px #22c55e;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.live-pulse-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #4ade80;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
}

.rating-pill i {
  color: #fbbf24;
}

/* Crystal Emblem */
.brand-crystal-emblem {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.emblem-card {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--border-glass-bright);
  box-shadow: 0 0 25px var(--gold-glow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: visible;
  flex-shrink: 0;
}

.emblem-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.hero-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-top: 0.3rem;
  opacity: 0.9;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Quick Circle Actions */
.quick-circle-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.5rem 0;
}

.circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.circle-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #000;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-3px);
}

.circle-btn.phone:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-3px);
}

.circle-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.5);
  transform: translateY(-3px);
}

.circle-btn.maps:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
}

.circle-btn.share:hover {
  background: #a855f7;
  border-color: #a855f7;
  color: #fff;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  transform: translateY(-3px);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gold-gradient);
  color: #0c0e14;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--gold-glow-strong);
  color: #000;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Right Column: Channels Panel */
.channels-glass-panel {
  background: rgba(10, 13, 22, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.panel-header .header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.panel-header .header-left i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.panel-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.panel-header span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
}

.badge-verified {
  font-size: 0.7rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.channel-items-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.channel-card:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

.channel-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wa-box {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.phone-box {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
}

.ig-box {
  background: rgba(225, 48, 108, 0.15);
  color: #e1306c;
}

.g-review-box {
  background: rgba(66, 133, 244, 0.15);
  color: #4285f4;
}

.delivery-box {
  background: rgba(252, 128, 25, 0.15);
  color: #fc8019;
}

.channel-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.channel-meta .c-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.channel-meta .c-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.c-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition);
}

.channel-card:hover .c-arrow {
  color: var(--gold-primary);
  transform: translateX(3px);
}

/* Metrics strip */
.metrics-counter-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-glass-subtle);
}

.metric-block {
  text-align: center;
}

.metric-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
}

.metric-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 30px;
  background: var(--border-glass-subtle);
}

/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */
.section-padded {
  padding: 6.5rem 0;
  position: relative;
  z-index: 1;
}

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

.section-title-wrap {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 2: ABOUT & VISION
   ========================================================================== */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.glass-feature-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.glass-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
}

.glass-feature-card.highlight-border {
  border-color: var(--border-glass);
  background: rgba(22, 28, 42, 0.8);
}

.card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.feature-icon-circle.gold {
  background: var(--gold-gradient);
  color: #0c0e14;
  box-shadow: 0 0 25px var(--gold-glow);
}

.feature-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.feature-tag-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-glass-subtle);
}

.feature-tag-list span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-tag-list span i {
  color: #22c55e;
  font-size: 0.8rem;
}

/* ==========================================================================
   SECTION 3: SERVICES GRID
   ========================================================================== */
.bg-subtle-pattern {
  background: linear-gradient(180deg, rgba(12, 16, 25, 0.5) 0%, rgba(8, 10, 15, 0.9) 100%);
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-glass-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-item-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #0c0e14;
  box-shadow: 0 0 20px var(--gold-glow);
}

.service-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.service-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-checklist li {
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-checklist li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* ==========================================================================
   SECTION 4: SOCIAL NETWORK HUB
   ========================================================================== */
.social-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mosaic-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition);
}

.mosaic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.mosaic-card.ig-card:hover {
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 0 25px rgba(225, 48, 108, 0.3);
}

.mosaic-card.maps-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.mosaic-card.wa-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.mosaic-card.fb-card:hover {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 0 25px rgba(24, 119, 242, 0.3);
}

.mosaic-icon {
  font-size: 2.2rem;
}

.ig-card .mosaic-icon {
  color: #e1306c;
}

.maps-card .mosaic-icon {
  color: #3b82f6;
}

.wa-card .mosaic-icon {
  color: #25d366;
}

.fb-card .mosaic-icon {
  color: #1877f2;
}

.mosaic-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mosaic-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.mosaic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 3px;
  width: fit-content;
}

.mosaic-btn:hover {
  color: #fff;
  border-color: #fff;
}

/* ==========================================================================
   SECTION 5: CONTACT & TABLE RESERVATION
   ========================================================================== */
.bg-contact-glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.grand-cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 32, 48, 0.9) 0%, rgba(12, 15, 22, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-lux);
  overflow: hidden;
}

.cta-backdrop-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow-strong) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  max-width: 620px;
}

.gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.cta-text h2 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cta-text p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-glass-hollow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-glass-hollow.big {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-glass-hollow:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.info-glass-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-4px);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.info-glass-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.info-val {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

.inline-link:hover {
  color: #fff;
  transform: translateX(3px);
}

.open-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.luxury-footer {
  position: relative;
  background: #040609;
  border-top: 1px solid var(--border-glass-subtle);
  padding-top: 5rem;
  padding-bottom: 2rem;
  z-index: 1;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer-social-icons a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold-primary);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item i {
  margin-top: 4px;
}

.save-contact-box {
  margin-top: 1.25rem;
}

.btn-save-vcard {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-save-vcard:hover {
  background: var(--gold-gradient);
  color: #0c0e14;
  box-shadow: 0 0 20px var(--gold-glow);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.developed-by-tag {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.softquix-link {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

.softquix-link:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--gold-glow-strong);
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-4px);
}

/* ==========================================================================
   FLOATING WHATSAPP FAB & TOAST
   ========================================================================== */
.floating-whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp-fab:hover {
  transform: scale(1.1);
  color: #fff;
}

.fab-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fab-ripple 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

.fab-pulse-ring.delay {
  animation-delay: 1.1s;
}

@keyframes fab-ripple {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.fab-tooltip {
  position: absolute;
  right: 75px;
  background: rgba(10, 13, 20, 0.95);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition);
}

.floating-whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Toast */
.toast-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
  backdrop-filter: blur(15px);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-popup i {
  color: #22c55e;
  font-size: 1.1rem;
}

.toast-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Flawless 320px to 4K)
   ========================================================================== */
@media (max-width: 1080px) {
  .board-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

@media (max-width: 868px) {
  .nav-container {
    padding: 0.65rem 0.85rem;
  }

  .brand-title {
    font-size: 1.15rem;
    letter-spacing: 1.5px;
  }

  .brand-tag {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .logo-shield {
    width: 38px;
    height: 38px;
  }

  .nav-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .btn-glass-subtle {
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .btn-glass-subtle span {
    display: inline-block;
    white-space: nowrap;
  }

  .btn-luxury-gradient {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    white-space: nowrap;
    gap: 0.4rem;
  }

  .hero-executive-board {
    padding: 1.75rem;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .section-heading {
    font-size: 1.95rem;
  }

  .cta-inner-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .grand-cta-banner {
    padding: 2.25rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 85px;
    padding-bottom: 2.5rem;
  }

  .hero-executive-board {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-lg);
  }

  .brand-crystal-emblem {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .emblem-card {
    width: 68px;
    height: 68px;
    padding: 6px;
  }

  .hero-main-title {
    font-size: 1.85rem;
  }

  .quick-circle-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .circle-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }

  .channels-glass-panel {
    padding: 1.25rem 1rem;
  }

  .panel-header h3 {
    font-size: 0.95rem;
  }

  .panel-header span {
    font-size: 0.7rem;
  }

  .badge-verified {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .channel-card {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
  }

  .channel-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .channel-meta .c-title {
    font-size: 0.85rem;
  }

  .metrics-counter-strip {
    flex-direction: row;
    gap: 0.5rem;
  }

  .metric-num {
    font-size: 1.05rem;
  }

  .metric-lbl {
    font-size: 0.62rem;
  }

  .grand-cta-banner {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .grand-cta-banner .cta-buttons {
    width: 100%;
  }

  .grand-cta-banner .btn-luxury-gradient,
  .grand-cta-banner .btn-glass-hollow {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

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

  .floating-whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
  }
}

@media (max-width: 380px) {
  .brand-crystal-emblem {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-main-title {
    font-size: 1.6rem;
  }

  .thali-floating-price {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .thali-floating-price .price-val {
    font-size: 1.15rem;
  }

  .thali-badge {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   SECTION 2: ROYAL GUJARATI THALI SHOWCASE (4 x2 gwalia.png) - ULTRA LUXURY
   ========================================================================== */
.bg-thali-section {
  position: relative;
  background: radial-gradient(ellipse at 50% 40%, rgba(212, 175, 55, 0.1) 0%, rgba(8, 10, 15, 0.98) 100%);
  padding: 6.5rem 0;
}

.thali-luxury-showcase-card {
  position: relative;
  background: rgba(14, 18, 28, 0.45);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(212, 175, 55, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  padding: 3.5rem;
  overflow: hidden;
}

.thali-card-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.thali-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.thali-visual-container {
  position: relative;
  perspective: 1000px;
}

.thali-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.25);
  background: #000;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.thali-img-frame:hover {
  transform: translateY(-6px) rotateY(-1deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 55px rgba(212, 175, 55, 0.4);
}

.thali-banner-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.thali-img-frame:hover .thali-banner-img {
  transform: scale(1.05);
}

.thali-shine-overlay {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: left 0.9s ease-in-out;
}

.thali-img-frame:hover .thali-shine-overlay {
  left: 160%;
}

.thali-floating-price {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(15px);
  border: 1.5px solid var(--gold-primary);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.4);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.thali-floating-price .price-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.thali-floating-price .price-sub {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4ade80;
  letter-spacing: 1px;
}

.thali-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, rgba(20, 24, 35, 0.92) 0%, rgba(10, 12, 18, 0.96) 100%);
  backdrop-filter: blur(15px);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
}

.thali-badge i {
  color: #fbbf24;
  font-size: 0.95rem;
}

.thali-details-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.thali-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.gold-pill-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-glass-bright);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px var(--gold-glow);
}

.chef-special-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.thali-main-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}

.thali-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.thali-desc strong {
  color: var(--gold-light);
  font-weight: 700;
}

.thali-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.5rem 0;
}

.thali-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition: var(--transition);
}

.thali-pill-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--border-glass-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-glow);
}

.thali-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.thali-pill-txt {
  display: flex;
  flex-direction: column;
}

.thali-pill-txt strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.thali-pill-txt span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

.thali-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.thali-pill-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass-subtle);
}

.thali-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

/* ==========================================================================
   SECTION 3: LIVE INSTAGRAM FEEDS & SOCIAL COMMUNITY
   ========================================================================== */
.ig-live-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.15), rgba(240, 148, 51, 0.15));
  border: 1px solid rgba(225, 48, 108, 0.35);
  color: #ff5f9e;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.ig-feed-card {
  background: rgba(18, 22, 32, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.ig-feed-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(225, 48, 108, 0.25);
}

.ig-card-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #000;
}

.ig-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ig-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.ig-feed-card:hover .ig-media-overlay {
  opacity: 1;
}

.ig-center-icon {
  font-size: 2.75rem;
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  margin-bottom: 1rem;
}

.ig-stats-bar {
  display: flex;
  gap: 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.ig-card-footer {
  padding: 1.25rem;
  background: rgba(10, 13, 20, 0.8);
}

.ig-user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ig-micro-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  object-fit: contain;
  background: #000;
  padding: 2px;
}

.ig-user-badge strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  display: block;
}

.ig-user-badge p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 2px;
}

/* Responsive updates for Thali and IG */
@media (max-width: 992px) {
  .thali-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 640px) {
  .thali-luxury-showcase-card {
    padding: 1.75rem 1.25rem;
  }

  .thali-showcase-grid {
    gap: 2rem;
  }

  .thali-img-frame {
    border-radius: var(--radius-md);
  }

  .thali-banner-img {
    max-height: 280px;
  }

  .thali-floating-price {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
  }

  .thali-floating-price .price-val {
    font-size: 1.15rem;
  }

  .thali-floating-price .price-sub {
    font-size: 0.58rem;
  }

  .thali-badge {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  .thali-badge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .gold-pill-luxury {
    font-size: 0.68rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
  }

  .thali-main-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .thali-items-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .thali-pill-item {
    padding: 0.7rem 0.85rem;
    gap: 0.65rem;
  }

  .thali-action-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .thali-action-row .btn-luxury-gradient,
  .thali-action-row .btn-glass-hollow {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .ig-feed-grid {
    grid-template-columns: 1fr;
  }
}