/* ════════════════════════════════════════════
   LABANZA WEBSITE — style.css
   Brand: Navy #293891 | Lime #A7CF54
   ════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #293891;
  --navy-dark:  #1a2460;
  --navy-deep:  #0f1540;
  --lime:       #A7CF54;
  --lime-mid:   #8DC21F;
  --lime-pale:  #EDF7C0;
  --lime-dark:  #6fa010;
  --white:      #FFFFFF;
  --cream:      #F7FFF0;
  --text-body:  #4A5568;
  --text-mid:   #2D3A8C;
  --shadow-sm:  0 2px 12px rgba(41,56,145,0.08);
  --shadow-md:  0 8px 32px rgba(41,56,145,0.12);
  --shadow-lg:  0 16px 48px rgba(41,56,145,0.18);
  --radius:     16px;
  --radius-lg:  24px;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.center { text-align: center; }
.hidden { display: none !important; }
.green { color: var(--lime-mid); }
.white { color: var(--white); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-mid);
  margin-bottom: 12px;
}
.why-eyebrow { color: var(--lime); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--navy-dark);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(167,207,84,0.35);
}
.btn-lime:hover { background: var(--lime-mid); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(167,207,84,0.45); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.script-inline {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--lime);
}


/* ════════════════════════════════════════════
   LOADER
   ════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo-img {
  height: 80px;
  width: auto;
  display: block;
  animation: logoPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  60% {
    opacity: 1;
    transform: scale(1.15);   /* slight overshoot for the "pop" feel */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 4px;
  width: 0%;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

.loader-tag {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}


/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
#navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(15,21,64,0.5);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 76px;
  width: auto;
  display: block;
  transition: height 0.35s cubic-bezier(.4,0,.2,1);
}

/* smaller once user scrolls down */
#navbar.scrolled .nav-logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.25s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--lime); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--lime);
  color: var(--navy-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--lime-mid); transform: scale(1.05); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    padding:120px 8% 80px;
    position:relative;
    overflow:hidden;
    flex-direction: row-reverse;   /* ← add this line */
    background:linear-gradient(
        135deg,
        #161f63 0%,
        #283891 60%,
        #365183 100%
    );
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 520px; height: 520px;
  background: rgba(167,207,84,0.12);
  top: -120px; right: -120px;
  animation: blobFloat1 8s ease-in-out infinite alternate;
}
.blob-2 {
  width: 300px; height: 300px;
  background: rgba(167,207,84,0.08);
  bottom: -80px; left: 10%;
  animation: blobFloat2 10s ease-in-out infinite alternate;
}
.blob-3 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  top: 50%; left: 40%;
  animation: blobFloat1 6s ease-in-out infinite alternate;
}
@keyframes blobFloat1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,-40px) scale(1.1); }
}
@keyframes blobFloat2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-20px, 30px) scale(1.05); }
}

.hero-content{

    flex:1;

    max-width:560px;

    z-index:2;

}

