/* ==========================================================================
   V-DOSA (Venkateswara Loni Dosa) - Core Design System & Stylesheet
   Luxury South Indian Culinary Design Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --clr-gold: #E5A93C;
  --clr-gold-light: #F4C467;
  --clr-gold-dark: #C48722;
  --clr-gold-glow: rgba(229, 169, 60, 0.25);
  
  --clr-cream-butter: #FFF8EA;
  --clr-cream-light: #FAF6F0;
  
  --clr-green-chutney: #2E5A44;
  --clr-green-accent: #3E7B5D;
  --clr-green-glow: rgba(46, 90, 68, 0.3);
  
  /* Dark Atmosphere Backgrounds */
  --bg-dark-base: #0D0C0A;
  --bg-dark-surface: #151310;
  --bg-dark-card: #1C1914;
  --bg-dark-elevated: #26221C;
  
  /* Text Color Scales */
  --text-bright: #F7F4EF;
  --text-main: #E2DBD0;
  --text-muted: #A39B8E;
  --text-dark: #1A1815;
  
  /* Glassmorphism & Elevation */
  --glass-bg: rgba(21, 19, 16, 0.75);
  --glass-border: rgba(229, 169, 60, 0.15);
  --glass-border-hover: rgba(229, 169, 60, 0.4);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px rgba(229, 169, 60, 0.15);
  
  /* Typography Scale */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Spacing */
  --container-max: 1280px;
}

/* --------------------------------------------------------------------------
   2. Reset & Baseline Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark-base);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-dark-elevated);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-dark-base);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold-dark);
}

/* --------------------------------------------------------------------------
   3. Common Container & Layout Components
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-gold {
  color: var(--clr-gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, #E88C1F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(229, 169, 60, 0.35);
  color: #000;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  font-weight: 700;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--clr-gold);
  background: rgba(229, 169, 60, 0.08);
  color: var(--clr-gold-light);
  transform: translateY(-3px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 600;
  background: rgba(229, 169, 60, 0.12);
  color: var(--clr-gold-light);
  border: 1px solid rgba(229, 169, 60, 0.25);
  backdrop-filter: blur(8px);
}

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

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

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--clr-gold-light);
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem 0;
  background: radial-gradient(circle at 70% 30%, rgba(229, 169, 60, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(46, 90, 68, 0.12) 0%, transparent 50%),
              var(--bg-dark-base);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--clr-gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.35rem;
}

.hero-media {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border: 1px solid var(--glass-border);
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-wrapper:hover img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 169, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.floating-text h4 {
  font-size: 0.95rem;
  color: var(--text-bright);
  font-weight: 700;
}

.floating-text p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* --------------------------------------------------------------------------
   7. About Section
   -------------------------------------------------------------------------- */
.about {
  background: var(--bg-dark-surface);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
}

.about-main-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-overlay-card {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}

.about-overlay-card h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--clr-gold-light);
  line-height: 1;
}

.about-overlay-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(229, 169, 60, 0.12);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature-title {
  font-weight: 700;
  color: var(--text-bright);
  font-size: 0.95rem;
}

.about-feature-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   8. Signature Dishes (Bestsellers)
   -------------------------------------------------------------------------- */
.signature-dishes {
  position: relative;
  background: var(--bg-dark-base);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.dish-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.dish-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dish-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.dish-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--clr-gold);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.dish-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.dish-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-bright);
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-gold-light);
}

.dish-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dish-order-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.dish-order-btn:hover {
  color: #FFF;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Full Menu Explorer & Tabs
   -------------------------------------------------------------------------- */
.full-menu {
  background: var(--bg-dark-surface);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.menu-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.menu-tab-btn:hover {
  color: var(--text-bright);
  border-color: var(--clr-gold-dark);
}

.menu-tab-btn.active {
  background: var(--clr-gold);
  color: var(--text-dark);
  border-color: var(--clr-gold);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.menu-item-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.menu-item-card:hover {
  border-color: var(--glass-border-hover);
  background: var(--bg-dark-elevated);
}

.menu-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.menu-item-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-gold-light);
  margin-left: 1rem;
  flex-shrink: 0;
}

.menu-banner-box {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.1) 0%, rgba(46, 90, 68, 0.15) 100%);
  border: 1px dashed var(--clr-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.menu-banner-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.menu-banner-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   10. Why Choose Us (Special Features)
   -------------------------------------------------------------------------- */
.why-us {
  background: var(--bg-dark-base);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--glass-border);
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top right, rgba(229, 169, 60, 0.08), transparent 70%);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-gold);
}

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

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid rgba(229, 169, 60, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. Customer Reviews
   -------------------------------------------------------------------------- */
.reviews {
  background: var(--bg-dark-surface);
}

.reviews-rating-bar {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-gold-light);
  line-height: 1;
}

.score-details {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #FFC107;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.review-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-green-chutney) 100%);
  color: var(--text-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.reviewer-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
}

.review-date {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-pill {
  font-size: 0.725rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   12. Gallery Section
   -------------------------------------------------------------------------- */
.gallery {
  background: var(--bg-dark-base);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.gallery-caption {
  color: var(--text-bright);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   13. Visit Us / Map & Location
   -------------------------------------------------------------------------- */
.visit-us {
  background: var(--bg-dark-surface);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.visit-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229, 169, 60, 0.12);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

.map-wrapper {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1) invert(0.9) hue-rotate(180deg);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #080706;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0;
  line-height: 1.7;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--clr-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--clr-gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   15. Floating Action Buttons (WhatsApp & Back to Top)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-bounce);
  position: relative;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseGlow 2s infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.back-to-top {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border);
  color: var(--clr-gold-light);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: var(--text-dark);
  transform: translateY(-4px);
}
