/* ========================================
   SHRI SANGEETHAS - Main Stylesheet
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #D4451F;
  --primary-dark:  #B03518;
  --primary-light: #F26038;
  --secondary:     #F5A623;
  --secondary-dark:#D4891A;
  --dark:          #180A00;
  --dark-2:        #2C1500;
  --dark-3:        #3D2210;
  --light:         #FFF8F0;
  --light-2:       #FFEDE0;
  --light-3:       #FFD9B8;
  --text:          #4A3728;
  --text-muted:    #8A7065;
  --white:         #FFFFFF;
  --border:        #E8D5C4;
  --shadow:        0 4px 24px rgba(26,10,0,0.08);
  --shadow-lg:     0 12px 48px rgba(26,10,0,0.15);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Open Sans', system-ui, sans-serif;
  --container:     1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(212,69,31,0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

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

.text-white { color: var(--white) !important; }
.text-white .section-tag { color: var(--secondary); background: rgba(245,166,35,0.15); }
.text-white .section-title { color: var(--white); }
.text-white .section-subtitle { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,69,31,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(212,69,31,0.45);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 42px; font-size: 17px; }

/* ===== HEADER / NAVIGATION ===== */
.header .container {
  max-width: 1200px;
  width: 100%;
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  transition: var(--transition);
}

.header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
  line-height: 1.1;
}
.logo-since {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

/* Nav */
.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary);
  background: rgba(245,166,35,0.08);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--primary);
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: url('../images/hero.png') center / cover no-repeat;
}

/* Two-column grid — image left, text right */
.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
  min-height: 100vh;
  padding-top: 76px;
}

/* Hero image column */
.hero-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-img-col img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.5));
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title span { color: var(--secondary); display: block; }

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Hero decorative visual — sits in the right column of the grid */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-circle-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  overflow: visible;
}

.hero-circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, rgba(212,69,31,0.08) 60%, transparent 100%);
  border: 1px solid rgba(245,166,35,0.15);
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.7; }
}

.hero-center {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, rgba(212,69,31,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  border: 2px solid rgba(245,166,35,0.2);
}

/* Orbit wrapper: sits at the circle center, rotates to carry the card around */
.orbit-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

.orbit-a { animation: orbit-a 14s linear infinite; }
.orbit-b { animation: orbit-b 14s linear infinite; }
.orbit-c { animation: orbit-c 14s linear infinite; }

@keyframes orbit-a {
  from { transform: rotate(-90deg) translateX(240px); }
  to   { transform: rotate(270deg) translateX(240px); }
}
@keyframes orbit-b {
  from { transform: rotate(30deg)  translateX(240px); }
  to   { transform: rotate(390deg) translateX(240px); }
}
@keyframes orbit-c {
  from { transform: rotate(150deg) translateX(240px); }
  to   { transform: rotate(510deg) translateX(240px); }
}

/* Float card: counter-rotates so text always stays upright */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.orbit-a .hero-float-card { animation: counter-a 14s linear infinite; }
.orbit-b .hero-float-card { animation: counter-b 14s linear infinite; }
.orbit-c .hero-float-card { animation: counter-c 14s linear infinite; }

@keyframes counter-a {
  from { transform: translate(-50%, -50%) rotate(90deg);   }
  to   { transform: translate(-50%, -50%) rotate(-270deg); }
}
@keyframes counter-b {
  from { transform: translate(-50%, -50%) rotate(-30deg);  }
  to   { transform: translate(-50%, -50%) rotate(-390deg); }
}
@keyframes counter-c {
  from { transform: translate(-50%, -50%) rotate(-150deg); }
  to   { transform: translate(-50%, -50%) rotate(-510deg); }
}

.hero-float-card .card-icon { font-size: 24px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 24px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-item {
  background: transparent;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-icon { font-size: 28px; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ===== CATEGORIES GALLERY ===== */
.categories-section {
  background: var(--light);
  padding: 72px 0;
}

.cat-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--dark);
  margin-bottom: 12px;
}

.cat-section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.cat-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cat-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cat-arrow:hover { background: var(--primary-dark); transform: scale(1.08); }

.cat-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex: 1;
  overflow: hidden;
  min-height: 320px;
}

.cat-item {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.cat-item.visible { display: flex; }

.cat-img-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}
.cat-item.cat-active .cat-img-wrap {
  width: 260px;
  height: 260px;
  border-color: var(--secondary);
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-2), var(--light-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.cat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
}
.cat-item.cat-active .cat-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.cat-desc {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 220px;
  line-height: 1.5;
}
.cat-item.cat-active .cat-desc { display: block; }

/* ===== MENU CAROUSEL ===== */
.mcar-section {
  background: var(--light);
  padding: 72px 0;
}

.mcar-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--dark);
  margin-bottom: 12px;
}

