/* ==========================================================================
   Namaste India Restaurant - Main Stylesheet
   Theme: Logo-Derived Authentic Indian Palette
   Brand Orange (#F47A00), Deep Saffron (#E85D04), Warm Red (#B5231B),
   Dark Maroon (#711B16), Warm Cream (#FFF8ED), Soft Beige (#F7E8D0)
   Typography: Marcellus (Headings) + Outfit (Body & UI)
   Adhering to WCAG 2.2 AA, responsive typography & brand color system
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Variables)
   -------------------------------------------------------------------------- */
:root {
  /* Exact Logo-Derived Color System (Extracted from Brand Logo) */
  --brand-orange: #E25102;        /* Logo Saffron Orange Field */
  --brand-orange-light: #F5700A;  /* Radiant Saffron Highlight */
  --gold-halo: #FDC362;           /* Logo Mascot Sunlight / Halo Amber */
  --skyline-red: #BA1E0F;         /* Logo Indian Monuments Heritage Red */
  --dark-maroon: #7B1511;         /* Logo Deep Crimson Base */
  --dark-maroon-deep: #400C09;    /* Royal Deepest Heritage Maroon */
  
  --warm-cream: #FAF6F0;          /* Clean Warm Ivory / Cream */
  --warm-cream-alt: #FFF4E5;      /* Subtle Saffron Warm Tint */
  --white: #FFFFFF;               /* Pure Crisp White */
  
  --charcoal: #221C18;            /* Deep Warm Espresso Charcoal */
  --muted-grey: #665C54;          /* Warm Muted Neutral Copy */
  --light-grey: #F5EFE6;          /* Soft Warm Neutral */
  --border-cream: #ECDCC9;        /* Warm Saffron Border */
  --gold-tint: rgba(226, 81, 2, 0.08); /* Saffron Orange tint */
  --gold-border: rgba(226, 81, 2, 0.22);
  
  --whatsapp-green: #25D366;      /* Official WhatsApp */
  --whatsapp-dark: #1EBE5D;

  /* Typography: Marcellus + Outfit */
  --font-heading: 'Marcellus', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --section-padding-y: 5.5rem;
  --section-padding-sm-y: 3.75rem;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-pill: 50px;

  /* Elevation Shadows */
  --shadow-subtle: 0 4px 20px rgba(123, 21, 17, 0.06);
  --shadow-card: 0 10px 30px rgba(64, 12, 9, 0.08);
  --shadow-hover: 0 16px 36px rgba(226, 81, 2, 0.24);
  --shadow-header: 0 4px 22px rgba(64, 12, 9, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.68;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--dark-maroon);
  color: var(--warm-cream);
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: top var(--transition-fast);
  text-decoration: none;
  border: 1px solid var(--brand-orange);
}
.skip-link:focus {
  top: 20px;
  outline: 3px solid var(--brand-orange);
}

/* Headings with Marcellus */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--dark-maroon-deep);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 { font-size: calc(2.2rem + 1.2vw); }
h2 { font-size: calc(1.85rem + 0.8vw); }
h3 { font-size: calc(1.4rem + 0.4vw); }

p {
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-weight: 400;
}

.text-muted-custom {
  color: var(--muted-grey) !important;
}

/* Links */
a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover, a:focus-visible {
  color: var(--skyline-red);
}

/* Accessible Focus Outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Bootstrap Color Overrides */
.text-warning {
  color: var(--brand-orange) !important;
}
.text-danger {
  color: var(--skyline-red) !important;
}