.hero-badge {
  display: inline-block;
  background: rgba(167,207,84,0.15);
  border: 1px solid rgba(167,207,84,0.4);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.script-line {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}
.big-word {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.big-word .dot { color: var(--lime); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-icons-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-icon-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-icon-item span { font-size: 1rem; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    min-height:600px;

}

.hero-img{
    width:125%;
    max-width:1500px;
    object-fit:contain;

    filter:drop-shadow(0 35px 60px rgba(0,0,0,.35));

    transition:transform .5s ease, filter .5s ease;
}

.hero-visual:hover .hero-img{
    transform:scale(1.08);
    filter:drop-shadow(0 50px 90px rgba(0,0,0,.45));
}

@keyframes dessertFloat{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}
.hero-float-tag {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.tag-1 { top: 60px; left: -10px; animation: tagFloat 3s ease-in-out infinite; }
.tag-2 { top: 60px; right: -10px; animation: tagFloat 3.5s ease-in-out infinite 0.5s; }
.tag-3 { bottom: 60px; left: 50%; transform: translateX(-50%); animation: tagFloat 4s ease-in-out infinite 1s; }
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.tag-3 { animation: tagFloat3 4s ease-in-out infinite 1s; }
@keyframes tagFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
.hero-img:hover{

    transform:scale(1.08);

    filter:

    drop-shadow(0 55px 110px rgba(0,0,0,.40))

    drop-shadow(0 0 35px rgba(167,207,84,.18));

}
.hero-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    perspective:1200px;

    z-index:2;

}

.hero-visual::before{

    content:"";

    position:absolute;

    width:680px;

    height:680px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(167,207,84,.35) 0%,
    rgba(117,165,255,.20) 35%,
    rgba(65,110,255,.12) 60%,
    transparent 75%);

    filter:blur(80px);

    animation:heroGlow 6s ease-in-out infinite;

    z-index:-2;

}
.hero-visual::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(255,255,255,.15),

    transparent 70%);

    filter:blur(35px);

    z-index:-1;

}
@keyframes heroGlow{

    0%{

        transform:scale(1);

        opacity:.75;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

    100%{

        transform:scale(1);

        opacity:.75;

    }

}

/* ════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════ */
.marquee-strip {
  background: var(--lime);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 18px;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════
   MENU / PRODUCT SHOWCASE
   ════════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   MENU / PRODUCT SHOWCASE
   ════════════════════════════════════════════ */
.menu-section {
  padding: 160px 0 110px;
  background: var(--cream);
}
.menu-section .container { max-width: 1280px; }

.menu-tabs{
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:60px;
  margin-top:60px;
  margin-bottom:56px;
  flex-wrap:wrap;
}
.menu-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.7rem;
  color: #c9d3ea;
  padding: 4px 0;
  transition: color 0.3s ease, font-size 0.3s ease;
}
.menu-tab:hover { color: var(--lime-mid); }
.menu-tab.is-active {
  color: var(--navy);
  font-size: 2.4rem;
}

/* ---- Panel switch animation (replays every click) ---- */
.menu-panels { position: relative; }
.menu-panel { display: none; position: relative; }
.menu-panel.is-active {
  display: block;
  animation: panelIn 0.5s cubic-bezier(.22,.9,.32,1) both;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Cards inside the active panel: staggered pop-in, replays on every tab switch ---- */
.menu-panel.is-active .product-card {
  animation: cardPopIn 0.55s cubic-bezier(.22,.9,.32,1) both;
}
.menu-panel.is-active .product-card:nth-child(1) { animation-delay: 0.02s; }
.menu-panel.is-active .product-card:nth-child(2) { animation-delay: 0.08s; }
.menu-panel.is-active .product-card:nth-child(3) { animation-delay: 0.14s; }
.menu-panel.is-active .product-card:nth-child(4) { animation-delay: 0.20s; }
.menu-panel.is-active .product-card:nth-child(5) { animation-delay: 0.26s; }
.menu-panel.is-active .product-card:nth-child(6) { animation-delay: 0.32s; }
@keyframes cardPopIn {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Scroll track: smooth, locked snapping, premium momentum ---- */
.product-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.product-track::-webkit-scrollbar { display: none; }

/* ---- Card: fixed square image, real card container ---- */
.product-card {
  flex: 0 0 auto;
  width: clamp(190px, 22vw, 250px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg, 20px);
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(41,56,145,0.08));
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-thumb{
  width: 100%;
  aspect-ratio: 1 / 1;         /* forces every thumb to be a perfect square */
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.product-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills the square edge-to-edge, no distortion */
  transition: transform .5s cubic-bezier(.22,.9,.32,1);
}
.product-card:hover .product-thumb img { transform: scale(1.08); }

.product-name { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; padding: 0 2px; }
.product-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--lime-mid);
  padding: 5px 16px;
  border-radius: 50px;
  background: var(--lime-pale);
  margin-left: 2px;
}

/* ---- Track arrow buttons (left + right) ---- */
.menu-panel { position: relative; }

.track-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.track-arrow-left  { left: -18px; }
.track-arrow-right { right: -18px; }

.track-arrow:hover { background: var(--lime); }
.track-arrow-right:hover { transform: translateY(-50%) translateX(3px) scale(1.05); }
.track-arrow-left:hover  { transform: translateY(-50%) translateX(-3px) scale(1.05); }
.track-arrow:active { transform: translateY(-50%) scale(0.95); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .menu-section { padding: 120px 0 80px; }
  .product-card { width: clamp(160px, 40vw, 210px); }
}

@media (max-width: 640px) {
  .menu-tabs { gap: 24px; }
  .menu-tab { font-size: 1.2rem; }
  .menu-tab.is-active { font-size: 1.6rem; }
  .product-card { width: 46vw; }
  .product-track { gap: 14px; }

  .track-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .track-arrow-left  { left: 2px; }
  .track-arrow-right { right: 2px; }
}

@media (max-width: 400px) {
  .product-card { width: 62vw; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-panel.is-active,
  .menu-panel.is-active .product-card {
    animation: none !important;
  }
}


/* ════════════════════════════════════════════
   MENU / PRODUCTS
   ════════════════════════════════════════════ */
:root{
  --menu-blue:        #0A5FE0;
  --menu-blue-dark:    #0847AE;
  --menu-blue-tint:    #EAF3FF;
  --menu-blue-border:  #DCEAFE;
  --menu-bg:           #FAF9F6;
  --menu-white:        #FFFFFF;
  --menu-gray:         #99A1AF;
  --menu-text:         #16213A;

  --menu-radius-lg:    22px;
  --menu-radius-pill:  999px;

  --menu-ease:         cubic-bezier(.22,.9,.32,1);
}

.menu-section{
  background: var(--menu-bg);
  padding: 72px 20px 96px;
  font-family: 'Inter', system-ui, sans-serif;
}

.menu-container{
  max-width: 1280px;
  margin: 0 auto;
}

.menu-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--menu-blue);
  margin: 0 0 36px;
  text-transform: uppercase;
}