.mcar-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.mcar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-height: 280px;
}

.mcar-item {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.mcar-item.visible { display: flex; }

.mcar-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.mcar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mcar-item:hover .mcar-img-wrap img { transform: scale(1.05); }

.mcar-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-2), var(--light-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.mcar-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-body);
}

.mcar-price {
  font-size: 14px;
  color: var(--text-muted);
}

.mcar-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.mcar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.mcar-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

.mcar-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .mcar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mcar-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== DELIVERY BANNER ===== */
.dbanner-section {
  background: var(--light);
  padding: 80px 0 60px;
}

.dbanner-card {
  background: #C0241A;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: visible;
  min-height: 260px;
}

.dbanner-bubble {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #C0241A;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.dbanner-bubble img { width: 100%; height: 100%; object-fit: cover; }

.dbanner-left {
  padding: 48px 32px 48px 52px;
}

.dbanner-heading {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.dbanner-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 300px;
}

.dbanner-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.dbanner-btn {
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

.dbanner-btn-swiggy {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.dbanner-btn-swiggy:hover { background: var(--white); color: #C0241A; }

.dbanner-btn-zomato {
  background: #E8420F;
  color: var(--white);
  border: 2px solid #E8420F;
  font-style: italic;
}
.dbanner-btn-zomato:hover { background: #c0380d; border-color: #c0380d; }

.dbanner-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  height: 100%;
}
.dbanner-right img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .dbanner-card { grid-template-columns: 1fr; }
  .dbanner-right { display: none; }
  .dbanner-left { padding: 48px 28px 36px; }
  .dbanner-bubble { width: 120px; height: 120px; top: -55px; }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }

.about-img-frame {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge-text { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.about-content { padding: 20px 0; }
.about-content .section-subtitle { margin-bottom: 28px; }

.about-list { margin-bottom: 36px; }
.about-list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  align-items: flex-start;
}
.about-list-item:last-child { border-bottom: none; }
.about-check {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== MENU HIGHLIGHTS ===== */
.menu-section { background: var(--white); }

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.menu-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-tab:hover { color: var(--primary); border-color: var(--primary); }
.menu-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }

.menu-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}

.menu-card-veg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #2E7D32;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card-veg::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #2E7D32;
  border-radius: 50%;
}

.menu-card-body { padding: 16px; }
.menu-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.menu-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.menu-card-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-full-table { width: 100%; border-collapse: collapse; }
.menu-full-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.menu-full-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.menu-full-table tr:hover td { background: var(--light); }
.menu-full-table .price-col {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

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

/* ===== FEATURES / WHY US ===== */
.features-section {
  background: var(--white);
  padding: 72px 0;
}

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

.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  transform: translateZ(0);
}

.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-thumb img { transform: scale(1.07); }

.feature-body { flex: 1; }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.feature-desc {
  font-size: 14px;
  color: #7A5C4A;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-thumb { width: 72px; height: 72px; }
}

/* ===== CROWD FAVOURITES ===== */
.cf-section {
  background: #F5E6D8;
  padding: 72px 0 56px;
}

.cf-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 28px;
}

.cf-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.cf-tab {
  padding: 10px 36px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.cf-tab:first-child { border-radius: 6px 0 0 6px; }
.cf-tab:last-child  { border-radius: 0 6px 6px 0; }
.cf-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.cf-tab:not(.active):hover {
  background: var(--light-2);
  color: var(--primary);
}

.cf-panel { display: none; }
.cf-panel.active { display: block; }

.cf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-height: 280px;
}

.cf-item {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.cf-item.visible { display: flex; }

.cf-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateZ(0);
}
.cf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.cf-item:hover .cf-img-wrap img { transform: scale(1.05); }

.cf-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-2), var(--light-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.cf-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-body);
}

