/* =========================================================
   EMINENCE COOKHOUSE - MAIN STYLESHEET
   ========================================================= */

/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #4b0d17;
  --primary-dark: #3a0a12;
  --accent: #e8cc9e;
  --accent-light: #e8d5b5;
  --bg-light: #faf9f8;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ========== UTILITY CLASSES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.section-subtitle { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.875rem; margin-bottom: 12px; display: inline-block; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; line-height: 1.2; }
.section-desc { color: var(--text-light); font-size: 1.1rem; line-height: 1.8; max-width: 700px; margin: 0 auto 40px; text-align: center; }

/* ========== HEADER & NAVIGATION ========== */
.ec-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #f3d8bd;
  backdrop-filter: blur(10px);
  padding: 30px 0;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.ec-header.scrolled { padding: 10px 0; box-shadow: var(--shadow-md); }
.ec-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 250px;
  position: relative;
}

.ec-logo {
  position: absolute;
  left: 45%;
  transform: translate(-0%, 30%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec-logo a {
  display: inline-flex; /* make <a> behave like a block flex item */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.logo-bg {
  background: #f6ece1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  box-shadow: 0 4px 20px rgba(79,0,31,0.9);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ec-header.scrolled .logo-bg { width: 90px; height: 90px; }
.logo-bg img { width: 80%; height: auto; }
.ec-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.ec-menu li { position: relative; }
.ec-menu a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}
.ec-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.ec-menu a:hover::after { width: 100%; }
.ec-menu a:hover { color: var(--accent); }
.mobile-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-size: 1.5rem;
  z-index: 15;
}

/* ========== HERO SECTION ========== */
/* REMOVE background-image from hero-banner */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* LCP IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* SINGLE overlay only */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,0,0,0.6);
  z-index: 1;
}

/* Content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-spacer {
  height: 8.5rem;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}
.hero-content h1 span { color: var(--accent); display: block; }
.hero-content > p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem,2vw,1.2rem);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(214,184,138,0.4);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-one {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(214,184,138,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(30px,5vw,80px);
  flex-wrap: wrap;
}
.hero-stats h3 {
  font-size: clamp(2rem,4vw,3rem);
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
/* ==============================================
   HERO SECTION MOBILE SPACING FIX
   ============================================== */
