/* ═══════════════════════════════════════════
   HAPPYWOO EVENTS — Premium CSS
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --green: #3FA35A;
  --green-dark: #2d7a42;
  --green-forest: #1a3d22;
  --green-deep: #0f2415;
  --green-light: #A5D06F;
  --green-pale: #d4ebb0;
  --gold: #C8A84B;
  --gold-light: #e8d095;
  --cream: #FDF8F0;
  --cream-dark: #F3EDE0;
  --white: #FFFFFF;
  --text: #1a2015;
  --text-mid: #3a4a35;
  --text-soft: #6b7a65;
  --shadow-sm: 0 2px 12px rgba(26,61,34,0.10);
  --shadow-md: 0 8px 30px rgba(26,61,34,0.15);
  --shadow-lg: 0 20px 60px rgba(26,61,34,0.20);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ml: 'Noto Serif Malayalam', serif;
  --font-body: 'Nunito', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 1rem 0 0px; }

/* ── Section Headers ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.section-eyebrow.light { color: var(--green-light); }
.section-eyebrow.light::before { background: var(--green-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--green-light); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub-dark {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(200,168,75,0.4);
}
.btn-gold:hover {
  background: #b8952e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,168,75,0.5);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green-solid {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(63,163,90,0.35);
}
.btn-green-solid:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(63,163,90,0.45);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(26,61,34,0.12);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; border-radius: 6px; transition: opacity 0.3s; }
.logo-dark { display: none; }
.logo-light { display: block; }
.navbar.scrolled .logo-dark { display: block; }
.navbar.scrolled .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover { color: var(--green); background: rgba(63,163,90,0.08); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.navbar.scrolled .nav-cta { background: var(--green) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.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
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 28, 14, 0.82) 0%,
    rgba(26, 61, 34, 0.65) 50%,
    rgba(15, 36, 21, 0.78) 100%
  );
}

/* floating leaf particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.leaf {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50% 0 50% 0;
  background: rgba(165, 208, 111, 0.35);
  animation: floatLeaf 8s ease-in-out infinite;
}
.l1 { width: 8px; height: 8px; top: 15%; left: 8%; animation-delay: 0s; animation-duration: 9s; }
.l2 { width: 14px; height: 14px; top: 70%; left: 3%; animation-delay: 1.5s; animation-duration: 11s; }
.l3 { width: 6px; height: 6px; top: 30%; left: 92%; animation-delay: 3s; animation-duration: 8s; }
.l4 { width: 12px; height: 12px; top: 80%; left: 88%; animation-delay: 0.8s; animation-duration: 12s; }
.l5 { width: 9px; height: 9px; top: 50%; left: 50%; animation-delay: 2s; animation-duration: 10s; }
.l6 { width: 7px; height: 7px; top: 20%; left: 72%; animation-delay: 4s; animation-duration: 9s; }
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.4; }
  33% { transform: translateY(-28px) rotate(120deg) scale(1.2); opacity: 0.7; }
  66% { transform: translateY(14px) rotate(240deg) scale(0.9); opacity: 0.3; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  min-height: 100vh;
}
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: var(--green-pale);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-tagline {
  font-family: var(--font-ml);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.tagline-ml {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.tagline-nt {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(200,168,75,0.3);
}
.tagline-we {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.social-pill:hover { background: rgba(255,255,255,0.18); color: var(--white); }

/* Hero poster */
.hero-poster-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.poster-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(165,208,111,0.2);
  animation: spinRing 20s linear infinite;
}
.poster-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  transform: translateX(-50%);
}
@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-poster-img {
  width: 360px;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  animation: posterFloat 6s ease-in-out infinite;
}
@keyframes posterFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-12px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  width: 1px;
  height: 20px;
  background: var(--green-light);
  position: absolute;
  top: -20px;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -20px; }
  100% { top: 68px; }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.04); }
.about-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,61,34,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--text);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200,168,75,0.4);
  z-index: 2;
}
.big-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-content { padding: 20px 0; }
.about-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(63,163,90,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--green-light));
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   WAVE HELPERS
══════════════════════════════════════════ */
.wave-bottom, .wave-bottom-cream, .wave-top-light {
  line-height: 0;
  position: relative;
}
.wave-bottom { margin-top: 60px; }
.wave-bottom svg, .wave-bottom-cream svg, .wave-top-light svg { width: 100%; }