.menu-filters{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

@media (max-width: 640px){
  .menu-filters{
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    margin-inline: -20px;
    padding-inline: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .menu-filters::-webkit-scrollbar{ display: none; }
  .filter-pill{ scroll-snap-align: start; flex: 0 0 auto; }
}

.filter-pill{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--menu-blue);
  background: var(--menu-white);
  border: 2px solid var(--menu-blue);
  border-radius: var(--menu-radius-pill);
  padding: 11px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .3s var(--menu-ease),
              color .3s var(--menu-ease),
              transform .2s var(--menu-ease),
              box-shadow .3s var(--menu-ease);
}

.filter-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 95, 224, 0.18);
}

.filter-pill:active{ transform: translateY(0); }

.filter-pill:focus-visible{
  outline: 3px solid var(--menu-blue-dark);
  outline-offset: 2px;
}

.filter-pill.is-active{
  background: var(--menu-blue);
  color: var(--menu-white);
  box-shadow: 0 8px 20px rgba(10, 95, 224, 0.28);
}

.menu-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.menu-card{
  background: var(--menu-white);
  border: 1px solid var(--menu-blue-border);
  border-radius: var(--menu-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--menu-ease),
              box-shadow .55s var(--menu-ease);
  opacity: 0;
  transform: translateY(24px) scale(.97);
}

.menu-card.is-visible{
  animation: menuCardIn .97s var(--menu-ease) forwards;
}

@keyframes menuCardIn{
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.menu-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(10, 95, 224, 0.16);
}

.menu-card-image{
  aspect-ratio: 1 / 1;
  background: var(--menu-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-card-image img{
  width: 62%;
  height: 62%;
  object-fit: contain;
  transition: transform .5s var(--menu-ease);
}

.menu-card:hover .menu-card-image img{
  transform: scale(1.08) rotate(-1deg);
}

.menu-card-body{
  padding: 18px 20px 22px;
  text-align: center;
}

.menu-card-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--menu-blue);
  margin: 0 0 4px;
}