.cf-price {
  font-size: 14px;
  color: var(--text-muted);
}

.cf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(74,55,40,0.25);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.cf-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

@media (max-width: 900px) { .cf-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .cf-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== BANQUET HALLS ===== */
.halls-section {
  background: var(--light);
  padding: 72px 0;
}

.halls-main-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--dark);
  margin-bottom: 14px;
}

.halls-main-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 44px;
}

.halls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.hall-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hall-card-img {
  height: 220px;
  overflow: hidden;
  transform: translateZ(0);
}
.hall-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hall-card:hover .hall-card-img img { transform: scale(1.05); }

.hall-card-body {
  background: #E8A898;
  padding: 28px 24px;
  text-align: center;
}

.hall-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.hall-card-desc {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 20px;
  opacity: 0.75;
}

.hall-enquire-btn {
  display: inline-block;
  padding: 10px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.hall-enquire-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Catering full-width card */
.catering-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}
.catering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catering-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  text-align: center;
}
.catering-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.catering-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .halls-grid { grid-template-columns: 1fr; }
  .catering-card { height: 240px; }
  .catering-overlay { padding: 24px; }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 40px 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  transition: transform 0.5s ease;
}

.service-card:nth-child(1) .service-card-bg {
  background: linear-gradient(135deg, #2C1500 0%, #5C3A1E 50%, #3D2210 100%);
}
.service-card:nth-child(2) .service-card-bg {
  background: linear-gradient(135deg, #1A1200 0%, #4A3800 50%, #2E2A0A 100%);
}

.service-card:hover .service-card-bg { transform: scale(1.05); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}

.service-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.service-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== MILESTONES / TIMELINE ===== */
.timeline-section {
  background: var(--light);
  overflow: hidden;
}

.milestone-heading {
  text-align: center;
  padding: 56px 24px 36px;
}

.milestone-heading h2,
.milestone-heading h4 {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.milestone-img-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.milestone-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.milestone-display {
  padding: 40px 0 16px;
}

.milestone-panel {
  display: none;
  align-items: flex-start;
  gap: 32px;
}

.milestone-panel.active { display: flex; }

.milestone-panel-year {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  min-width: 160px;
  flex-shrink: 0;
}

.milestone-panel-body {
  border-left: 3px solid var(--border);
  padding-left: 28px;
  padding-top: 6px;
}

.milestone-panel-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.milestone-panel-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.milestone-tabs {
  display: flex;
  border-top: 1px solid var(--border);
  margin-bottom: 48px;
}

.milestone-tab-btn {
  flex: 1;
  padding: 18px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-body);
}

.milestone-tab-btn:hover { color: var(--primary); }

.milestone-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #FDF5EE;
}

.testimonials-main-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}

.testimonials-main-sub {
  font-size: 16px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover { transform: none; }

.testimonial-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateZ(0);
  flex-shrink: 0;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
}

