/* 
  The Meal Factory - Premium Stylesheet
  Crafted by Award-winning Food Branding Experts
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Branding color palette */
  --primary: #111111;
  --primary-rgb: 17, 17, 17;
  --accent: #FF6B00;
  --accent-rgb: 255, 107, 0;
  --secondary: #FFA726;
  --bg: #FFFFFF;
  --bg-offset: #F9FAFB;
  --text: #222222;
  --text-muted: #666666;
  
  /* UI variables */
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px -4px rgba(17, 17, 17, 0.06), 0 4px 12px -2px rgba(17, 17, 17, 0.03);
  --shadow-lg: 0 20px 40px -8px rgba(17, 17, 17, 0.12), 0 8px 20px -4px rgba(17, 17, 17, 0.06);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --touch-target: 48px;
}

/* Base reset & Accessibility */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

/* Accessibility: focus ring customization */
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.5);
  outline-offset: 2px;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
}

/* Utility Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px auto;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* Badges */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Sticky Custom Header */
.top-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.top-header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.logo-icon span {
  color: #FFFFFF;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.logo-text span {
  color: var(--accent);
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 16px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent);
}

.cta-header-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: var(--accent);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cta-header-btn:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
}

/* Mobile Hambuger & Menu Drawer */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: flex-end;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(2) {
  width: 18px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 24px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 24px;
}

.mobile-nav-panel {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #FFFFFF;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-panel.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel a {
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  transition: var(--transition-smooth);
}

.mobile-nav-panel a:hover {
  color: var(--accent);
  padding-left: 8px;
}

/* SECTION 1: HERO */
.hero-sec {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.1) 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  padding: 60px 0 100px 0;
}

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

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

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 167, 38, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  width: 100%;
  max-width: 280px;
  height: 56px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 24px -6px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(255, 107, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #FFFFFF;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  width: 100%;
  max-width: 280px;
  height: 56px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Hero Visual & floating elements */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  max-width: 440px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 10px solid #FFFFFF;
  animation: rotateSlow 40s linear infinite;
}

.hero-float {
  position: absolute;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: none; /* Hide on extremely small screen widths to prevent overlaps */
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(17, 17, 17, 0.05);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

@media (min-width: 480px) {
  .hero-float {
    display: flex;
  }
}

.hero-float.f-1 {
  top: 10%;
  left: 0;
}

.hero-float.f-2 {
  bottom: 10%;
  right: 0;
  animation-delay: 1.5s;
}

.hero-float.f-3 {
  top: 60%;
  left: -20px;
  animation-delay: 0.7s;
}

.hero-float-icon {
  font-size: 1.5rem;
}

.hero-float-lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-float-lbl span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

/* SECTION 2: TRUST BAR */
.trust-bar-sec {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 60px 0;
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.trust-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.trust-icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
  border-radius: 12px;
  background-color: rgba(255, 107, 0, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.trust-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.trust-desc {
  color: #CCCCCC;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* SECTION 3: ABOUT US */
.about-sec {
  padding: 100px 0;
  background-color: #FFFFFF;
}

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

.about-visual {
  position: relative;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-bento-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.about-bento-img.tall {
  height: 280px;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 180px;
  text-align: center;
  animation: floatAnim 5s ease-in-out infinite alternate-reverse;
}

.about-experience-badge h4 {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.about-experience-badge p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 18px;
}

.about-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-check-box {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-check-box svg {
  width: 14px;
  height: 14px;
}

.about-highlight-text h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-highlight-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* SECTION 4 & 5: MENU HUB (with categories filtering) */
.menu-hub-sec {
  background-color: var(--bg-offset);
  padding: 100px 0;
}

.category-tags-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 4px 20px 4px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  margin-bottom: 40px;
}

.category-tags-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.category-tag-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.05);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  height: 48px; /* High Tap target */
}

.category-tag-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.category-tag-btn.active {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 8px 20px -6px rgba(255, 107, 0, 0.4);
}

.category-tag-emoji {
  font-size: 1.15rem;
}

/* SIGNATURE DISHES CARD GRID */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.dish-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.15);
}

.dish-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #ECEFF1;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.veg-indicator {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.veg-dot-icon {
  width: 12px;
  height: 12px;
  border: 2px solid #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.veg-dot-icon::after {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #2E7D32;
  border-radius: 50%;
}