.menu-card-category{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--menu-gray);
  margin: 0;
}

.menu-grid.is-filtering .menu-card{
  opacity: 0;
  transform: translateY(14px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
}

.menu-empty{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--menu-gray);
  font-family: 'Inter', sans-serif;
  padding: 40px 0;
}

@media (prefers-reduced-motion: reduce){
  .menu-card, .filter-pill, .menu-card-image img{
    transition: none !important;
    animation: none !important;
  }
  .menu-card{ opacity: 1; transform: none; }
}

@media (max-width: 480px){
  .menu-section{ padding: 56px 16px 72px; }
  .menu-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .menu-card-body{ padding: 14px 12px 16px; }
  .menu-card-title{ font-size: 0.92rem; }
}


/* ════════════════════════════════════════════
   OUR LOCATIONS
   ════════════════════════════════════════════ */
.locations-section{
  --loc-blue:        #0A5FE0;
  --loc-blue-dark:   #0847AE;
  --loc-blue-tint:   #EAF3FF;
  --loc-blue-border: #DCEAFE;
  --loc-bg:          #FAF9F6;
  --loc-white:       #FFFFFF;
  --loc-gray:        #99A1AF;
  --loc-text:        #16213A;
  --loc-green:       #16A34A;
  --loc-green-tint:  #E9F9EF;
  --loc-radius-lg:   22px;
  --loc-radius-pill: 999px;
  --loc-ease:        cubic-bezier(.22,.9,.32,1);

  background: var(--loc-bg);
  padding: 72px 20px 96px;
  font-family: 'Inter', system-ui, sans-serif;
}

.locations-section .container{
  max-width: 1280px;
  margin: 0 auto;
}

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

.locations-section .section-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--loc-blue);
  margin: 0 0 14px;
}

.locations-section .section-sub{
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--loc-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Filters ---- */
.location-filters{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 640px){
  .location-filters{
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    margin-inline: -20px;
    padding-inline: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .location-filters::-webkit-scrollbar{ display: none; }
  .location-filter{ scroll-snap-align: start; flex: 0 0 auto; }
}

.location-filter{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--loc-blue);
  background: var(--loc-white);
  border: 2px solid var(--loc-blue);
  border-radius: var(--loc-radius-pill);
  padding: 11px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .3s var(--loc-ease),
              color .3s var(--loc-ease),
              transform .2s var(--loc-ease),
              box-shadow .3s var(--loc-ease);
}
.location-filter:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 95, 224, 0.18);
}
.location-filter:active{ transform: translateY(0); }
.location-filter:focus-visible{
  outline: 3px solid var(--loc-blue-dark);
  outline-offset: 2px;
}
.location-filter.active{
  background: var(--loc-blue);
  color: var(--loc-white);
  box-shadow: 0 8px 20px rgba(10, 95, 224, 0.28);
}

/* ---- Grid & cards ---- */
.locations-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.location-card{
  background: var(--loc-white);
  border: 1px solid var(--loc-blue-border);
  border-radius: var(--loc-radius-lg);
  overflow: hidden;
  transition: transform .35s var(--loc-ease),
              box-shadow .35s var(--loc-ease);
  opacity: 0;
  transform: translateY(24px) scale(.97);
}
.location-card.is-visible{
  animation: locationCardIn .55s var(--loc-ease) forwards;
}
@keyframes locationCardIn{
  to{ opacity: 1; transform: translateY(0) scale(1); }
}
.location-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(10, 95, 224, 0.16);
}
.location-card.is-hidden{ display: none; }

.location-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--loc-blue-tint);
}
.location-top h3{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--loc-blue-dark);
  margin: 0;
  line-height: 1.35;
}