/* Section Header Shared Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--warm-cream-alt);
  color: var(--brand-orange);
  border: 1px solid var(--gold-border);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 0.42rem 1.15rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 0.85rem;
}

.section-title {
  position: relative;
  margin-bottom: 1rem;
  color: var(--dark-maroon-deep);
}

.section-divider {
  width: 65px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--brand-orange), var(--gold-halo));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.section-divider.start {
  margin-left: 0;
  margin-right: auto;
}

.section-subtitle {
  color: var(--muted-grey);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn-primary-brand {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
  border: 2px solid var(--brand-orange);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.85rem;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(226, 81, 2, 0.35);
}
.btn-primary-brand:hover,
.btn-primary-brand:focus {
  background: linear-gradient(135deg, var(--skyline-red) 0%, var(--brand-orange) 100%);
  border-color: var(--skyline-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(186, 30, 15, 0.42);
}

.btn-secondary-brand {
  background: var(--dark-maroon);
  border: 2px solid var(--dark-maroon);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.85rem;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(123, 21, 17, 0.2);
}
.btn-secondary-brand:hover,
.btn-secondary-brand:focus {
  background: var(--dark-maroon-deep);
  border-color: var(--dark-maroon-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(64, 12, 9, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  border: 2px solid var(--whatsapp-green);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline-warm {
  background: var(--white);
  border: 1.5px solid var(--border-cream);
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  min-height: 44px;
}
.btn-outline-warm:hover,
.btn-outline-warm:focus {
  background: var(--warm-cream-alt);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. Top Contact Bar (Dark Maroon matching logo base)
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--dark-maroon-deep);
  color: var(--warm-cream);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(226, 81, 2, 0.35);
  letter-spacing: 0.02em;
}
.top-bar a {
  color: var(--warm-cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}
.top-bar a:hover {
  color: var(--gold-halo);
}
.top-bar i {
  color: var(--gold-halo);
}
.top-bar .separator {
  color: rgba(250, 246, 240, 0.3);
  margin: 0 0.5rem;
}

/* --------------------------------------------------------------------------
   5. Sticky Header & Logo
   -------------------------------------------------------------------------- */
.navbar-custom {
  background-color: var(--white);
  padding: 0.85rem 0;
  transition: all var(--transition-normal);
  border-bottom: 2px solid var(--border-cream);
  z-index: 1030;
}
.navbar-custom.scrolled {
  box-shadow: var(--shadow-header);
  padding: 0.55rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

/* Responsive Logo Constraints & Clean Presentation */
.brand-logo-img {
  height: 56px;
  width: auto;
  max-width: 230px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(226, 81, 2, 0.2);
  transition: all var(--transition-fast);
}
.brand-logo-img:hover {
  box-shadow: 0 6px 18px rgba(226, 81, 2, 0.32);
  transform: scale(1.02);
}

@media (max-width: 991.98px) {
  .brand-logo-img {
    height: 48px;
    max-width: 190px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo-img {
    height: 42px;
    max-width: 160px;
  }
}

/* Nav Links */
.navbar-custom .nav-link {
  color: var(--dark-maroon-deep);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.5rem 0.95rem !important;
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-orange), var(--gold-halo));
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--brand-orange);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

/* Offcanvas Menu */
.offcanvas-custom {
  background-color: var(--warm-cream);
  border-left: 2px solid var(--border-cream);
}
.offcanvas-custom .offcanvas-header {
  border-bottom: 1px solid var(--border-cream);
  background-color: var(--white);
}
.offcanvas-custom .nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.75rem 0 !important;
  color: var(--dark-maroon-deep);
  border-bottom: 1px solid rgba(123, 21, 17, 0.08);
}
.offcanvas-custom .nav-link:hover,
.offcanvas-custom .nav-link.active {
  color: var(--brand-orange);
  padding-left: 0.5rem !important;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(253, 195, 98, 0.16) 0%, rgba(226, 81, 2, 0.05) 50%, var(--warm-cream) 100%);
  padding: 4.8rem 0 5.8rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(226, 81, 2, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-headline {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 400;
  color: var(--dark-maroon-deep);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-size: 1.16rem;
  color: #4A4A4A;
  margin-bottom: 2rem;
  max-width: 540px;
  font-weight: 400;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--white);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.hero-image-wrapper:hover img {
  transform: scale(1.02);
}
.hero-badge-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 4px 16px rgba(64, 12, 9, 0.14);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-maroon-deep);
  border: 1px solid var(--gold-border);
}
.hero-badge-tag i {
  color: var(--brand-orange);
}

/* Quick Actions Group */
.quick-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

