/* ===========================
   ROOT & RESET
=========================== */
:root {
  --saffron: #c96432;
  --saffron-dark: #a04e22;
  --saffron-light: #fdf4ef;
  --saffron-pale: #f9e5da;
  --dark: #241208;
  --dark-2: #3a1e0e;
  --text: #4a2c18;
  --text-light: #8b5e42;
  --white: #ffffff;
  --gray-100: #faf7f4;
  --gray-200: #f2ede8;
  --red-zomato: #e23744;
  --orange-swiggy: #fc8019;
  --shadow-sm: 0 2px 8px rgba(201, 100, 50, 0.12);
  --shadow-md: 0 8px 32px rgba(201, 100, 50, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
.section-tag {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 100, 50, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 100, 50, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

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

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.navbar.scrolled .nav-logo .logo-name {
  color: var(--saffron-dark);
}

.navbar.scrolled .nav-logo .logo-sub {
  color: var(--text-light);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.8rem;
  line-height: 1;
}

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

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--saffron);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

/* ===========================
   HERO / BANNER SLIDER
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Slides --- */
.slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide.exit {
  opacity: 0;
  transform: scale(1.04);
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 5, 0, 0.78) 0%,
    rgba(10, 5, 0, 0.55) 50%,
    rgba(10, 5, 0, 0.3) 100%
  );
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1180px;
  padding: 0 24px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-tag {
  display: inline-block;
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: rgba(201, 100, 50, 0.12);
  border: 1px solid rgba(201, 100, 50, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 680px;
}

.highlight {
  color: var(--saffron);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* --- Arrows --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-arrow:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev {
  left: 32px;
}
.arrow-next {
  right: 32px;
}

/* --- Dots --- */
.slider-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--saffron);
  width: 32px;
  border-radius: 5px;
}

/* --- Progress Bar --- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 20;
}

.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  width: 0%;
  transition: width linear;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  height: 460px;
}

.about-img-box {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}

.img-main {
  width: 75%;
  height: 75%;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-lg);
}

.img-secondary {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: var(--saffron);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(201, 100, 50, 0.4);
  white-space: nowrap;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-item i {
  color: var(--saffron);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid rgba(201, 100, 50, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 100, 50, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--saffron-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--saffron-dark);
}

.service-card:hover .service-icon {
  background: var(--saffron);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.svc-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.svc-call {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 100, 50, 0.35);
}

.svc-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 100, 50, 0.5);
}

.svc-enquire {
  background: transparent;
  color: var(--saffron-dark);
  border: 1.5px solid var(--saffron);
}

.svc-enquire:hover {
  background: var(--saffron-pale);
  transform: translateY(-2px);
}

/* ===========================
   BRANDS
=========================== */
.brands {
  padding: 100px 0;
  background: var(--white);
}

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

.brand-card {
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.brand-card:hover {
  transform: translateY(-8px);
}

.brand-chinese {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 1px solid #ffcc80;
}

.brand-meal {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border: 1px solid #ce93d8;
}

.brand-biryani {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 1px solid #a5d6a7;
}

.brand-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.brand-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.brand-platforms {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.platform {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.swiggy {
  background: var(--orange-swiggy);
  color: var(--white);
}

.zomato {
  background: var(--red-zomato);
  color: var(--white);
}

.brand-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.brand-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.brand-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--dark);
}

/* ===========================
   WHY US
=========================== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(201, 100, 50, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(244, 162, 0, 0.06) 0%,
      transparent 50%
    );
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us .section-tag {
  background: rgba(201, 100, 50, 0.15);
  color: var(--saffron);
}

.why-us .section-title {
  color: var(--white);
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.promise-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.promise-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 100, 50, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 100, 50, 0.2);
}

.promise-icon i {
  color: var(--saffron);
  font-size: 1.1rem;
}

.promise-item h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.promise-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all var(--transition);
}

.why-stat-card:hover {
  background: rgba(201, 100, 50, 0.1);
  border-color: rgba(201, 100, 50, 0.3);
  transform: translateY(-4px);
}

.why-stat-card i {
  color: var(--saffron);
  font-size: 1.6rem;
}

.wstat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.wstat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  background: var(--gray-100);
}

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

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

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201, 100, 50, 0.08);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--saffron-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--saffron-dark);
  font-size: 1.1rem;
}

.contact-details h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.contact-details p,
.contact-details a {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--saffron-dark);
}

.contact-platforms {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid rgba(201, 100, 50, 0.08);
}

.contact-platforms p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.platform-badges {
  display: flex;
  gap: 10px;
}

.plat-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.swiggy-badge {
  background: var(--orange-swiggy);
}

.zomato-badge {
  background: var(--red-zomato);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e0d0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--gray-100);
  font-family: "Inter", sans-serif;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 100, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-size: 0.9rem;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .logo-name {
  color: var(--saffron);
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul,
.footer-brands ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--saffron);
}

.footer-brands li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-brands span {
  font-size: 1.1rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--saffron);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   HERO IMAGE
=========================== */
.hero-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===========================
   ABOUT IMAGES
=========================== */
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* ===========================
   SERVICE CARD THUMBNAIL
=========================== */
.service-thumb {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

/* ===========================
   BRAND CARD IMAGES
=========================== */
.brand-img-wrap {
  position: relative;
  width: calc(100% + 56px);
  margin: -36px -28px 24px;
  height: 200px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

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

.brand-card:hover .brand-img {
  transform: scale(1.06);
}

.brand-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* ===========================
   FOOD GALLERY
=========================== */
.gallery {
  padding: 100px 0;
  background: var(--gray-100);
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gf-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid #e0d4bc;
  background: var(--white);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.gf-btn:hover,
.gf-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 100, 50, 0.35);
}

/* Uniform equal-size grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item.gi-wide,
.gallery-item.gi-tall {
  grid-column: span 1;
  grid-row: span 1;
}

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

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

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 0, 0.75) 0%,
    rgba(20, 10, 0, 0.1) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.go-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.go-zoom {
  width: 36px;
  height: 36px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gallery-item:hover .go-zoom {
  transform: scale(1.15);
}

.go-label {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Hide filtered items */
.gallery-item.hidden {
  display: none;
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 0, 0.94);
  backdrop-filter: blur(8px);
}

/* Close */
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.lb-close:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  transform: rotate(90deg);
}

/* Arrows */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.lb-arrow:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}
.lb-prev {
  left: 24px;
}
.lb-next {
  right: 24px;
}