.status{
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.8px;
  padding: 5px 10px;
  border-radius: var(--loc-radius-pill);
  white-space: nowrap;
}
.status.working{
  color: var(--loc-green);
  background: var(--loc-green-tint);
}

.location-body{
  padding: 16px 20px;
}
.location-body p{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--loc-gray);
  margin: 0 0 4px;
  line-height: 1.6;
}
.location-body p:last-child{ margin-bottom: 0; }

/* icon badge for the pin */
.loc-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--loc-blue-tint);
  color: var(--loc-blue);
}
.loc-badge svg{ width: 13px; height: 13px; }

.location-footer{
  padding: 16px 20px 20px;
  border-top: 1px solid var(--loc-blue-tint);
}
.call-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--loc-white);
  background: var(--loc-blue);
  border-radius: var(--loc-radius-pill);
  padding: 11px 18px;
  transition: background-color .25s var(--loc-ease), transform .2s var(--loc-ease);
}
.call-btn:hover{
  background: var(--loc-blue-dark);
  transform: translateY(-2px);
}

/* icon inside the call button */
.call-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.call-icon svg{ width: 15px; height: 15px; color: var(--loc-white); }

.locations-empty{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--loc-gray);
  font-family: 'Inter', sans-serif;
  padding: 40px 0;
}

@media (prefers-reduced-motion: reduce){
  .location-card, .location-filter{
    transition: none !important;
    animation: none !important;
  }
  .location-card{ opacity: 1; transform: none; }
}

@media (max-width: 480px){
  .locations-section{ padding: 56px 16px 72px; }
  .locations-grid{ grid-template-columns: 1fr; gap: 14px; }
}


/* ════════════════════════════════════════════
   INSTAGRAM FEED
   ════════════════════════════════════════════ */
.instagram-section{
  --insta-blue:        #0A5FE0;
  --insta-blue-dark:   #0847AE;
  --insta-blue-tint:   #EAF3FF;
  --insta-blue-border: #DCEAFE;
  --insta-bg:          #FAF9F6;
  --insta-white:       #FFFFFF;
  --insta-radius:      16px;
  --insta-radius-pill: 999px;
  --insta-ease:        cubic-bezier(.22,.9,.32,1);

  background: var(--insta-bg);
  padding: 64px 20px 96px;
  font-family: 'Inter', system-ui, sans-serif;
}

.instagram-section .container{
  max-width: 1280px;
  margin: 0 auto;
}

.instagram-header{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.instagram-follow-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--insta-blue);
  margin: 0;
}

.instagram-handle-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--insta-blue);
  background: var(--insta-white);
  border: 2px solid var(--insta-blue);
  border-radius: var(--insta-radius-pill);
  padding: 10px 22px;
  transition: background-color .25s var(--insta-ease),
              color .25s var(--insta-ease),
              transform .2s var(--insta-ease),
              box-shadow .25s var(--insta-ease);
}
.instagram-handle-pill svg{ width: 16px; height: 16px; flex-shrink: 0; }
.instagram-handle-pill:hover{
  background: var(--insta-blue);
  color: var(--insta-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 95, 224, 0.24);
}

.instagram-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.instagram-item{
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--insta-radius);
  overflow: hidden;
  background: var(--insta-blue-tint);
}
.instagram-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--insta-ease);
}
.instagram-item:hover img{ transform: scale(1.08); }

.instagram-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 95, 224, 0.55);
  opacity: 0;
  transition: opacity .3s var(--insta-ease);
}
.instagram-item:hover .instagram-overlay{ opacity: 1; }
.instagram-overlay svg{
  width: 28px;
  height: 28px;
  color: var(--insta-white);
}

/* ---- Mobile: keep all 4 visible, just wrap 2x2 ---- */
@media (max-width: 640px){
  .instagram-section{ padding: 48px 16px 72px; }
  .instagram-header{ flex-direction: column; gap: 10px; }
  .instagram-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce){
  .instagram-item img, .instagram-overlay, .instagram-handle-pill{
    transition: none !important;
  }
}