/* --------------------------------------------------------------------------
   7. Trust Highlights
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-cream);
  padding: 2.4rem 0;
  box-shadow: 0 4px 16px rgba(64, 12, 9, 0.03);
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}
.trust-card:hover {
  background-color: var(--warm-cream-alt);
  transform: translateY(-2px);
}
.trust-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: rgba(253, 195, 98, 0.2);
  color: var(--brand-orange);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.trust-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark-maroon-deep);
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}
.trust-sub {
  font-size: 0.85rem;
  color: var(--muted-grey);
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--warm-cream-alt);
}
.about-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}
.brand-commitments-badge {
  background-color: var(--warm-cream-alt);
  border: 1.5px dashed var(--brand-orange);
  padding: 0.9rem 1.4rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  color: var(--dark-maroon-deep);
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   9. Cuisine & Menu Preview
   -------------------------------------------------------------------------- */
.menu-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--warm-cream);
}
.menu-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-cream);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-orange);
}
.menu-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.menu-card:hover .menu-card-img-wrap img {
  transform: scale(1.06);
}
.menu-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.menu-card-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark-maroon-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.menu-card-text {
  font-size: 0.94rem;
  color: var(--muted-grey);
  margin-bottom: 0;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   10. Meet Chef Akshay Powar
   -------------------------------------------------------------------------- */
.chef-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
  position: relative;
}
.chef-card {
  background: var(--warm-cream-alt);
  border: 1px solid var(--border-cream);
  border-radius: var(--border-radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-subtle);
}
.chef-img-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 4px solid var(--white);
}
.chef-img-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}
.chef-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--dark-maroon-deep);
  border-left: 4px solid var(--brand-orange);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.chef-highlights-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chef-highlights-list li {
  background: var(--white);
  border: 1px solid var(--border-cream);
  padding: 0.4rem 0.95rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-maroon-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.chef-highlights-list li i {
  color: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   11. Catering Services
   -------------------------------------------------------------------------- */
.catering-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-cream-alt) 100%);
  border-top: 1px solid var(--border-cream);
  border-bottom: 1px solid var(--border-cream);
}
.catering-category-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
}
.catering-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-hover);
}
.catering-cat-icon {
  width: 58px;
  height: 58px;
  background: rgba(253, 195, 98, 0.2);
  color: var(--brand-orange);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.service-area-banner {
  background: var(--dark-maroon-deep);
  color: var(--warm-cream);
  padding: 1.35rem 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  margin: 2.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(64, 12, 9, 0.25);
  border: 1px solid rgba(253, 195, 98, 0.35);
}

/* 3-Step Process */
.step-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: var(--border-radius-md);
  padding: 1.8rem;
  position: relative;
  text-align: center;
  height: 100%;
}
.step-number {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(226, 81, 2, 0.32);
}

/* --------------------------------------------------------------------------
   12. Why Choose Namaste India
   -------------------------------------------------------------------------- */
.why-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
}
.why-card {
  padding: 2.2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-cream);
  background: var(--white);
  transition: all var(--transition-normal);
  height: 100%;
}
.why-card:hover {
  background: var(--warm-cream-alt);
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-icon {
  font-size: 2.2rem;
  color: var(--brand-orange);
  margin-bottom: 1rem;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   13. Food & Atmosphere Gallery
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--warm-cream);
}
.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--white);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(64, 12, 9, 0.94) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0.9;
  transition: opacity var(--transition-normal);
}
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   14. More Than a Restaurant
   -------------------------------------------------------------------------- */
.community-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
}