.testimonial-text {
  font-size: 15px;
  color: #3D2210;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.testimonial-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto 12px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.testimonial-stars span { color: var(--primary); font-size: 18px; }

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.author-title { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== DELIVERY SECTION ===== */
.delivery-section { background: var(--light); }

.delivery-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-apps {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.delivery-badge:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.delivery-badge .badge-icon { font-size: 40px; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(212,69,31,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(46,125,50,0.08);
  border: 1px solid #2E7D32;
  border-radius: var(--radius);
  color: #2E7D32;
  font-weight: 600;
  margin-top: 16px;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  height: 300px;
  background:
    linear-gradient(135deg, var(--light-2) 0%, var(--light-3) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  border: 2px dashed var(--border);
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.map-placeholder .map-icon { font-size: 48px; }

/* ===== GALLERY ===== */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.08); }

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

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

.gallery-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

/* ===== BRANCHES ===== */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.branch-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.branch-main .branch-card-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.branch-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.branch-card-body { padding: 24px; }

.branch-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.branch-detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.branch-detail-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.branch-detail a { color: var(--primary); font-weight: 600; }
.branch-detail a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE HERO ===== */
.about-hero {
  position: relative;
  min-height: 520px;
  background: url('../images/aboutus/bg-1.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  display: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 80px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  text-align: right;
  max-width: 520px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
  .about-hero { min-height: 320px; }
  .about-hero-inner { justify-content: flex-start; }
  .about-hero-title { text-align: left; font-size: 28px; }
}

/* ===== PDF FLIPBOOK ===== */
.flipbook-section {
  background-color: #FDF5EE;
  background-image: radial-gradient(circle, #D4451F22 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 72px 0 56px;
}

.flipbook-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.flipbook-wrap {
  position: relative;
  flex: 1;
  max-width: 900px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flipbook {
  width: 100%;
}

#flipbook img {
  width: 100%;
  height: auto;
  display: block;
}

.flip-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 0;
  color: #7A5C4A;
  font-size: 15px;
}

.flip-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.flip-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,69,31,0.4);
}
.flip-arrow-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

.flipbook-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

#flipPageInfo {
  font-size: 14px;
  color: #7A5C4A;
  font-weight: 600;
}

.flip-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: #7A5C4A;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.flip-download-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Override PageFlip container styles */
.flipbook-section .section-title { color: var(--dark); }
.flipbook-section .section-subtitle { color: #7A5C4A; }
.flipbook-section .section-tag { color: var(--primary); background: rgba(212,69,31,0.08); }

@media (max-width: 640px) {
  .flip-arrow-btn { width: 36px; height: 36px; font-size: 14px; }
  .flipbook-stage { gap: 10px; }
}

/* ===== MENU PAGE HERO ===== */
.menu-hero {
  position: relative;
  min-height: 500px;
  background: url('../images/menu/bg.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.menu-hero-overlay {
  display: none;
}

.menu-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 80px;
}

.menu-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  text-align: right;
  max-width: 520px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
  .menu-hero { min-height: 320px; }
  .menu-hero-inner { justify-content: flex-start; }
  .menu-hero-title { text-align: left; font-size: 28px; }
}

/* ===== CATERING / SERVICES PAGE HERO ===== */
.catering-hero {
  position: relative;
  min-height: 520px;
  background: url('../images/catering/bg-1.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.catering-hero-overlay {
  display: none;
}

.catering-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-top: 80px;
}

.catering-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  text-align: right;
  max-width: 520px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
  .catering-hero { min-height: 320px; }
  .catering-hero-inner { justify-content: flex-start; }
  .catering-hero-title { text-align: left; font-size: 28px; }
}

/* ===== GALLERY PAGE HERO ===== */
.gallery-hero {
  position: relative;
  min-height: 520px;
  background: url('../images/gallery/bg.webp') center center / cover no-repeat, var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

@media (max-width: 640px) {
  .gallery-hero { min-height: 320px; }
}

/* ===== BRANCHES PAGE HERO ===== */
.branches-hero {
  position: relative;
  min-height: 520px;
  background: url('../images/branches/bg.webp') center center / cover no-repeat, var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.branches-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

@media (max-width: 640px) {
  .branches-hero { min-height: 320px; }
}

/* ===== BRANCH DETAIL CARDS ===== */
.branch-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.branch-detail-reverse {
  direction: rtl;
}
.branch-detail-reverse > * {
  direction: ltr;
}

/* 3-image gallery — 1 full-width top + 2 side-by-side bottom */
.branch-gallery-3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.branch-gallery-top {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
}
.branch-gallery-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.branch-gallery-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 180px;
}
.branch-gallery-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* 2-image gallery — side by side */
.branch-gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 280px;
}
.branch-gallery-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 900px) {
  .branch-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .branch-detail-reverse { direction: ltr; }
  .branch-gallery-top { height: 200px; }
  .branch-gallery-bottom { height: 140px; }
  .branch-gallery-2 { height: 200px; }
}

