/* ============================================================
   SHIV CATERERS v2 — Premium Stylesheet
   Pure Veg Catering | Pune, Maharashtra
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {

  /* ===== PRIMARY BRAND ===== */

  --wine:          #1E2A5A;
  --wine-deep:     #142045;
  --wine-mid:      #2E3F78;
  --wine-light:    #556B9A;

  /* ===== GOLD SYSTEM ===== */

  --gold:          #C6A15B;
  --gold-light:    #D9BC84;
  --gold-pale:     #EFE2C8;

  /* ===== WARM NEUTRALS ===== */

  --saffron:       #B88A52;

  --cream:         #FAF6EF;
  --cream-2:       #F1E7D6;
  --cream-3:       #DCCDB7;

  --ivory:         #FFFDFC;

  /* ===== SUPPORT COLORS ===== */

  --green:         #3B6B4D;

  /* ===== TYPOGRAPHY ===== */

  --text-dark:     #1F1C19;
  --text-mid:      #4A433C;
  --text-light:    #7B746D;

  /* ===== BASE ===== */

  --white:         #FFFFFF;

  /* ===== SHADOWS ===== */

  --shadow-xs:     0 1px 4px rgba(0,0,0,0.05);

  --shadow-sm:     0 2px 16px rgba(20,32,69,0.08);

  --shadow-md:     0 8px 34px rgba(20,32,69,0.12);

  --shadow-lg:     0 18px 64px rgba(20,32,69,0.16);

  /* ===== RADIUS ===== */

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;

  --t:      0.28s ease;

  /* ===== FONTS ===== */

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Manrope', 'Helvetica Neue', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* Type */
h1,h2,h3 { font-family: var(--font-h); line-height: 1.15; color: var(--wine-deep); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 700; }
p  { font-size: 0.92rem; line-height: 1.8; color: var(--text-mid); }

/* Layout */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }

/* Section labels */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after { content:''; width: 20px; height: 1px; background: currentColor; opacity: 0.5; }

.heading     { color: var(--wine-deep); margin-bottom: 0.75rem; }
.subheading  { font-size: 0.9rem; color: var(--text-light); max-width: 520px; line-height: 1.8; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .subheading { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 1.8rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid transparent; border-radius: 2px;
  cursor: pointer; transition: var(--t); white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--wine); color: var(--white); border-color: var(--wine); }
.btn-primary:hover { background:
linear-gradient(
135deg,
#142045 0%,
#1E2A5A 55%,
#2E3F78 100%
); border-color: var(--wine-deep); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: var(--white); }
.btn-wa {
  background: #2E6B57;
  color: var(--white);
  border-color: #2E6B57;
}

.btn-wa:hover {
  background: #245545;
  border-color: #245545;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46,107,87,0.28);
}

/* Icons */
.icon { display: inline-block; flex-shrink: 0; }
.icon svg { display: block; }

/* Veg badge */
.veg-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); border: 1.5px solid var(--green); border-radius: 2px; padding: 2px 7px;
}
.veg-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; display: flex; align-items: center;
  background: rgba(251,245,236,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-3);
  transition: box-shadow var(--t);
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo  { display: flex; align-items: center; gap: 0.7rem; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-mark svg { width: 38px; height: 38px; }
.logo-name {
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 600;
  color: var(--wine-deep); display: block; letter-spacing: 0.01em; line-height: 1.1;
}
.logo-sub  {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); display: block; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 0.05rem; }
.nav-links a {
  padding: 0.45rem 0.8rem; font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid); border-radius: var(--r-sm); transition: var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-cta {
  margin-left: 0.5rem;
  background: var(--wine) !important; color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.75rem !important; font-weight: 700 !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  border-radius: 2px !important; border: none !important;
  transition: var(--t) !important;
}
.nav-cta:hover { background: var(--wine-deep) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--wine-deep); display: block; transition: var(--t); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--ivory); border-bottom: 1px solid var(--cream-3);
  padding: 1.5rem 5%; gap: 0.1rem;
  box-shadow: var(--shadow-md); z-index: 999;
}
.nav-mobile a {
  display: block; padding: 0.7rem 1rem;
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  border-radius: var(--r-sm); transition: var(--t);
}
.nav-mobile a:hover, .nav-mobile a.active { background: var(--cream-2); color: var(--wine); }
.nav-mobile.open { display: flex; }
.nav-mobile-footer { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--cream-3); }