@media (max-width: 768px) {
  .hero-banner {
    padding-top: 0 !important; /* remove the unnecessary top space */
    padding-bottom: 60px !important; /* add nice breathing room at bottom */
    min-height: 100vh; /* ensures banner fills screen nicely */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-content {
    margin-top: 0 !important; /* ensure content starts right below header */
    padding-top: 0 !important;
    padding-bottom: 40px; /* ensures space above buttons */
  }

  .hero-buttons {
    margin-bottom: 30px; /* adds comfortable space before bottom edge */
  }
}
@media (max-width: 768px) {
  .hero-banner {
    margin-top: 90px; /* matches your header height */
  }
}

/* ========== OUR LEGACY SECTION (WITH FLOATING CARD) ========== */
.legacy-section {
  background: #fff;
  padding: 100px 20px;
}
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 60px;
}
.legacy-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}
.legacy-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
.legacy-stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.stat-card {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stat-card .icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.stat-card h3 {
  color: var(--primary);
  font-size: 1.6rem;
  font-family: var(--font-serif);
}
.stat-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Right Image */
.legacy-image-wrapper {
  position: relative;
}
.legacy-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Floating Card */
.floating-stat {
  position: absolute;
  bottom: -40px;
  left: -35px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 20px 25px;
  width: auto;
  min-width: 420px;
  text-align: left;
  animation: float 4s ease-in-out infinite;
}
.floating-stat .icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.floating-stat h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.floating-stat p {
  color: var(--text-light);
  font-size: 0.9rem;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 992px) {
  .floating-stat {
    position: static;
    animation: none;
    margin-top: 20px;
  }
  .legacy-grid {
    gap: 40px;
  }
  .legacy-stats {
    justify-content: center;
  }
}

/* ========== SERVICES, MENU, CHEF, GALLERY, CONTACT, FOOTER, RESPONSIVE, etc. ========== */

/* (Truncated for space — I will paste the rest in the next message so you get the entire file cleanly without cutoff.) */
/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--bg-light);
}
.service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card .icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.special-service-box {
  margin-top: 80px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.special-service-box .circle-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.special-service-box h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.special-btns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ========== MENU PREFERENCES ========== */
/* ========== MENU PREFERENCES SECTION (REFINED) ========== */
.menu-preferences {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.menu-preferences .section-subtitle {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.menu-preferences .section-title {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 15px;
}

.menu-preferences .section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 40px;
}

/* Cuisine Buttons */
.cuisine-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.cuisine-card {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #ddd;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cuisine-card:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}
.cuisine-card.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(75, 13, 23, 0.25);
}

/* Menu Display Box */
.menu-display {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 50px 40px;
  margin: 0 auto 60px;
  max-width: 1000px;
  transition: var(--transition);
}

.menu-display h3 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Category Layout */
.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align:left;
}

.menu-category h4 {
  color: #7a500a;
  font-weight: 700;
  font-family: var(--font-serif);
  margin-bottom: 2px;
  font-size: 1rem;
}

.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-category li {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.menu-category li:hover {
  color: var(--accent);
}

/* Special Request Box */
.special-request {
  background: #faf7f4;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.special-request .circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(214, 184, 138, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.6rem;
  margin: 0 auto 15px;
}
.special-request h3 {
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.special-request p {
  color: var(--text-dark);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.special-request .special-btn {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(214, 184, 138, 0.3);
}
.special-request .special-btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-display {
    padding: 40px 20px;
  }
  .menu-columns {
    grid-template-columns: 1fr 1fr;
  }
}
/* =========================================================
   MENU SECTION – MOBILE RESPONSIVE FIX
   ========================================================= */

/* Desktop & Tablet – keep multiple columns */
@media (min-width: 769px) {
  .menu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px 40px;
    text-align: center;
  }
}

/* Mobile View (≤768px) – stack items vertically, single column */
@media (max-width: 768px) {
  .menu-display {
    padding: 30px 20px;
  }

  .menu-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .menu-category li {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #704a0c;
    letter-spacing: 0.4px;
    line-height: 1.6;
    width: 100%;
  }

  .menu-display h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 25px;
  }

  /* Add breathing space for smaller screens */
  .menu-preferences {
    padding: 60px 15px;
  }
}


/* ========== CHEF SECTION (UPDATED DESIGN) ========== */
.chef-section {
  background: var(--primary);
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.chef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 60px;
}

.chef-text {
  color: rgba(255, 255, 255, 0.9);
}

.chef-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 25px;
}
.chef-text h2 span {
  color: var(--accent);
}

.chef-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1rem;
}

.chef-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

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

.feature .icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
  font-size: 1.5rem;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Chat Button */
.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(214, 184, 138, 0.3);
  transition: var(--transition);
  text-decoration: none;
}
.btn-chat:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* Right Side */
.chef-image-wrapper {
  position: relative;
  width: 100%;
}
.chef-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Floating Testimonial Card */
.chef-quote {
  position: absolute;
  bottom: -150px;
	left: -500px;
  left: 30px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}
.chef-quote i {
  color: var(--accent);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}
.chef-quote p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.6;
}
.chef-quote span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
  .chef-grid {
    gap: 40px;
  }
  .chef-quote {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}
/* ============================
   GALLERY SECTION
   ============================ */
.gallery-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  margin-bottom: 100px; /* ✅ keep spacing for desktop/tablet */
}

/* ✅ Remove bottom margin on mobile */
@media (max-width: 768px) {
  .gallery-section {
    margin-bottom: 0;
  }
}

.gallery-section .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #d4a94a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gallery-section .section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #4b0d17;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gallery-section .section-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ============================
   GALLERY CONTAINER
   ============================ */
.gallery-container {
  position: relative; /* ✅ keeps arrows inside */
  overflow: hidden;   /* hides horizontal overflow in mobile */
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  background: #fff;
}

/* ============================
   DESKTOP / TABLET VIEW
   ============================ */
.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 images per row */
  gap: 25px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