@media (max-width: 480px) {
  .branch-gallery-top { height: 160px; }
  .branch-gallery-bottom { height: 110px; }
  .branch-gallery-2 { height: 160px; }
}

/* ===== BANQUET PAGE HERO ===== */
.banquet-hero {
  position: relative;
  min-height: 520px;
  background: url('../images/banquet/bg.webp') center center / cover no-repeat, var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banquet-hero-overlay {
  display: none;
}

.banquet-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

@media (max-width: 640px) {
  .banquet-hero { min-height: 320px; }
}

/* ===== BEYOND THE PLATE ===== */
.beyond-section {
  background: #FDF5EE;
  padding: 80px 0;
}

.beyond-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.beyond-col-left {
  padding-top: 40px;
}

.beyond-img-1 {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  display: block;
}

.beyond-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.beyond-img-2 {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  display: block;
}

.beyond-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.beyond-desc {
  font-size: 15px;
  color: #5A3E2B;
  line-height: 1.85;
}

@media (max-width: 860px) {
  .beyond-inner { grid-template-columns: 1fr; gap: 24px; }
  .beyond-col-left { padding-top: 0; }
  .beyond-img-1 { height: 320px; }
  .beyond-img-2 { height: 240px; }
}

/* ===== ANIMATED COUNTER ===== */
.acounter-section {
  background: var(--primary);
  padding: 64px 0;
}

.acounter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.acounter-blob {
  background: var(--white);
  border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%;
  width: 200px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.acounter-blob:hover { transform: translateY(-6px) scale(1.03); }

.acounter-icon {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.75;
  margin-bottom: 4px;
}

.acounter-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.acounter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .acounter-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .acounter-blob { width: 160px; height: 170px; }
  .acounter-num { font-size: 28px; }
}
@media (max-width: 420px) {
  .acounter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .acounter-blob { width: 140px; height: 150px; }
}

/* ===== VERTICAL TIMELINE ===== */
.vtl-section {
  background: #FDF5EE;
  padding: 80px 0;
}

.vtl-track {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Central vertical spine */
.vtl-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--primary) 5%, var(--primary) 95%, transparent);
  transform: translateX(-50%);
}

/* Each row */
.vtl-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

/* Card — shared */
.vtl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.vtl-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(212,69,31,0.14);
  transform: translateY(-3px);
}

/* Left item: card on left col, dot in middle, spacer right */
.vtl-left .vtl-card    { grid-column: 1; text-align: right; }
.vtl-left .vtl-dot-wrap{ grid-column: 2; }
.vtl-left .vtl-spacer  { grid-column: 3; }

/* Right item: spacer left, dot in middle, card on right */
.vtl-right .vtl-spacer  { grid-column: 1; }
.vtl-right .vtl-dot-wrap{ grid-column: 2; }
.vtl-right .vtl-card    { grid-column: 3; }

/* Dot */
.vtl-dot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.vtl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #FDF5EE;
  box-shadow: 0 0 0 3px var(--primary);
  flex-shrink: 0;
}

/* Icon circle */
.vtl-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 12px;
}
.vtl-left .vtl-icon-wrap { margin-left: auto; }