/* Stage */
.lb-stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 80px 100px 20px;
  overflow: hidden;
}

.lb-loader {
  position: absolute;
  font-size: 2rem;
  color: var(--saffron);
  display: none;
}
.lb-loader.show {
  display: block;
}

.lb-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: block;
  transform-origin: center center;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
  opacity: 0;
  cursor: zoom-in;
  user-select: none;
}
.lb-img.loaded {
  opacity: 1;
}
.lb-img.zoomed {
  cursor: zoom-out;
}

/* Footer */
.lb-footer {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  padding: 12px 100px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lb-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

.lb-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lb-ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.lb-ctrl-btn:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}

.lb-counter {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  min-width: 48px;
  text-align: center;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes rotateBorder {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .arrow-prev {
    left: 16px;
  }
  .arrow-next {
    right: 16px;
  }

  .services-grid,
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lb-stage {
    padding: 80px 70px 16px;
  }
  .lb-footer {
    padding: 10px 70px 20px;
  }
  .lb-prev {
    left: 14px;
  }
  .lb-next {
    right: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 18, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--white) !important;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .arrow-prev {
    left: 12px;
  }
  .arrow-next {
    right: 12px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .about-image-wrap {
    height: 320px;
  }

  .about-badge {
    right: 10px;
  }

  .services-grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lb-stage {
    padding: 70px 56px 12px;
  }
  .lb-footer {
    padding: 8px 56px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .lb-prev {
    left: 8px;
  }
  .lb-next {
    right: 8px;
  }

  .service-thumb {
    height: 160px;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   FLOATING ENQUIRE TAB
=========================== */
.float-enquire {
  position: fixed;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(50%);
  transform-origin: right center;
  z-index: 8000;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px 8px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: -4px 0 20px rgba(201, 100, 50, 0.45);
  text-decoration: none;
}

.float-enquire i {
  font-size: 0.95rem;
  transform: rotate(90deg);
}

.float-enquire:hover {
  right: -1px;
  background: linear-gradient(135deg, var(--saffron-dark), #833d18);
  box-shadow: -6px 0 28px rgba(201, 100, 50, 0.6);
  color: var(--white);
}

@media (max-width: 480px) {
  .float-enquire {
    padding: 9px 16px;
    font-size: 0.78rem;
  }
}

/* ===========================
   FLOATING CALL BUTTON
=========================== */
.float-whatsapp {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 8000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: float-pulse-wp 2s ease-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

@keyframes float-pulse-wp {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 480px) {
  .float-whatsapp {
    bottom: 84px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}

.float-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 8000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 24px rgba(201, 100, 50, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.float-call::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(201, 100, 50, 0.4);
  animation: float-pulse 2s ease-out infinite;
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(201, 100, 50, 0.65);
}

@keyframes float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .float-call {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }
}

/* ===========================
   ONLOAD POPUP
=========================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 8, 0, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.popup-visible {
  opacity: 1;
  pointer-events: all;
}

.popup-modal {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s ease;
  position: relative;
}

.popup-overlay.popup-visible .popup-modal {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--dark);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

/* Left panel */
.popup-left {
  background: linear-gradient(
    150deg,
    var(--saffron) 0%,
    var(--saffron-dark) 100%
  );
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.popup-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  margin-bottom: 6px;
}

.popup-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.popup-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

.popup-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.popup-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}

.popup-perks li i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Right panel */
.popup-right {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.popup-form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-field {
  width: 100%;
}

.popup-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2d8d0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--gray-100);
  outline: none;
  transition: all var(--transition);
}

.popup-input:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 100, 50, 0.1);
}

.popup-input::placeholder {
  color: var(--text-light);
  font-size: 0.88rem;
}

.popup-submit {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(201, 100, 50, 0.4);
  transition: all var(--transition);
  margin-top: 4px;
}

.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 100, 50, 0.5);
}

@media (max-width: 600px) {
  .popup-modal {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .popup-left {
    padding: 28px 24px 20px;
  }

  .popup-logo {
    width: 100px;
  }

  .popup-heading {
    font-size: 1.2rem;
  }

  .popup-right {
    padding: 24px;
  }

  .popup-close {
    background: rgba(0, 0, 0, 0.25);
  }
}