/* --------------------------------------------------------------------------
   15. Testimonials (Clean Architecture Structure)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--warm-cream);
}
.testimonial-card {
  background: var(--white);
  border: 1px dashed var(--border-cream);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial-icon {
  font-size: 2.2rem;
  color: var(--brand-orange);
  opacity: 0.6;
  margin-bottom: 1rem;
}
.testimonial-notice {
  font-style: italic;
  color: var(--muted-grey);
  font-size: 1.05rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. Frequently Asked Questions (Accordion)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
}
.faq-accordion .accordion-item {
  border: 1px solid var(--border-cream);
  border-radius: var(--border-radius-sm) !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.12rem;
  color: var(--charcoal);
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  letter-spacing: 0.02em;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--warm-cream-alt);
  color: var(--brand-orange);
}
.faq-accordion .accordion-button::after {
  background-size: 1.1rem;
}
.faq-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   17. Contact & Forms
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(180deg, var(--warm-cream) 0%, #FFFFFF 100%);
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-cream);
  padding: 2.4rem;
  box-shadow: var(--shadow-subtle);
  height: 100%;
}
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(253, 195, 98, 0.2);
  color: var(--brand-orange);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.contact-detail-row h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted-grey);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-detail-row p, .contact-detail-row a {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--charcoal);
}

/* Forms Card & Nav Tabs */
.form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-cream);
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
}
.form-nav-pills {
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--border-cream);
  padding-bottom: 0.5rem;
}
.form-nav-pills .nav-link {
  font-weight: 600;
  color: var(--muted-grey);
  border-radius: var(--border-radius-pill);
  padding: 0.6rem 1.4rem;
  transition: all var(--transition-fast);
}
.form-nav-pills .nav-link.active {
  background-color: var(--brand-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(226, 81, 2, 0.32);
}

.form-label {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--border-cream);
  border-radius: var(--border-radius-sm);
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(226, 81, 2, 0.18);
}

/* Developer Form Alert */
.dev-alert-notice {
  background-color: var(--warm-cream-alt);
  border-left: 4px solid var(--brand-orange);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--dark-maroon-deep);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   18. Social Media Section
   -------------------------------------------------------------------------- */
.social-section {
  padding: 2.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-cream);
  text-align: center;
}
.social-icons-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-grey);
  color: var(--muted-grey);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   19. Dark Maroon Footer (Direct match with logo base)
   -------------------------------------------------------------------------- */
.footer-custom {
  background-color: var(--dark-maroon-deep);
  color: var(--warm-cream);
  padding: 4.8rem 0 2.2rem;
  border-top: 4px solid var(--brand-orange);
}
.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 230px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.footer-desc {
  color: rgba(250, 246, 240, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-heading {
  font-family: var(--font-heading);
  color: var(--gold-halo);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  position: relative;
  letter-spacing: 0.03em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: rgba(250, 246, 240, 0.82);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--gold-halo);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(250, 246, 240, 0.88);
  font-size: 0.95rem;
}
.footer-contact-item a {
  color: rgba(250, 246, 240, 0.88);
}
.footer-contact-item a:hover {
  color: var(--gold-halo);
}
.footer-contact-item i {
  color: var(--gold-halo);
}
.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.65);
  border-top: 1px solid rgba(250, 246, 240, 0.15);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   20. Fixed Mobile Action Bar (< 768px)
   -------------------------------------------------------------------------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-cream);
  box-shadow: 0 -4px 16px rgba(64, 12, 9, 0.14);
  z-index: 1040;
  padding: 0.5rem 0.75rem;
}
.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.25rem;
  border-radius: var(--border-radius-sm);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 48px;
  gap: 0.15rem;
  transition: all var(--transition-fast);
}
.mobile-action-btn i {
  font-size: 1.25rem;
}
.mobile-action-btn.action-call {
  color: var(--dark-maroon-deep);
}
.mobile-action-btn.action-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white) !important;
  border-radius: var(--border-radius-pill);
  flex: 1.3;
}
.mobile-action-btn.action-directions {
  color: var(--brand-orange);
}

@media (max-width: 767.98px) {
  .mobile-action-bar {
    display: flex;
    gap: 0.5rem;
  }
  body {
    padding-bottom: 68px; /* Offset for sticky mobile bottom bar */
  }
}

/* --------------------------------------------------------------------------
   21. Scroll To Top Button
   -------------------------------------------------------------------------- */
.btn-scroll-top {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(226, 81, 2, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1035;
}
.btn-scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.btn-scroll-top:hover {
  background: var(--skyline-red);
  transform: translateY(-3px);
  color: var(--white);
}

@media (min-width: 768px) {
  .btn-scroll-top {
    bottom: 25px;
  }
}

/* --------------------------------------------------------------------------
   22. Accessibility & Prefers-Reduced-Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