/* ── PAGE HERO ── */
.page-hero {
  margin-top: 70px; padding: 5rem 5% 4rem;
  background:
linear-gradient(
135deg,
#142045 0%,
#1E2A5A 55%,
#2E3F78 100%
); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(168,124,42,0.18) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,2.8rem); }
.page-hero p  { color: rgba(255,255,255,0.55); margin-top: 0.6rem; font-size: 0.88rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--t); }
.breadcrumb a:hover { color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar { border-bottom: 1px solid var(--cream-3); background: var(--white); }
.trust-inner {
  max-width: 1160px; margin: 0 auto; padding: 0.8rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; }
.trust-item svg { color: var(--green); width: 14px; height: 14px; }
.trust-sep { width: 1px; height: 14px; background: var(--cream-3); }

/* ── FLOATING WHATSAPP ── */
.call-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #142045;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20,32,69,0.28);
  z-index: 999;
  transition: all 0.28s ease;
}

.call-float:hover {
  transform: translateY(-4px) scale(1.05);
  background: #1E2A5A;
}

.call-float svg {
  width: 24px;
  height: 24px;
}
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: #22C55E;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(34,197,94,0.4);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 25px; height: 25px; fill: white; }

/* ── GALLERY ── */
.gallery-track-wrap { overflow: hidden; }
.gallery-track { display: flex; gap: 1.25rem; padding: 0 5%; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.gallery-slide { flex: 0 0 calc(33.333% - 0.85rem); border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-controls { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 2rem; }
.gallery-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--cream-3); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-mid); transition: var(--t);
}
.gallery-btn:hover { border-color: var(--wine); color: var(--wine); }
.gallery-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.gallery-dots { display: flex; gap: 0.35rem; }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cream-3); border: none; cursor: pointer; padding: 0; transition: var(--t); }
.gallery-dot.active { background: var(--wine); width: 20px; border-radius: 3px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-3); }
.faq-item:first-child { border-top: 1px solid var(--cream-3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.15rem 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-size: 0.9rem; font-weight: 600; color: var(--text-dark);
  gap: 1rem; transition: color var(--t);
}
.faq-q:hover { color: var(--wine); }
.faq-toggle {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--cream-3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--wine); transition: var(--t);
  font-weight: 400; line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--wine); color: white; border-color: var(--wine); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; font-size: 0.86rem; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

/* ── FOOTER ── */
.site-footer { background:
linear-gradient(
135deg,
#142045 0%,
#1E2A5A 55%,
#2E3F78 100%
); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3.5rem;
  padding: 5rem 5% 3rem; max-width: 1160px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.35); }
.footer-tagline { margin-top: 1.2rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-contacts { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-contact-item:hover { color: var(--gold-light); }
.footer-contact-item svg { width: 13px; height: 13px; opacity: 0.5; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-col h5 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding: 1.5rem 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.2);
}
.footer-veg {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(80,180,80,0.65); border: 1px solid rgba(80,180,80,0.25);
  padding: 3px 8px; border-radius: 2px;
}
.footer-veg-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(80,180,80,0.65); }
.footer-simple {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  padding: 3rem 5%; background:
linear-gradient(
135deg,
#142045 0%,
#1E2A5A 55%,
#2E3F78 100%
);
}
.footer-simple-name { font-family: var(--font-h); font-size: 1.3rem; color: var(--white); }
.footer-simple-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 2px; }
.footer-simple-nav  { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem; }
.footer-simple-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.4); padding: 0.35rem 0.65rem; transition: var(--t); }
.footer-simple-nav a:hover { color: var(--white); }
.footer-simple-copy { font-size: 0.72rem; color: rgba(255,255,255,0.18); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── SUCCESS ── */
.success-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,12,12,0.82); align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.success-overlay.is-visible { display: flex; }
.success-box {
  background: var(--white); border-radius: var(--r-md);
  padding: 3rem 2.5rem; text-align: center;
  max-width: 380px; width: 90%; box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 58px; height: 58px; border-radius: 50%; background: #22C55E;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.success-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.success-box h3 { color: var(--wine-deep); margin-bottom: 0.75rem; font-size: 1.5rem; }
.success-box p  { font-size: 0.86rem; }
.success-progress { height: 3px; background: var(--cream-3); border-radius: 2px; margin-top: 2rem; overflow: hidden; }
.success-progress__bar { height: 100%; width: 0; background: #22C55E; border-radius: 2px; transition: width 1.5s ease; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5% 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-sep { display: none; }
  .gallery-slide { flex: 0 0 calc(80% - 0.65rem); }
}
@media (max-width: 480px) {
  .gallery-slide { flex: 0 0 calc(92% - 0.5rem); }
}

.mc-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