/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--navy-deep);
}
.contact-section .section-header { margin-bottom: 56px; }
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,207,84,0.1);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.contact-item:hover { background: rgba(167,207,84,0.07); }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(167,207,84,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ci-val { font-size: 0.95rem; font-weight: 700; color: var(--white); }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--lime); color: var(--navy); border-color: var(--lime); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,207,84,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 28px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--lime); }
.form-group select option { background: var(--navy-dark); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  background: var(--lime);
  color: var(--navy-dark);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}
.form-submit:hover { background: var(--lime-mid); transform: translateY(-2px); }

.form-success {
  margin-top: 16px;
  text-align: center;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px;
  background: rgba(167,207,84,0.1);
  border-radius: 10px;
}

.field-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 5px;
}
.field-error.show { display: block; }


/* ════════════════════════════════════════════
   ABOUT BANNER (Contact CTA)
   ════════════════════════════════════════════ */
.about-banner-section {
  background: var(--cream);
  padding: 100px 0;
}

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

.about-banner-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-banner-title .green { color: var(--lime-mid); }

.about-banner-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.about-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.about-banner-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.about-banner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-banner-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-banner-img:hover img { transform: scale(1.05); }

/* ---- Mobile: image on top, text below ---- */
@media (max-width: 768px) {
  .about-banner-section { padding: 64px 0; }
  .about-banner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-banner-img { order: 1; }
  .about-banner-text { order: 2; }
  .about-banner-desc { margin-left: auto; margin-right: auto; }
  .about-banner-img img { height: 260px; }
}
/* ===================================
   CONTACT LAYOUT
=================================== */

.contact-container{
    max-width:1300px;
    margin:0 auto;

    display:grid;
    grid-template-columns:380px 1fr;

    gap:50px;

    align-items:start;
}

.contact-info{
    width:100%;
}

.contact-form{
    width:100%;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-logo span { color: var(--lime); }
.footer-logo sup { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col h4 {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-links-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 40px;
  text-align: center;
}
.footer-closing-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--lime);
  margin-bottom: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }


/* ════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--lime);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(167,207,84,0.4);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); background: var(--lime-mid); }


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════════ */

@media (max-width:768px){

    /* ================= NAVBAR ================= */

    .nav-links,
    .nav-cta{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .nav-links.open{
        display:flex;
        flex-direction:column;
        position:fixed;
        top:70px;
        left:0;
        right:0;
        background:var(--navy-dark);
        padding:24px;
        gap:20px;
        z-index:99;
    }

    /* ================= HERO ================= */

    .hero{
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;
        text-align:center;
        min-height:auto;
        padding:100px 0 40px;
        gap:0;
    }

.hero-content{
    width:100%;
    order:2;
    margin:-32px 0 0;             /* pulls text up so badge sits right at the image's bottom edge */
    padding:0 26px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}
.hero [data-aos]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

    .hero-visual{
    display:flex;
    justify-content:flex-start;   /* anchors image to the left so it can bleed off-screen */
    align-items:center;
    width:100%;
    order:1;
    margin-top:0;
    min-height:auto;
    overflow:visible;
}

    .hero-visual::before,
    .hero-visual::after{
        display:none;
    }

    .hero-title{
        margin:14px 0 16px;
    }

    .hero-sub{
        margin:0 auto 12px;
        max-width:100%;
    }

    .hero-btns{
        display:flex;
        flex-direction:column;
        justify-content:center;
        width:100%;
        gap:14px;
        margin-top:16px;
    }

    .hero-btns .btn-lime,
    .hero-btns .btn-outline{
        width:100%;
        text-align:center;
    }

    .hero-img{

    width:125vw;
    max-width:none;

    height:auto;

    margin-left:-42vw;

    object-fit:contain;

    transform:scale(1.08);
    }



    /* ================= OTHER ================= */

    .stats-bar{
        padding:32px 24px;
        flex-wrap:wrap;
        gap:20px;
    }

    .stat-divider{
        display:none;
    }

    .grid-2{
        grid-template-columns:1fr;
        gap:40px;
    }

    .menu-grid{
        display:grid !important;
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
    }

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

    .why-section{
        padding:80px 24px;
    }

    .growth-timeline{
        grid-template-columns:1fr;
    }

    .franchise-banner-overlay{
        padding:40px 24px;
    }

    .franchise-doc-imgs{
        grid-template-columns:1fr;
    }

    .founders-grid{
        grid-template-columns:1fr;
    }

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

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

    section,
    .container{
        padding-left:24px;
        padding-right:24px;
    }

}




/* ════════════════════════════════════════════
   LABANZA — animations.css
   Scroll-triggered reveals + micro-interactions
   ════════════════════════════════════════════ */

/* ── AOS (Animate On Scroll) — custom implementation ── */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos].aos-animate { opacity: 1; transform: none !important; }

