/* ============================================================
   Maharaja Kathiyawadi Dhaba - style.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --crimson: #8B0000;
  --crimson-light: #A52020;
  --crimson-dark: #5C0000;
  --gold: #D4A017;
  --gold-light: #E8C040;
  --gold-dark: #B8860B;
  --bg-dark: #1A0A00;
  --bg-dark2: #2C1200;
  --bg-cream: #FFF8F0;
  --bg-cream2: #FFF0E0;
  --text-dark: #2C1A0E;
  --text-mid: #5C3D2E;
  --text-light: #F5E6D3;
  --text-muted: #A07060;
  --veg-green: #2E7D32;
  --whatsapp: #25D366;
  --shadow: 0 4px 20px rgba(139, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(139, 0, 0, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.gold-text { color: var(--gold); }

/* ---------- Section Base ---------- */
.section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-tag {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-tag.light { color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title.light { color: var(--text-light); }

.ornament {
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  /*border-radius: 50px;*/
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #3A1A00;
  border-color: var(--gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.btn-call {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-call:hover { background: var(--crimson-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,0,0,0.4); }
.btn-call.outline { background: transparent; color: var(--crimson); }
.btn-call.outline:hover { background: var(--crimson); color: #fff; }

.btn-zomato {
  background: #E23744;
  color: #fff;
  border-color: #E23744;
}
.btn-zomato:hover { background: #C02030; transform: translateY(-2px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 10, 0, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  transition: all var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #3A1A00 !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- SLIDER ---------- */
.slider-section { position: relative; margin-top: 70px; }

.slider-wrapper { position: relative; overflow: hidden; height: 90vh; min-height: 500px; }

.slider { display: flex; height: 100%; transition: none; }

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.slide.active img { transform: scale(1.05); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,0.75) 0%, rgba(139,0,0,0.4) 60%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 700px;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.slide.active .slide-content { opacity: 1; }

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: #3A1A00;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.slide-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(212, 160, 23, 0.85);
  color: #3A1A00;
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }

/* FAB in hero */
.fab-container {
  position: absolute;
  right: 20px; bottom: 80px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 20;
}

.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all var(--transition);
}
.fab:hover { transform: scale(1.15); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.fab-call { background: var(--crimson); color: #fff; }
.fab-whatsapp { background: var(--whatsapp); color: #fff; }

/* ---------- INFO BAR ---------- */
.info-bar {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  color: #fff;
  padding: 14px 0;
}

.info-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}
.info-item i { color: var(--gold); font-size: 1rem; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--bg-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-img {
  width: 100%; height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--veg-green);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--crimson);
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-item i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-item div { display: flex; flex-direction: column; }
.highlight-item strong { font-size: 0.95rem; color: var(--text-dark); }
.highlight-item span { font-size: 0.82rem; color: var(--text-muted); }

.about-timing {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-cream2);
  border: 1px solid rgba(212,160,23,0.3);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
}
.about-timing i { color: var(--gold); }

/* ---------- SERVICES ---------- */
.services-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark2) 100%);
  color: var(--text-light);
}

.services-section .section-title { color: var(--text-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 30px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.service-card.featured {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
}
.service-card.featured::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(139,0,0,0.4);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,230,211,0.8);
  margin-bottom: 20px;
}

.service-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

.services-note {
  text-align: center;
  color: rgba(245,230,211,0.7);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.services-note i { color: var(--gold); }


/* ---------- GALLERY ---------- */
.gallery-section { background: var(--bg-dark); }
.gallery-section .section-title { color: var(--text-light); }
.gallery-section .section-tag { color: var(--gold); }
.gallery-section .ornament { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) { aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(139,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.8rem; }
.gallery-overlay span { font-size: 0.9rem; font-weight: 600; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-content p {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 12px;
  font-family: 'Playfair Display', serif;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--crimson);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--crimson-light); transform: scale(1.1); }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(212,160,23,0.8);
  color: #3A1A00;
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ---------- VIDEO SECTION ---------- */
.video-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.video-bg {
  position: absolute; inset: 0;
}
.video-bg img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,0.85), rgba(139,0,0,0.6));
}

.video-container {
  position: relative;
  z-index: 2;
}

.video-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 40px;
}