.time-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(17, 17, 17, 0.85);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
}

.dish-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dish-meta-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: #FFA726;
}

.dish-meta-stars svg {
  width: 14px;
  height: 14px;
  fill: #FFA726;
}

.dish-serves {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.dish-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.dish-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.dish-checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed rgba(17, 17, 17, 0.08);
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.dish-add-btn {
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.dish-add-btn:hover {
  background-color: var(--accent);
  transform: scale(1.03);
}

/* SECTION 6: WHY CUSTOMERS LOVE US */
.features-sec {
  padding: 100px 0;
  background-color: var(--primary);
  color: #FFFFFF;
}

.features-sec .section-head h2 {
  color: #FFFFFF;
}

.features-sec .section-head p {
  color: #BBBBBB;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-premium-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition-smooth);
}

.feature-premium-card:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-4px);
}

.feature-premium-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-premium-icon svg {
  width: 24px;
  height: 24px;
}

.feature-premium-card h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.feature-premium-card p {
  color: #BBBBBB;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* SECTION 7: REVIEWS SLIDER */
.reviews-sec {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.reviews-carousel-outer {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  padding: 10px;
}

.review-luxury-card {
  background-color: var(--bg-offset);
  border: 1px solid rgba(17, 17, 17, 0.03);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.15);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.review-text {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.review-avatar-group {
  margin-bottom: 12px;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #FFA726;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFA726;
}

.review-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: var(--primary);
}

.review-author-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #DDD;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--accent);
  width: 24px;
  border-radius: 10px;
}

/* SECTION 8: ORDER CHANNELS (Conversion zone) */
.order-channels-sec {
  padding: 100px 0;
  background-color: var(--bg-offset);
  border-top: 1px solid rgba(17, 17, 17, 0.03);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.channel-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.channel-logo-container {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: var(--font-display);
}

.channel-card.swiggy .channel-logo-container {
  background-color: #FFFAEC;
  color: #FC8019;
  border: 1px solid rgba(252, 128, 25, 0.15);
}

.channel-card.zomato .channel-logo-container {
  background-color: #FFF2F4;
  color: #CB202D;
  border: 1px solid rgba(203, 32, 45, 0.15);
}

.channel-card.whatsapp-direct .channel-logo-container {
  background-color: #EEFBF3;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.channel-logo-container svg {
  width: 44px;
  height: 44px;
}

.channel-card h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.channel-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 260px;
  flex-grow: 1;
}

.channel-btn {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.channel-card.swiggy .channel-btn {
  background-color: #FC8019;
  color: #FFFFFF;
}

.channel-card.swiggy .channel-btn:hover {
  background-color: #e46e10;
}

.channel-card.zomato .channel-btn {
  background-color: #CB202D;
  color: #FFFFFF;
}

.channel-card.zomato .channel-btn:hover {
  background-color: #b51925;
}

.channel-card.whatsapp-direct .channel-btn {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.35);
}

.channel-card.whatsapp-direct .channel-btn:hover {
  background-color: #1ebd57;
}

/* SECTION 9: CONTACT & ENQUIRY FORM */
.contact-sec {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--bg-offset);
  border: 1px solid rgba(17, 17, 17, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-val h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.info-val p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Premium Form Styles */
.contact-form-box {
  background-color: var(--bg-offset);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid rgba(17, 17, 17, 0.03);
  box-shadow: var(--shadow-md);
}

.contact-form-box h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-sub-header {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background-color: #FFFFFF;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.form-textarea {
  height: 100px;
  padding: 12px 16px;
  resize: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
  outline: none;
}

.whatsapp-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  height: 56px;
  width: 100%;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.35);
  margin-top: 12px;
}