[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.88); }
[data-aos="fade-in"]    { transform: translateY(0); }

/* Delay helpers */
[data-aos-delay="0"]   { transition-delay: 0ms; }
[data-aos-delay="80"]  { transition-delay: 80ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="320"] { transition-delay: 320ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="450"] { transition-delay: 450ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }

/* ── Page entrance shimmer on text ── */
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-title .big-word {
  background: linear-gradient(90deg, #ffffff 40%, #A7CF54 50%, #ffffff 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

/* ── Loader letter bounce ── */
.loader-logo span {
  display: inline-block;
  animation: letterBounce 2s ease infinite alternate;
}
.loader-l   { animation-delay: 0ms; }
.loader-a   { animation-delay: 60ms; }
.loader-b   { animation-delay: 120ms; }
.loader-an  { animation-delay: 180ms; }
.loader-z   { animation-delay: 240ms; }
.loader-at  { animation-delay: 300ms; }
.loader-sym { animation-delay: 360ms; }

@keyframes letterBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* ── Parallax-lite on hero blobs (handled in JS, CSS transition support) ── */
.blob { will-change: transform; }

/* ── Card hover shimmer border ── */
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(167,207,84,0.3) 50%, transparent 60%);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.menu-card { position: relative; }
.menu-card:hover::before { opacity: 1; }

/* ── Why card glow on hover ── */
.why-card {
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(167,207,84,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover::after { opacity: 1; }

/* ── Growth step pulse border on hover ── */
.growth-step {
  position: relative;
  overflow: hidden;
}
.growth-step::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 3px;
  background: var(--lime-mid, #8DC21F);
  transition: width 0.4s ease;
  border-radius: 0 0 0 0;
}
.growth-step:hover::after { width: 100%; }

/* ── Franchise banner overlay text slide ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.franchise-banner-overlay h2,
.franchise-banner-overlay p {
  animation: slideUp 0.8s ease forwards;
}
.franchise-banner-overlay p { animation-delay: 0.15s; }

/* ── Investment card pop on scroll ── */
.invest-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.invest-card:hover {
  box-shadow: 0 12px 40px rgba(41,56,145,0.16);
}

/* ── Marquee pause on hover ── */
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Form input focus glow ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(167,207,84,0.15);
}

/* ── Submit button ripple ── */
.form-submit {
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.form-submit:hover::after { transform: scaleX(1); }

/* ── Nav link active underline animation ── */
.nav-links a.active-link { color: #A7CF54; }
.nav-links a.active-link::after { width: 100%; }

/* ── Contact item slide ── */
.contact-item {
  transition: transform 0.25s, background 0.25s;
}
.contact-item:hover { transform: translateX(6px); }

/* ── Social button shine ── */
.social-btn {
  position: relative;
  overflow: hidden;
}
.social-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.4s;
}
.social-btn:hover::before { left: 140%; }

/* ── Stat number count-up color pulse ── */
@keyframes numPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); color: #fff; }
  100% { transform: scale(1); }
}
.stat-num.counting { animation: numPop 0.2s ease; }

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #A7CF54, #8DC21F);
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  .hero-title .big-word {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
  }
}