/* Year tag */
.vtl-year-tag {
  display: inline-block;
  background: rgba(212,69,31,0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.vtl-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.vtl-desc {
  font-size: 14px;
  color: #7A5C4A;
  line-height: 1.7;
}

/* Mobile: single column */
@media (max-width: 640px) {
  .vtl-track::before { left: 20px; }
  .vtl-item,
  .vtl-left .vtl-card,
  .vtl-right .vtl-card { grid-column: 1; }
  .vtl-item {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto;
    gap: 0 16px;
    align-items: start;
  }
  .vtl-left .vtl-dot-wrap,
  .vtl-right .vtl-dot-wrap { grid-column: 1; grid-row: 1; justify-content: center; padding-top: 4px; }
  .vtl-left .vtl-card,
  .vtl-right .vtl-card { grid-column: 2; grid-row: 1; text-align: left; }
  .vtl-left .vtl-icon-wrap { margin-left: 0; }
  .vtl-spacer { display: none; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(245,166,35,0.15) 0%, transparent 55%),
    linear-gradient(160deg, #180A00 0%, #2C1500 100%);
  padding-bottom: 56px;
  padding-top: 120px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.page-hero-breadcrumb a { color: var(--secondary); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
.footer-main {
  background: #E8946A;
  padding: 60px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
  gap: 40px;
}

/* Brand column */
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(44,21,0,0.75);
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--dark); transform: translateY(-2px); }

/* Column headings */
.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

/* Quick links list */
.footer-list { list-style: none; }
.footer-list li {
  margin-bottom: 10px;
}
.footer-list li a {
  font-size: 14px;
  color: rgba(44,21,0,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-list li a::before {
  content: '›';
  font-size: 18px;
  line-height: 1;
  color: var(--dark);
}
.footer-list li a:hover { color: var(--dark); padding-left: 4px; }

/* Working hours */
.footer-hours-text {
  font-size: 14px;
  color: rgba(44,21,0,0.75);
  line-height: 1.7;
}

/* Contact list */
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(44,21,0,0.75);
  line-height: 1.6;
}
.footer-ci {
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 14px;
}
.footer-contact-list li a {
  color: rgba(44,21,0,0.75);
  transition: var(--transition);
}
.footer-contact-list li a:hover { color: var(--dark); }

/* Bottom bar */
.footer-bottom {
  background: #8B1A1A;
  padding: 14px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.footer-credit {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-credit:hover { color: var(--secondary); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1EBE5C;
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== SECTION DIVIDERS ===== */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { min-height: 320px; background-size: cover; background-position: center; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
  .hero-visual { display: none; }
  .hero-inner { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .milestone-panel { flex-direction: column; gap: 16px; }
  .milestone-panel-year { font-size: 48px; min-width: unset; }
  .milestone-tabs { flex-wrap: wrap; }
  .milestone-tab-btn { flex: 0 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header .container { max-width: 100%; width: 100%; }
  .section { padding: 56px 0; }
  .nav { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--white); padding: 24px; box-shadow: var(--shadow-lg); max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { color: var(--text) !important; padding: 12px 16px; border-radius: var(--radius); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 16px; background: var(--light); }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 24px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .menu-tabs { gap: 6px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero { min-height: 300px; background-size: cover; background-position: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .delivery-apps { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  .milestone-heading { padding: 32px 16px 20px; }
  .milestone-img-wrap img { height: 220px; }
  .container { padding: 0 16px; }
}

/* ===== HALL CARDS (Services page) ===== */
.hall-grid, .hall-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.hall-grid-reverse { grid-template-columns: 1.2fr 1fr; }

@media (max-width: 768px) {
  .hall-grid, .hall-grid-reverse {
    grid-template-columns: 1fr;
  }
  .hall-grid .hall-visual,
  .hall-grid-reverse .hall-visual {
    min-height: 180px;
    order: -1;
  }

  /* About responsive override */
  .about-grid { grid-template-columns: 1fr !important; }
}

/* ===== PRINT STYLE ===== */
@media print {
  .header, .whatsapp-float, .scroll-indicator { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
}