.whatsapp-submit-btn:hover {
  background-color: #1ebd57;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(37, 211, 102, 0.5);
}

.whatsapp-submit-btn svg {
  width: 24px;
  height: 24px;
}

/* SECTION 10: FAQ (Accordion) */
.faq-sec {
  padding: 100px 0;
  background-color: var(--bg-offset);
}

.faq-group {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.1);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: justify;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.faq-trigger span {
  flex-grow: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(0);
}

.faq-chevron svg {
  width: 100%;
  height: 100%;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content-inner {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Active accordion states */
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item[open] .faq-content {
  max-height: 200px; /* Expands smoothly */
}

/* SECTION 11: FOOTER */
.site-footer {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #BBBBBB;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

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

.footer-links a {
  color: #BBBBBB;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #BBBBBB;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-row p {
  margin: 0;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #888888;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

/* FLOATING COMFORT CALL BADGES (Sticky actions) */
.floating-order-btn {
  position: fixed;
  bottom: 80px; /* Offset for sticky mobile bottom navigation */
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 12px 24px -4px rgba(37, 211, 102, 0.4);
  z-index: 98;
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulsePulse 2s infinite alternate;
  text-decoration: none;
}

.floating-order-btn:hover {
  transform: scale(1.08) rotate(5deg);
  background-color: #1ebd57;
}

.floating-order-btn svg {
  width: 28px;
  height: 28px;
}

/* Floating Cart Summary badge (when direct order selected) */
.floating-cart-badge {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: var(--primary);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  display: none; /* Dynamic in JS */
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 98;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.floating-cart-badge:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.cart-count-lbl {
  background-color: var(--accent);
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* APP PANEL FOR STICKY BOTTOM MOBILE NAV */
.sticky-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 -4px 16px -2px rgba(17, 17, 17, 0.05);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-sans);
  height: var(--touch-target);
  width: 64px;
  transition: var(--transition-smooth);
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.bottom-nav-item:hover, .bottom-nav-item.active {
  color: var(--accent);
}

.bottom-nav-item:hover svg, .bottom-nav-item.active svg {
  transform: translateY(-1px);
}

/* KEYFRAMES ANIMATIONS */
@keyframes pulsePulse {
  0% {
    box-shadow: 0 4px 10px -2px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 12px 24px -4px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 767px) {
  body {
    padding-bottom: 64px; /* Offset to prevent bottom sticky nav from overlapping content */
  }
}

/* Responsive Breakpoints & View Enhancements */
@media (min-width: 768px) {
  /* Site Layout */
  .container {
    padding: 0 32px;
  }
  
  /* Desktop Header */
  .desktop-nav {
    display: flex;
    gap: 8px;
  }
  
  .cta-header-btn {
    display: inline-flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  /* Hero */
  .hero-sec {
    padding: 90px 0 140px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .btn-primary, .btn-secondary {
    width: auto;
    padding: 0 32px;
    max-width: initial;
  }
  
  .hero-main-img {
    max-width: 100%;
  }

  /* Stat count Grid */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* About Grid */
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  /* Category Hub Tag button adjustments */
  .category-tags-scroll {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  /* Signatures Cards Grid */
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Review slide card padding adjustments */
  .review-luxury-card {
    padding: 50px 48px;
  }

  /* Direct Delivery platforms Grid */
  .channels-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contacts Grid Layout */
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .form-group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }

  /* Footers Layout */
  .footer-columns {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  /* Disable sticky bottom items on large viewport */
  .sticky-bottom-nav {
    display: none;
  }
  
  .floating-order-btn {
    bottom: 30px;
  }
  
  .floating-cart-badge {
    bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Light high-contrast shadows override */
::selection {
  background-color: var(--accent);
  color: #FFFFFF;
}