.play-btn {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #3A1A00;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 0 rgba(212,160,23,0.5);
  animation: pulse 2s infinite;
  transition: all var(--transition);
}
.play-btn:hover { transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(212,160,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}

/* Video Popup */
.video-popup {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.video-popup.active { opacity: 1; pointer-events: all; }

.video-popup-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
}

.video-popup-close {
  position: absolute;
  top: -50px; right: 0;
  background: var(--crimson);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.video-popup-close:hover { background: var(--crimson-light); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---------- WHY US ---------- */
.why-section { background: var(--bg-cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-bottom-color: var(--gold); }

.why-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,0,0,0.3);
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark2) 100%);
}
.faq-section .section-title { color: var(--text-light); }
.faq-section .section-tag { color: var(--gold); }
.faq-section .ornament { color: var(--gold); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 18px; }

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,230,211,0.8);
}

/* ---------- CONTACT ---------- */
.contact-section { background: var(--bg-cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-text a {
  color: var(--crimson);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-text a:hover { color: var(--crimson-light); }

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-map {
  position: relative;
}

.contact-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--crimson);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.map-link:hover { gap: 12px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-dark); color: var(--text-light); }

.footer-top { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer-logo-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-logo-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,230,211,0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #3A1A00; transform: translateY(-3px); }

.footer-links h4, .footer-contact h4, .footer-order h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,160,23,0.3);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245,230,211,0.7);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(245,230,211,0.7);
  line-height: 1.5;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(245,230,211,0.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-order p {
  font-size: 0.88rem;
  color: rgba(245,230,211,0.7);
  margin-bottom: 16px;
}

.footer-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.2);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245,230,211,0.5);
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,230,211,0.5) !important;
}
.footer-note i { color: var(--veg-green); }
.footer-note i.fa-heart { color: var(--crimson-light); }

/* ---------- FLOATING BUTTONS ---------- */
.floating-buttons {
  position: fixed;
  bottom: 30px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all var(--transition);
  overflow: hidden;
}
.float-btn:hover { transform: translateX(-4px) scale(1.05); box-shadow: 0 6px 25px rgba(0,0,0,0.4); }
.float-btn i { font-size: 1.1rem; }

.float-call { background: var(--crimson); }
.float-wa { background: var(--whatsapp); }

.float-label {
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px; left: 24px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: #3A1A00;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-grid .gallery-item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Navbar */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(26,10,0,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 2px solid var(--gold);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-cta { text-align: center; }

  /* Slider */
  .slider-wrapper { height: 70vh; }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-buttons { flex-direction: column; align-items: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: 10px; right: 10px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(6) { grid-column: span 2; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Info bar */
  .info-bar-container { justify-content: flex-start; }
  .info-item { font-size: 0.8rem; }

  /* Floating buttons */
  .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .slider-wrapper { height: 60vh; }
  .slide-content h1 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .menu-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* SECTION BACKGROUND */
.menu-section {
    background: linear-gradient(to bottom, #f5e6cc, #efd8b2);
    padding: 60px 20px;
    font-family: 'Georgia', serif;
}

/* CATEGORY CARD */
.menu-category {
    background: #e8cfa9;
    padding: 30px 25px;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
}

/* CATEGORY HEADING */
.menu-category h3 {
    text-align: center;
    color: #b63b1c;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
}

.menu-category h3::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #b63b1c;
    display: block;
    margin: 10px auto 0;
}

/* MENU ITEM STRIP STYLE */
.menu-item {
    background: #f9f9f9;
    margin-bottom: 12px;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* PRICE STYLE */
.menu-item span:last-child {
    font-weight: bold;
    color: #222;
}

/* HOVER EFFECT */
.menu-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}