/* ══════════════════════════════════════════
   DARK SECTION (Services, Branches)
══════════════════════════════════════════ */
.dark-section {
  background: var(--green-forest);
  position: relative;
}
.dark-gallery {
  background: var(--green-deep);
  position: relative;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(165,208,111,0.15);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63,163,90,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(165,208,111,0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.service-card:hover::before { opacity: 1; }
.svc-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.service-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.02em; }
.service-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why { background: var(--cream); position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(63,163,90,0.08);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(63,163,90,0.2); }
.why-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(63,163,90,0.12), rgba(165,208,111,0.12));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.why-icon { font-size: 1.8rem; }
.why-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 0.83rem; color: var(--text-soft); line-height: 1.65; }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gi-tall { grid-row: span 2; aspect-ratio: auto; }
.gi-wide { grid-column: span 2; aspect-ratio: 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,14,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: lbFadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap { max-width: 900px; width: 100%; text-align: center; }
#lbImg {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lb-caption { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 14px; letter-spacing: 0.05em; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--green); border-color: var(--green); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ══════════════════════════════════════════
   CATERING
══════════════════════════════════════════ */
.catering { background: var(--cream); position: relative; }
.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.catering-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(63,163,90,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.catering-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.catering-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(63,163,90,0.25); }
.catering-card:hover::after { transform: scaleX(1); }
.cc-featured {
  background: linear-gradient(135deg, var(--green-forest), var(--green-dark));
  color: var(--white);
  border-color: var(--green);
}
.cc-featured::after { background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(1); }
.cc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.catering-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.catering-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }
.catering-card.cc-featured h3 { color: #ffffff; }
.catering-card.cc-featured p { color: rgba(255,255,255,0.88); }
.cc-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 14px;
}
.catering-cta { text-align: center; padding: 48px 0 20px; }
.cta-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════
   BRANCHES
══════════════════════════════════════════ */
.branches { background: var(--green-forest); position: relative; }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.branch-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(165,208,111,0.18);
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.branch-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(165,208,111,0.35); transform: translateY(-4px); }
.branch-card:hover::before { transform: scaleX(1); }
.branch-uae {
  grid-column: span 1;
  border-color: rgba(200,168,75,0.35);
}
.branch-uae::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(1); }
.branch-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(165,208,111,0.15);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
}
.branch-info { margin-bottom: 20px; }
.branch-icon { font-size: 1.5rem; margin-bottom: 8px; }
.branch-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.branch-phone { font-size: 0.88rem; color: var(--green-light); font-weight: 600; }
.branch-actions { display: flex; flex-direction: column; gap: 8px; }
.branch-actions-row { display: flex; gap: 8px; }
.branch-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.call-btn {
  background: rgba(63,163,90,0.15);
  color: var(--green-light);
  border: 1px solid rgba(63,163,90,0.3);
}
.call-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.wa-btn {
  background: rgba(37,211,102,0.12);
  color: #4ade80;
  border: 1px solid rgba(37,211,102,0.25);
}
.wa-btn:hover { background: #25d366; color: var(--white); border-color: #25d366; }
.directions-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
  background: rgba(66,133,244,0.12);
  color: #7db3ff;
  border: 1px solid rgba(66,133,244,0.25);
}
.directions-btn:hover { background: #4285f4; color: var(--white); border-color: #4285f4; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { background: var(--cream); position: relative; }
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact-left { width: 100%; }
.contact-left .section-eyebrow { justify-content: center; }
.contact-left .section-title { text-align: center; }
.contact-desc { font-size: 1rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 36px; }
.contact-quick { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.quick-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(63,163,90,0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.quick-contact:hover { transform: translateX(4px); border-color: rgba(63,163,90,0.3); box-shadow: var(--shadow-md); }
.qc-icon { font-size: 1.5rem; }
.qc-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }
.qc-val { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(63,163,90,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid rgba(63,163,90,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(63,163,90,0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a65' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-top: 12px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 54px; border-radius: 8px; margin-bottom: 16px; }
.footer-tagline-ml {
  font-family: var(--font-ml);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); border-color: var(--green); }
.footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer-social a:hover svg { fill: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--green-light); }
.footer-bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 998;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); animation: none; }
.wa-float svg { fill: var(--white); }
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text);
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-forest);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 9997;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(165,208,111,0.3);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-poster-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .contact-grid { max-width: 100%; }
  .catering-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-tall { grid-row: span 1; aspect-ratio: 1; }
  .gi-wide { grid-column: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(15,36,21,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 4px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: all; }
  .nav-link { color: rgba(255,255,255,0.85); padding: 14px 16px; font-size: 1rem; border-radius: 10px; }
  .nav-link:hover { background: rgba(255,255,255,0.1); }

  .section-pad { padding: 70px 0 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .tagline-nt { font-size: 2.6rem; }
  .about-badge-float { right: 0; bottom: -10px; }
}