/* ============================
   DEFAULT — HIDE ARROWS ON DESKTOP/TABLET
   ============================ */
.gallery-btn {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* ============================
   MOBILE SLIDER MODE (≤768px)
   ============================ */
@media (max-width: 768px) {
  .gallery-wrapper {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
    scroll-behavior: smooth;
  }

  .gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* ✅ Show arrows only on mobile */
  .gallery-btn {
    display: flex;
    visibility: visible;
    opacity: 1;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 99; /* ✅ stays above gallery content */
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }

  /* Optional subtle button shadow */
  .gallery-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
}

/* ============================
   ENTRY ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-section .section-title,
.gallery-section .section-desc {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.gallery-section .section-title {
  animation-delay: 0.2s;
}

.gallery-section .section-desc {
  animation-delay: 0.4s;
}

/* ============================
   SPACING FIX FOR FOOTER
   ============================ */
footer,
.ec-footer {
  position: relative;
  z-index: 2;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 50px 200px;
  background: var(--bg-light);
}
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.contact-section {
  padding: 50px 200px;
}
.quote-form,
.contact-info {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 184, 138, 0.2);
}
.char-limit {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
}
.btn-submit {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 40px;
  align-self: flex-start;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--accent-light);
}
.contact-info h3 {
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
}
.map-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrapper iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* ========== FOOTER SECTION ========== */
.ec-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 20px 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}
.footer-brand {
  text-align: left;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-logo h3 {
  color: #fff;
}
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.social-icon {
  font-size: 1.3rem;
  color: #fff;
  transition: var(--transition);
}
.social-icon:hover {
  color: var(--accent);
}
.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
  margin-bottom: 15px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 40px 0;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.builder-link {
  display: inline-block;
  margin-top: 5px;
  color: var(--accent);
}
.builder-link:hover {
  text-decoration: underline;
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  padding: 10px 12px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  .ec-nav {
    flex-direction: column;
    padding: 0 40px;
  }
  .ec-logo {
    position: static;
    transform: none;
    margin: 20px 0;
  }
  .ec-menu {
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    background: #f6ece1;
    width: 100%;
    padding: 20px 0;
  }
  .ec-menu.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .service-card, .stat-card { padding: 30px 15px; }
  .section-title { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
}

/* =========================================================
   EXTENDED RESPONSIVE STYLES
   Covers: 
   - Small Phones (max-width: 480px)
   - Large Phones (481px–767px)
   - Tablets (768px–1024px)
   ========================================================= */

/* ---------- SMALL PHONES (below 480px) ---------- */
@media only screen and (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 15px; }
  .section-padding { padding: 60px 0; }
  .hero-banner { min-height: 80vh; background-position: center; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .legacy-grid, .chef-grid, .gallery-grid, .contact-grid { grid-template-columns: 1fr !important; gap: 30px; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 1rem; }
  .btn, .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  footer, .footer-container { text-align: center; }
}

/* ---------- LARGE PHONES & SMALL TABLETS (481px–767px) ---------- */
@media only screen and (min-width: 481px) and (max-width: 767px) {
  html { font-size: 16px; }
  .container { padding: 0 25px; }
  .section-padding { padding: 80px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .legacy-grid, .chef-grid, .gallery-grid { grid-template-columns: 1fr; }
  .menu-columns { grid-template-columns: 1fr 1fr; }
  .btn { font-size: 1rem; padding: 14px 28px; }
  .footer-container { grid-template-columns: 1fr 1fr; text-align: center; }
}

/* ---------- TABLETS (768px–1024px) ---------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  html { font-size: 17px; }
  .container { max-width: 90%; }
  .section-padding { padding: 90px 0; }
  .hero-content h1 { font-size: 2.5rem; }
  .legacy-grid, .chef-grid, .gallery-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .menu-columns { grid-template-columns: 1fr 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr 1fr; }
}
/* =========================================================
   MOBILE RESPONSIVE FIX - FULL-WIDTH VIEWPORT CORRECTION
   ========================================================= */

@media only screen and (max-width: 480px) {

  /* Prevent content overflow */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Make container and all grids fit viewport */
  .container,
  .legacy-grid,
  .chef-grid,
  .gallery-grid,
  .contact-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* Fix hero banner & inner padding */
  .hero-banner {
    background-position: center;
    background-size: cover;
    min-height: 90vh;
  }

  .hero-content {
    padding: 0 20px;
  }

  /* Fix navigation logo centering */
  .ec-nav {
    padding: 0 20px;
  }
  .ec-logo {
    position: relative;
    left: auto;
    transform: none;
    margin: 10px auto;
  }
  .logo-bg {
    width: 100px;
    height: 100px;
  }

  /* Ensure floating elements don’t push layout */
  .floating-stat {
    position: static !important;
    width: 100% !important;
    min-width: auto !important;
    margin: 20px 0 0;
  }

  /* Make hero buttons stack neatly */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Scale text for smaller view */
  .section-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .section-desc {
    font-size: 1rem;
    text-align: center;
  }

  /* Prevent any unintentional horizontal overflow */
  * {
    max-width: 100%;
  }
}
/* =========================================================
   CONTACT SECTION MOBILE FIX
   ========================================================= */
@media only screen and (max-width: 1024px) {
  .contact-section {
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 25px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .contact-section {
    padding: 30px 15px;
  }

  .contact-header h2,
  .contact-header p {
    text-align: center;
  }

  .quote-form,
  .contact-info {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
    align-self: center;
  }
}
/* =========================================================
   FINAL FIX - CONTACT FORM + INFO CENTER ALIGNMENT
   ========================================================= */

/* Tablets and below */
@media only screen and (max-width: 1024px) {
  .contact-section {
    padding: 40px 20px; /* smaller horizontal padding */
  }

  .contact-grid {
    display: flex;              /* switch grid → flex for proper centering */
    flex-direction: column;     /* stack vertically */
    align-items: center;        /* centers all child boxes */
    justify-content: center;
    gap: 30px;
  }

  .quote-form,
  .contact-info {
    width: 100%;
    max-width: 600px;           /* same width for both */
    margin: 0 auto;             /* equal side margins */
    box-sizing: border-box;
  }
}

/* Phones */
@media only screen and (max-width: 480px) {
  .contact-section {
    padding: 30px 15px;
  }

  .quote-form,
  .contact-info {
    width: 100%;
    max-width: 95%;             /* equal margin on both sides */
    margin: 0 auto;
  }

  .contact-info ul {
    padding: 0 10px;
  }
}
/* =========================================================
   FIX: LONG EMAIL / TEXT WRAP INSIDE CONTACT BOX
   ========================================================= */

.contact-info {
  word-wrap: break-word;       /* Old standard */
  overflow-wrap: break-word;   /* Modern standard */
  word-break: break-word;      /* Ensures break even without spaces */
}

.contact-info a,
.contact-info span,
.contact-info li {
  word-wrap: break-word;
  overflow-wrap: anywhere;     /* Allows flexible wrapping for long text */
  white-space: normal;         /* Prevents text from staying in one line */
}

.contact-info li {
  align-items: flex-start;     /* Keeps icon aligned to top */
}

/* Optional - tweak icon spacing for better alignment */
.contact-icon {
  margin-top: 3px;
  flex-shrink: 0;              /* Prevents icon from shrinking when text wraps */
}
/* =========================================================
   HEADER MOBILE FIX – LOGO ALIGNMENT & SIZE ADJUSTMENT
   ========================================================= */

@media only screen and (max-width: 768px) {
  /* Reduce header padding */
  .ec-header {
    padding: 10px 15px;
    box-shadow: none; /* optional: remove header shadow */
  }

  /* Adjust navigation layout */
  .ec-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  /* Move logo to left side */
  .ec-logo {
    position: relative;
    left: 0;
    transform: none;
    margin: 0;
    order: 1;
  }

  /* Adjust logo background */
  .logo-bg {
    width: 80px;
    height: 80px;
    box-shadow: none;       /* Remove shadow */
    background: #f5ede2; /* Optional: remove circular background */
  }

  .logo-bg img {
    width: 100%;
    height: auto;
  }

  /* Move mobile toggle (hamburger) to right */
  .mobile-toggle {
    display: block;
    order: 2;
    position: relative;
    right: 0;
    margin-left: auto;
    z-index: 15;
  }

  /* Adjust hero section spacing so header doesn't overlap */
  .hero-banner {
    padding-top: 120px; /* creates breathing space below header */
  }
}
/* =========================================================
   MOBILE MENU FIX - SLIDE DOWN WITH LOGO FIXED LEFT
   ========================================================= */

@media only screen and (max-width: 768px) {

  /* Keep header structure clean */
  .ec-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #efd9c0;
    box-shadow: none;
  }

  /* Logo always stays on the left */
  .ec-logo {
    position: relative;
    left: 0;
    transform: none;
    margin: 0;
    z-index: 1001;
  }

  .logo-bg {
    width: 80px;
    height: 80px;
    background:#f5ede2;;
    box-shadow: none;
  }

  /* Burger icon always on right */
  .mobile-toggle {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
  }

  /* Hide menu initially */
  .ec-menu {
    position: absolute;
    top: 100%; /* just below header */
    left: 0;
    width: 100%;
    background: #f6ece1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    gap: 15px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  /* When menu is active (JS toggles .show) */
  .ec-menu.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Menu items */
  .ec-menu li {
    width: 100%;
    text-align: left;
  }

  .ec-menu a {
    display: block;
    width: 100%;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(75, 13, 23, 0.1);
    transition: color 0.3s ease;
  }

  .ec-menu a:hover {
    color: var(--accent);
  }

  /* Optional: subtle slide-in animation for each item */
  .ec-menu.show li {
    animation: menuFadeIn 0.4s ease forwards;
  }
  .ec-menu.show li:nth-child(1) { animation-delay: 0.05s; }
  .ec-menu.show li:nth-child(2) { animation-delay: 0.1s; }
  .ec-menu.show li:nth-child(3) { animation-delay: 0.15s; }
  .ec-menu.show li:nth-child(4) { animation-delay: 0.2s; }
  .ec-menu.show li:nth-child(5) { animation-delay: 0.25s; }
  .ec-menu.show li:nth-child(6) { animation-delay: 0.3s; }

  @keyframes menuFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* =========================================================
   WORKING MOBILE MENU FIX – LOGO CENTERED HEADER
   ========================================================= */
@media only screen and (max-width: 768px) {

  /* --- Header --- */
  .ec-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #efd9c0;
    padding: 12px 18px;
    z-index: 9999;
  }

  .ec-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }

  /* --- Logo --- */
  .ec-logo {
    position: relative;
    left: 0;
    z-index: 1001;
  }

  .logo-bg {
    width: 75px;
    height: 70px;
    background: #f5ede2;;
    box-shadow: none;
  }

  .logo-bg img {
    width: 100%;
    height: auto;
  }

  /* --- Burger --- */
  .mobile-toggle {
    z-index: 1002;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 1.4rem;
    cursor: pointer;
  }

  /* --- Hide default menus --- */
  .ec-menu.left,
  .ec-menu.right {
    display: none;
  }

  /* --- Mobile Menu Container (merged visually) --- */
  .mobile-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #f6ece1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
    z-index: 9998;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    animation: slideDown 0.4s ease forwards;
  }

  .mobile-menu.show {
    display: flex;
  }


  /* --- Menu Items --- */
  .mobile-menu li {
    width: 100%;
    list-style: none;
  }

  .mobile-menu a {
    display: block;
    width: 100%;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(75, 13, 23, 0.1);
  }

  .mobile-menu a:hover {
    color: var(--accent);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-banner {
    margin-top: 90px;
  }
}


/*----WEDDING CARD SECTION---*/

.special-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Card styling */
.special-service-box {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon styling */
.circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

/* Buttons alignment */
.special-btns {
  margin-top: auto; /* Push buttons to bottom for equal visual balance */
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .special-services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HIDE MOBILE MENU ON DESKTOP / TABLET VIEW
   ========================================================= */
@media only screen and (min-width: 769px) {
  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
/* =========================================================
   CONTACT SECTION - EQUAL WIDTH + HEIGHT (DESKTOP & LAPTOP)
   ========================================================= */

@media only screen and (min-width: 992px) {
  .contact-section {
    padding: 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-light);
  }

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

  /* Equal width & height grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal width */
    align-items: stretch;           /* equal height */
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Contact cards */
  .quote-form,
  .contact-info {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    text-align: left;
    display: flex;           /* makes content stretch inside */
    flex-direction: column;
    justify-content: space-between;
  }

  /* Form height alignment fix */
  .quote-form form {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
  }

  /* Info list cleanup */
  .contact-info ul {
    padding-left: 0;
    margin: 0;
    flex: 1;
  }

  .contact-info li {
    list-style: none;
    margin-bottom: 15px;
  }
}
.elfsight-app [class*="elfsight-widget-credit"] {
  display: none !important;
}
   .widget-powered-by-labile { /* Replace with the actual class or ID */
        display: none !important; /* Use !important if needed to override existing styles */
    }
./* === Callback CTA Button === */
.callback-section {
  text-align: center;
  padding: 80px 0;
}
#callbackBtn {
  background: var(--accent, #e8cc9e);
  color: var(--primary, #4b0d17);
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(214,184,138,0.4);
  transition: var(--transition, all 0.3s ease);
}
#callbackBtn:hover {
  background: var(--accent-light, #f1dcb5);
  transform: translateY(-3px);
}

/* === Callback Popup === */
.callback-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 0.3s ease;
  position: relative;
}
.popup-content h3 {
  color: var(--primary, #4b0d17);
  margin-bottom: 10px;
}
.popup-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.popup-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}
.popup-content input:focus {
  border-color: var(--accent, #e8cc9e);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232,204,158,0.2);
}
.popup-content button {
  width: 100%;
  background: var(--accent, #e8cc9e);
  color: var(--primary, #4b0d17);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition, all 0.3s ease);
}
.popup-content button:hover {
  background: var(--accent-light, #f1dcb5);
}
.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  max-width: 36px;
  max-height: 36px;
  background: var(--accent, #e8cc9e);
  color: var(--primary, #4b0d17);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
  background: var(--accent-light, #f1dcb5);
}
@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================================================
   WHATSAPP FLOATING CHAT BUTTON
   ========================================================= */
/* === Floating WhatsApp Button (Left Side) === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px; /* ✅ moved from right to left */
  background-color: var(--accent, #e8cc9e);
  color: var(--primary, #4b0d17);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: floatPulse 2.5s infinite; /* optional subtle animation */
}

.whatsapp-float:hover {
  background-color: var(--accent-light, #f1dcb5);
  transform: translateY(-3px);
}

/* Optional pulse animation */
@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@media (max-width: 768px) {
  #callbackPopup {
    display: none !important;
  }
}

.success-message {
  animation: fadeIn 0.4s ease;
}

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

.success-message i {
  color: #28a745;
  margin-bottom: 10px;
}

.success-message h3 {
  font-size: 1.5rem;
  color: #222;
}

.success-message p {
  color: #555;
  font-size: 1rem;
}
/* ===============================
   CONTACT SECTION GRID LAYOUT
   =============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal widths */
  gap: 40px;
  align-items: start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Card styling */
.quote-form,
.contact-info {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: all 0.3s ease;
}

/* Subtle hover effect for modern feel */
.quote-form:hover,
.contact-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Headings */
.quote-form h3,
.contact-info h3 {
  margin-bottom: 20px;
  color: var(--heading-color, #4b0d17);
}

/* Responsive behavior (stack on smaller screens) */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .contact-grid > div {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .map-wrapper iframe {
    height: 100%;
    border-radius: 12px;
  }
}

/* ===============================
   BIG STATISTIC / ACHIEVEMENT TEXT
   =============================== */
.plates-stats {
  font-family: 'Playfair Display', serif; /* elegant headline font */
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem); /* responsive scaling */
  color: #4b0d17; /* your brand's deep red accent */
  text-align: center;
  line-height: 1.2;
  margin: 40px auto 20px;
  max-width: 900px;
  letter-spacing: 0.5px;
}

/* Optional subtle sub-glow or emphasis */
.plates-stats span {
  color: #d6a95a; /* gold accent tone */
  font-weight: 700;
}

/* ==============================
   SERVICE AREA – PANCHAYAT LIST
================================ */

.panchayat-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.panchayat-group {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.panchayat-group:hover {
  transform: translateY(-4px);
}

.panchayat-group h3 {
  font-size: 17px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8b1e3f;
}

.panchayat-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panchayat-group li {
  padding: 6px 0;
  font-size: 14.5px;
  color: #333;
  border-bottom: 1px dashed #eee;
}

.panchayat-group li:last-child {
  border-bottom: none;
}
/* ==============================
   SERVICE AREA – CARD DESIGN
================================ */

.service-area-section {
  padding: 80px 20px;
  background: #fafafa;
}

.service-area-section .section-desc {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  color: #555;
  line-height: 1.7;
}

.service-area-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.area-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8b1e3f; /* premium accent */
  border-radius: 18px 18px 0 0;
}

.area-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
}

.area-card h3 i {
  color: #8b1e3f;
  font-size: 20px;
}

.area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-card ul li {
  padding: 6px 0;
  font-size: 14.5px;
  color: #444;
  border-bottom: 1px dashed #e6e6e6;
}

.area-card ul li:last-child {
  border-bottom: none;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
/* =========================================
   WEDDING CATERING PAGE – HERO SPACING FIX
========================================= */

.page-wedding-catering .wedding-hero {
  padding-top: 170px;   /* clears fixed header */
  padding-bottom: 50px; /* tighter bottom spacing */
  min-height: auto;
}

@media (max-width: 768px) {
  .page-wedding-catering .wedding-hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
/* =========================================
   WEDDING CATERING PAGE – HERO OFFSET FIX
   (Centered Logo Safe)
========================================= */

.page-wedding-catering .wedding-hero {
  padding-top: 190px;   /* clears logo + nav */
  padding-bottom: 60px; /* tighter bottom */
  min-height: auto;
}

.page-wedding-catering .hero-content {
  margin-top: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .page-wedding-catering .wedding-hero {
    padding-top: 160px;
    padding-bottom: 45px;
  }
}

/*footer*/
.footer-nearby-locations {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.85;
}

.footer-location-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-location-links a {
  color: #cfcfcf;
  text-decoration: none;
}

.footer-location-links a:hover {
  color: #ffffff;
}

/* ================================
   404 Error Page Styling
================================ */

.error-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 200px;   /* Keeps content safely below header logo */
  padding-bottom: 120px;
  text-align: center;
  background-color: #fff;
}

.error-page .container {
  max-width: 680px;
  padding: 0 20px;
}

.error-page h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: #121212;
  font-weight: 600;
}

.error-page .error-lead {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #333;
}

.error-page p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #555;
  line-height: 1.65;
}

.error-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.error-page .btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}

/* ----------------
   Mobile Optimisation
------------------ */
@media (max-width: 768px) {
  .error-page {
    padding-top: 170px;
    padding-bottom: 90px;
  }

  .error-page h1 {
    font-size: 2.1rem;
  }

  .error-page .error-lead {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .error-page {
    padding-top: 150px;
  }
}

/* Outline button for secondary CTA */
.btn-outline {
  background: transparent;
  color: #121212;
  border: 2px solid #121212;
}

.btn-outline:hover {
  background: #121212;
  color: #ffffff;
}

/* ================================
   Mobile Adjustments
================================ */

@media (max-width: 768px) {
  .error-page {
    min-height: 60vh;
    padding: 40px 16px;
  }

  .error-page h1 {
    font-size: 2rem;
  }

  .error-page p {
    font-size: 1rem;
  }
}


/* small location highliting*/

.nearby-areas {
  padding: 40px 20px;
}

.nearby-areas-inner {
  max-width: 900px;
  margin: 0 auto;      /* centers block */
  text-align: center; /* centers text */
}

.nearby-areas p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.nearby-areas::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7a1e2d; /* match your brand */
  margin: 0 auto 15px;
}

/* Distance-based service warning */
.service-availability .not-available {
  color: #c62828;          /* professional red */
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
}
.service-availability .not-available::before {
  content: "⚠️ ";
  font-size: 1.1rem;
}