/* Falling Ingredients */

.falling-items{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}

.item{

    position:absolute;

    top:-95px;

    font-size:26px;

    animation:fall linear infinite;

}
/* Falling Items Container */
.falling-items{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 4;
}

/* Image Style */
.item{
    position: absolute;
    top: -120px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: fall linear infinite;
}

/* Different Positions */
.item:nth-child(1){
    left:8%;
    animation-duration:8s;
    animation-delay:0s;
}

.item:nth-child(2){
    left:20%;
    animation-duration:10s;
    animation-delay:2s;
}

.item:nth-child(3){
    left:35%;
    animation-duration:9s;
    animation-delay:1s;
}

.item:nth-child(4){
    left:52%;
    animation-duration:11s;
    animation-delay:3s;
}

.item:nth-child(5){
    left:68%;
    animation-duration:8s;
    animation-delay:2s;
}

.item:nth-child(6){
    left:82%;
    animation-duration:10s;
    animation-delay:0s;
}

.item:nth-child(7){
    left:94%;
    animation-duration:9s;
    animation-delay:4s;
}

/* Falling Animation */
@keyframes fall{
    0%{
        transform:translateY(-120px) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    100%{
        transform:translateY(120vh) rotate(720deg);
        opacity:0.9;
    }
}

/* Different Positions */

.item:nth-child(1){

left:8%;

animation-duration:8s;

animation-delay:0s;

}

.item:nth-child(2){

left:22%;

animation-duration:10s;

animation-delay:2s;

}

.item:nth-child(3){

left:40%;

animation-duration:7s;

animation-delay:1s;

}

.item:nth-child(4){

left:58%;

animation-duration:9s;

animation-delay:3s;

}

.item:nth-child(5){

left:72%;

animation-duration:8s;

animation-delay:2s;

}

.item:nth-child(6){

left:86%;

animation-duration:11s;

animation-delay:1s;

}

.item:nth-child(7){

left:95%;

animation-duration:7s;

animation-delay:4s;

}

@keyframes fall{

0%{

transform:
translateY(-120px)
rotate(0deg);

opacity:0;

}

10%{

opacity:1;

}

100%{

transform:
translateY(110vh)
rotate(720deg);

opacity:0;

}

}



/* cursor Animation */

.cursor-glow{
    position:fixed;
    width:250px;
    height:250px;
    border-radius:50%;
    pointer-events:none;
    z-index:9999;

    background:radial-gradient(
        circle,
        rgba(146, 219, 0, 0.18) 0%,
        rgba(41, 68, 218, 0.1) 40%,
        transparent 75%
    );

    transform:translate(-50%,-50%);
    transition:
        left .08s linear,
        top .08s linear;

    filter:blur(35px);
}

/* cursor Animation  end */


/*new for*/

.contact-form .form-section-title {
  text-align: center;
  text-transform: uppercase;
  color: #2196f3;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin: 32px 0 20px;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #4fa8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33,150,243,0.15);
}

.checkbox-row { align-items: center; margin: 14px 0; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #ff6b6b;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.checkbox-label input[type="checkbox"]:checked { background: #ff6b6b; }
.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}

.form-actions { display: flex; justify-content: center; gap: 16px; margin-top: 28px; }
.form-reset {
  background: #111; color: #fff; border: none;
  padding: 12px 32px; border-radius: 6px; font-weight: 600; cursor: pointer;
}
.form-reset:hover { background: #333; }
.form-submit {
  background: #2196f3; color: #fff; border: none;
  padding: 12px 32px; border-radius: 6px; font-weight: 600; cursor: pointer;
}
.form-submit:hover { background: #1976d2; }

@media (max-width: 768px) {
  .form-row-2, .form-row-3, .form-row-4 { grid-template-columns: 1fr; }
}

