@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --black: #0c0c0c;
  --off-white: #f4f0e8;
  --warm-white: #faf7f0;
  --green: #2a5c2a;
  --green-vivid: #3d8b3d;
  --green-light: #e8f5e8;
  --gold: #b8860b;
  --gold-light: #d4a820;
  --rust: #c44a1a;
  --text-muted: #000000;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  text-decoration: none;
}

.brand-logo {
  width: 100px;
  height: 100px;
  margin-top: 10px;
  display: inline-block;
}

.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green);
}

.brand-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-pill {
  display: flex;
  gap: 2px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 4px;
}

.nav-pill a {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.nav-pill a:hover,
.nav-pill a.active {
  background: var(--green);
  color: white;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-order {
  background: var(--green);
  color: white;
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-order:hover {
  background: var(--green-vivid);
  transform: scale(1.03);
}

.nav-phone {

  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  width: fit-content;
  animation: slideRight 0.7s ease both;
}

.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
  animation: slideRight 0.7s 0.1s ease both;
}

.hero-h1 em {
  font-style: italic;
  color: #9ed89e;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 380px;
  margin-bottom: 48px;
  animation: slideRight 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  animation: slideRight 0.7s 0.3s ease both;
}

.btn-white {
  background: white;
  color: var(--green);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: slideRight 0.7s 0.4s ease both;
}

.hstat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: white;
}

.hstat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  letter-spacing: 1px;
}

.hero-right {
  background: var(--off-white);
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: default;
  transition: transform 0.3s;
}

.hero-card:hover {
  transform: scale(1.02);
  z-index: 2;
}

.hero-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
}

.hero-card-bg img {
  width: 100%;
}

.hero-card:hover .hero-card-bg {
  opacity: 0.2;
  transform: scale(1.1);
}

.hc1 {
  background: #e8f5e8;
}

.hc2 {
  background: #fff8e1;
}

.hc3 {
  background: #fce4d6;
}

.hc4 {
  background: #e8eaf6;
}

.hero-card-label {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.hero-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.hero-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 1;
}

/* ── DELIVERY STRIP ── */
.delivery-strip {
  background: var(--black);
  padding: 0;
  display: flex;
  height: 56px;
  overflow: hidden;
}

.strip-scroll {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  padding: 0 28px;
}

.strip-text {
  color: var(--off-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.strip-dot {
  color: var(--gold-light);
  font-size: 8px;
}

/*
  Highlighted free delivery item in the strip
*/
.strip-item-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 16px;
  background: #2a5c2a;
  /* brand green background */
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/*
  The "Within 3 km" pill inside the highlight
*/
.strip-highlight-pill {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* ── MENU SECTION ── */
#menu {
  padding: 100px 48px;
  background: var(--off-white);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.menu-headline .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.menu-headline h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
}

.menu-headline h2 em {
  font-style: italic;
  color: var(--green);
}

.menu-desc {
  max-width: 500px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.menu-order-btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.pill-zomato {
  border: 2px solid #e23744;
  color: #e23744;
}

.pill-swiggy {
  border: 2px solid #fc8019;
  color: #fc8019;
}

.pill-btn:hover {
  transform: scale(1.05);
}

/* Menu masonry grid */
.menu-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.bento-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--black);
}

.bento-items {
  list-style: none;
}

.bento-items li {
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-items li:last-child {
  border-bottom: none;
}

.bento-items li::before {
  content: '→';
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
}

.bento-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.06;
}

.accent-green {
  background: var(--green);
}

.accent-gold {
  background: var(--gold);
}

.accent-rust {
  background: var(--rust);
}

/* Featured card */
.bento-feature {
  background: var(--green);
  color: white;
}

.bento-feature .bento-title {
  color: white;
}

.bento-feature .bento-items li {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

.bento-feature .bento-items li::before {
  color: #9ed89e;
}

/* ── PLANS ── */
#plans {
  background: var(--off-white);
  padding: 100px 48px;
}

.plans-top {
  margin-bottom: 60px;
}

.plans-top .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.plans-top h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  /* max-width: 500px; */
  line-height: 1.1;
}

.plans-top h2 em {
  font-style: italic;
  color: var(--green);
}

.plans-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.pc {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pc.featured {
  background: var(--green);
  border-color: var(--green);
}

.pc-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pc-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pc.featured .pc-name {
  color: rgba(255, 255, 255, 0.6);
}

.pc-price {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  line-height: 1;
}

.pc.featured .pc-price {
  color: white;
}

.pc-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pc.featured .pc-period {
  color: rgba(255, 255, 255, 0.5);
}

.pc-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin-bottom: 28px;
}

.pc.featured .pc-divider {
  background: rgba(255, 255, 255, 0.15);
}

.pc-list {
  list-style: none;
  margin-bottom: 36px;
}

.pc-list li {
  font-size: 13px;
  padding: 9px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-list li:last-child {
  border-bottom: none;
}

.pc.featured .pc-list li {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
}

.pc-list li::before {
  content: '✓';
  color: var(--green-vivid);
  font-weight: 900;
  font-size: 12px;
}

.pc.featured .pc-list li::before {
  color: #9ed89e;
}

.pc-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.pc-btn.dark {
  background: var(--black);
  color: white;
}

.pc-btn.dark:hover {
  background: var(--green);
}

.pc-btn.light {
  background: white;
  color: var(--green);
}

.pc-btn.light:hover {
  background: var(--off-white);
}

.pc-btn.outline {
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: var(--black);
}

.pc-btn.outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── SPLIT ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 600px;
}

.about-left {
  background: var(--black);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.about-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-left h2 em {
  font-style: italic;
  color: #9ed89e;
}

.about-left p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
}

.about-contact-list {
  list-style: none;
}

.about-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.about-contact-list li:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-text {
  color: white;
  font-weight: 600;
}

.contact-sub-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.about-right {
  background: var(--green-light);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.about-right h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-right h3 em {
  font-style: italic;
}

.about-right p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.trainer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ts-pill {
  background: white;
  border: 1px solid rgba(42, 92, 42, 0.2);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 72px 48px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.1;
}

.cta-band h2 em {
  font-style: italic;
}

.cta-band p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 36px;
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-black {
  background: var(--black);
  color: white;
  padding: 15px 40px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-black:hover {
  background: var(--green);
}

.btn-transparent {
     border: 2px solid rgba(0, 0, 0, 0.2);
    color: var(--black);
    padding: 12px 40px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    gap: 10px;
}

.btn-transparent:hover {
  border-color: var(--black);
  background: rgba(0, 0, 0, 0.05);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 56px 48px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
}

.footer-brand-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-col-links {
  list-style: none;
}

.footer-col-links li {
  margin-bottom: 12px;
}

.footer-col-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-platforms {
  display: flex;
  gap: 10px;
}

.fp {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.fp.zomato {
  background: rgba(226, 55, 68, 0.15);
  color: #e23744;
}

.fp.swiggy {
  background: rgba(252, 128, 25, 0.15);
  color: #fc8019;
}

/* ── ANIMATIONS ── */
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WHY SECTION ── */
#why {
  padding: 100px 48px;
  background: var(--black);
}

.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-header .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-vivid);
  margin-bottom: 16px;
}

.why-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: white;
}

.why-header h2 em {
  font-style: italic;
  color: #9ed89e;
}

.why-header p {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

/* Big hero quote */
.why-hero-quote {
  border-left: 3px solid var(--green-vivid);
  padding: 32px 40px;
  margin-bottom: 64px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 12px 12px 0;
}

.why-hero-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-style: italic;
}

.why-hero-quote span {
  color: #9ed89e;
  font-style: normal;
  font-weight: 700;
}

/* 3-pillar grid */
.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  background: rgba(42, 92, 42, 0.2);
  border-color: rgba(42, 92, 42, 0.5);
  transform: translateY(-4px);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-vivid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green-vivid);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pillar-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.pillar-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pillar-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* Philosophy quotes row */
.why-quotes-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.philosophy-quote {
  background: rgba(42, 92, 42, 0.15);
  border: 1px solid rgba(42, 92, 42, 0.3);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}

.philosophy-quote::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'DM Serif Display', serif;
  font-size: 60px;
  color: rgba(42, 92, 42, 0.4);
  line-height: 1;
}

.philosophy-quote p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 20px;
  font-style: italic;
}

/* ── FOOD GALLERY ── */
#food {
  padding: 100px 48px;
  background: var(--off-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.gallery-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--green);
}

.gallery-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.gallery-grid .g-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--green-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-grid .g-item.tall {
  grid-row: span 2;
}

.gallery-grid .g-item.wide {
  grid-column: span 2;
}

.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s;
  display: block;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.g-item:hover .g-item-overlay {
  opacity: 1;
}

.g-item-label {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* placeholder when no image */
.g-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-light), rgba(42, 92, 42, 0.1));
}

.g-placeholder span {
  font-size: 48px;
}

.g-placeholder p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* upload hint box */
.gallery-upload-hint {
  margin-top: 28px;
  text-align: center;
  background: rgba(42, 92, 42, 0.08);
  border: 1.5px dashed rgba(42, 92, 42, 0.3);
  border-radius: 10px;
  padding: 20px;
}

.gallery-upload-hint p {
  font-size: 13px;
  color: var(--text-muted);
}

.gallery-upload-hint strong {
  color: var(--green);
}

/* ── MOBILE NAV ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 99;
  background: var(--off-white);
  flex-direction: column;
  padding: 32px 28px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--green-light);
  color: var(--green);
}

.mobile-menu a span {
  font-size: 14px;
  opacity: 0.3;
}

.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-cta a {
  text-align: center;
  padding: 16px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  border-bottom: none !important;
}

.mobile-menu-cta .m-call {
  background: var(--green) !important;
  color: white !important;
}

.mobile-menu-cta .m-wa {
  background: #25d366 !important;
  color: white !important;
}

.mobile-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 8px 0;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  nav {
    padding: 0 20px;
  }

  .nav-pill {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #menu,
  #plans,
  .cta-band,
  footer,
  #gallery {
    padding-left: 24px;
    padding-right: 24px;
  }

  .menu-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card.wide {
    grid-column: span 2;
  }

  .plans-row {
    grid-template-columns: 1fr;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }

  .why-quotes-row {
    grid-template-columns: 1fr;
  }

  #why {
    padding-left: 24px;
    padding-right: 24px;
  }

  #gallery {
    padding-left: 24px;
    padding-right: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .g-item.tall {
    grid-row: span 1;
  }

  .gallery-grid .g-item.wide {
    grid-column: span 2;
  }
}

@media(max-width:600px) {
  .hero-left {
    padding: 60px 28px;
  }

  .menu-bento {
    grid-template-columns: 1fr;
  }

  .bento-card.wide {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .g-item.wide {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}


/* ── LIGHTBOX ───────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 800px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
  animation: lbIn .25s ease;
}

@keyframes lbIn {
  from {
    transform: scale(.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.lightbox-caption {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .9);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
  z-index: 2;
}

.lb-prev {
  left: 12px;
}

.lb-next {
  right: 12px;
}

/* ── GALLERY ITEMS — clickable ──────────────────────── */
.g-item {
  cursor: pointer;
}

.g-item:hover .g-placeholder {
  transform: scale(1.04);
}

.g-placeholder {
  transition: transform .3s ease;
}

/* ── VIEW FULL GALLERY BUTTON ───────────────────────── */
.gallery-full-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.gallery-full-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}

.gallery-full-btn a:hover {
  background: #3c7c3c;
  transform: translateY(-2px);
}

/*
==============================================
  CONTACT SECTION — Clean Layout
==============================================
*/

#contact-section {
  padding: 100px 6vw;
  background: #f9f9f6;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── LEFT ── */
.contact-headline {
  margin-bottom: 40px;
}

.contact-headline h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: #111;
  margin-bottom: 12px;
}

.contact-headline h2 em {
  font-style: italic;
  color: #2e7d32;
}

.contact-headline p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  max-width: 400px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.ci-card:hover {
  border-color: #2e7d32;
}

.ci-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: #f0f7f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 3px;
}

.ci-value {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.ci-sub {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

/* ── RIGHT ── */
.contact-right-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-right-title em {
  color: #2e7d32;
  font-style: italic;
}

/* Phone cards */
.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-phone-card:hover {
  border-color: #2e7d32;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.cp-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: #f0f7f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 2px;
}

.cp-num {
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.cp-arrow {
  margin-left: auto;
  font-size: 16px;
  color: #2e7d32;
  font-weight: 700;
}

/* Action buttons */
.contact-action-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.ca-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  transition: all 0.2s;
}

.ca-wa:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Zomato + Swiggy side by side */
.ca-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ca-zomato,
.ca-swiggy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.ca-zomato {
  background: #E23744;
  color: #fff;
}

.ca-swiggy {
  background: #FC8019;
  color: #fff;
}

.ca-zomato:hover,
.ca-swiggy:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Platform logo circles */
.platform-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-z {
  color: #E23744;
}

.logo-s {
  color: #FC8019;
}

/* Catering note */
.contact-catering-note {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.contact-catering-note strong {
  color: #b8860b;
}

.contact-catering-note a {
  color: #2e7d32;
  font-weight: 700;
  text-decoration: none;
}

.contact-catering-note a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ca-platforms {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════
   GALLERY PAGE — STANDALONE
══════════════════════════════════════════════ */



/* ── PAGE HERO ── */
.gp-hero {
  background: #1a1a1a;
  padding: 100px 6vw 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(46, 125, 50, .25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(76, 175, 80, .1) 0%, transparent 50%);
  pointer-events: none;
}

.gp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  transition: color .2s;
  position: relative;
  z-index: 1;
}

.gp-back:hover {
  color: #fff;
}

.gp-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.gp-hero h1 em {
  font-style: normal;
  color: #4caf50;
}

.gp-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.gp-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.gp-stat {
  text-align: center;
}

.gp-stat-n {
  font-size: 28px;
  font-weight: 900;
  color: #4caf50;
}

.gp-stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* ── FILTER TABS ── */
.gp-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 40px 6vw 0;
  flex-wrap: wrap;
}

.gp-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}

.gp-tab:hover {
  border-color: #2e7d32;
  color: #2e7d32;
}

.gp-tab.active {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

/* ── SECTION LABEL ── */
.gp-section {
  padding: 56px 6vw 0;
  max-width: 1300px;
  margin: 0 auto;
}

.gp-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.gp-section-label h2 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.gp-section-label h2 em {
  color: #2e7d32;
  font-style: normal;
}

.gp-section-label .gp-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #e0e0e0, transparent);
}

.gp-section-label .gp-count {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── MASONRY GRID ── */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .gp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gp-grid {
    grid-template-columns: 1fr;
  }
}

.gp-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #ebebeb;
  cursor: pointer;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.gp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

.gp-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.gp-card.tall .gp-card-img {
  aspect-ratio: 3/4;
}

.gp-card.wide .gp-card-img {
  aspect-ratio: 4/3;
}

.gp-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Training cards — dark tone */
.gp-card.training .gp-card-img {
  background: #1a2a1a;
}

.gp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gp-card:hover .gp-card-overlay {
  opacity: 1;
}

.gp-card-overlay-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.gp-card-info {
  padding: 12px 14px;
}

.gp-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.gp-card-tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
}

.tag-food {
  background: #e8f5e9;
  color: #2e7d32;
}

.tag-train {
  background: #fce4ec;
  color: #c62828;
}

.tag-popular {
  background: #fff8e1;
  color: #b8860b;
}

/* hidden when filtered */
.gp-card.hidden {
  display: none;
}

.gp-section.hidden {
  display: none;
}

/* ── UPLOAD CTA ── */
.gp-upload-cta {
  background: #1a1a1a;
  margin: 0 6vw 56px;
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gp-upload-cta h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.gp-upload-cta p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

.gp-upload-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .2s, transform .2s;
}

.gp-upload-cta a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 750px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
  animation: lbIn .25s ease;
}

@keyframes lbIn {
  from {
    transform: scale(.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.lightbox-footer {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.lightbox-caption {
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.lightbox-counter {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .92);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .2);
  z-index: 2;
  font-weight: 700;
}

.lb-prev {
  left: 14px;
}

.lb-next {
  right: 14px;
}

/* ── NAV BAR (minimal) ── */
.gp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ebebeb;
  padding: 0 6vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gp-nav-brand {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  text-decoration: none;
}

.gp-nav-brand span {
  color: #2e7d32;
}

.gp-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gp-nav-home {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
}

.gp-nav-home:hover {
  color: #2e7d32;
}

.gp-nav-order {
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
}

.gp-nav-order:hover {
  background: #2e7d32;
}

/* ── HERO IMAGE — full height, fills right side ──────── */
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .32);
}

/* Bottom-left floating badge */
.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  animation: floatBadge 3s ease-in-out infinite;
}

.hib-icon {
  font-size: 22px;
}

.hib-title {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.hib-sub {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

/* Top-right floating pill */
.hero-img-badge2 {
  position: absolute;
  top: 24px;
  right: -16px;
  background: #2e7d32;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(46, 125, 50, .4);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floatBadge 3s ease-in-out infinite reverse;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* Mobile */
@media (max-width: 600px) {

  .hero-img-wrap,
  .hero-main-img {
    min-height: 320px;
    border-radius: 16px;
  }

  .hero-img-badge {
    left: 12px;
    bottom: 12px;
  }

  .hero-img-badge2 {
    right: 12px;
    top: 12px;
  }
}



/* ══════════════════════════════════════════════
   PASTE THIS at the bottom of your css/style.css
   REPLACES the old .gallery-grid styles
══════════════════════════════════════════════ */

/* ── FOOD PRODUCT CARDS GRID ── */
.food-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.food-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

/* ── Image area — click opens lightbox ── */
.food-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  background: var(--green-light);
  flex-shrink: 0;
}

.food-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease, filter 0.3s;
}

.food-card-img:hover img {
  transform: scale(1.07);
  filter: brightness(0.88);
}

/* ── Placeholder shown when no image yet ── */
.food-card-img .fc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-light), rgba(42, 92, 42, 0.12));
}

.fc-placeholder span {
  font-size: 52px;
}

.fc-placeholder p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Hover overlay with zoom icon ── */
.food-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
}

.food-card-img:hover .food-card-img-overlay {
  opacity: 1;
}

.fc-zoom-icon {
  background: white;
  color: var(--black);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* ── Badge on image top-left ── */
.food-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

.food-card-badge.badge-hot {
  background: #e23744;
}

.food-card-badge.badge-new {
  background: var(--gold);
  color: var(--black);
}

/* ── Card body: name + description ── */
.food-card-body {
  padding: 18px 18px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.food-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.25;
}

.food-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

/* ── Footer: price + WhatsApp order button ── */
.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  gap: 10px;
}

.food-card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.food-card-price small {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-left: 2px;
}

.food-card-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.2s;
}

.food-card-order:hover {
  filter: brightness(1.1);
  transform: scale(1.04);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .food-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .food-cards-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  display: flex;
}

.search-icon {
  width: 20px !important;
  height: 20px !important;
}

.gp-card-text {
  font-size: 13px;
  text-align: justify;
  padding: 5px;
}



/* ── Trainer Hero Card ── */
.trainer-hero-card {
  background: linear-gradient(135deg, #0f1f0f 0%, #1a3a1a 60%, #0d2410 100%);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 480px;
  margin-bottom: 56px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trainer-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.trainer-hero-img {
  position: relative;
  overflow: hidden;
}

.trainer-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.5s;
}

.trainer-hero-card:hover .trainer-hero-img img {
  transform: scale(1.04);
}

.trainer-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, #1a3a1a 100%);
}

.trainer-hero-content {
  padding: 48px 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trainer-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: #4caf50;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 20px;
}

.trainer-hero-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  color: white;
  line-height: 1.1;
  margin-bottom: 8px;
}

.trainer-hero-name em {
  font-style: italic;
  color: #9ed89e;
}

.trainer-hero-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.trainer-hero-bio {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  max-width: 460px;
}

.trainer-trophies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.trophy-pill {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.trainer-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trainer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.trainer-cta-btn.green {
  background: #2a5c2a;
  color: white;
}

.trainer-cta-btn.green:hover {
  background: #3d8b3d;
}

.trainer-cta-btn.wa {
  background: #25d366;
  color: white;
}

.trainer-cta-btn.wa:hover {
  filter: brightness(1.1);
}

.trainer-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.t-stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #4caf50;
  line-height: 1;
}

.t-stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ── Transformations sub-heading ── */
.transform-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.transform-section-title h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #111;
  white-space: nowrap;
}

.transform-section-title h3 em {
  font-style: italic;
  color: #2a5c2a;
}

.transform-section-title .ts-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #e0e0e0, transparent);
}

.transform-section-title .ts-count {
  background: #e8f5e8;
  color: #2a5c2a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

/* ── Transformation Card Grid ── */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}

.transform-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.transform-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}

.transform-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s;
}

.transform-card:hover .transform-card-img img {
  transform: scale(1.05);
}

.transform-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.transform-card:hover .transform-card-img-overlay {
  opacity: 1;
}

.transform-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(42, 92, 42, 0.88);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.transform-card-body {
  padding: 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.transform-card-client {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #111;
  margin-bottom: 8px;
}

.transform-card-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e8;
  color: #2a5c2a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}

.transform-card-story {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  font-weight: 600;
  text-align: justify;

}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .trainer-hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .trainer-hero-img {
    height: 340px;
  }

  .trainer-hero-img::after {
    background: linear-gradient(to top, #1a3a1a 0%, transparent 60%);
  }

  .trainer-hero-content {
    padding: 32px 28px 40px;
  }

  .transform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .transform-grid {
    grid-template-columns: 1fr;
  }

  .trainer-stats-row {
    gap: 20px;
  }
}



/* ── TRANSFORMATION VIDEOS ── */
.transform-videos {
  margin-top: 60px;
}

.tv-header {
  text-align: center;
  margin-bottom: 32px;
}

.tv-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
}

.tv-header em {
  color: var(--green);
}

.tv-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* GRID */
.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.tv-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.tv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* VIDEO */
.tv-video {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tv-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.tv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.tv-card:hover .tv-overlay {
  opacity: 1;
}

.tv-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: white;
  font-size: 20px;
  cursor: pointer;
}

/* INFO */
.tv-info {
  padding: 14px 16px;
}

.tv-name {
  font-weight: 700;
  font-size: 14px;
}

.tv-result {
  font-size: 12px;
  color: var(--green);
  margin-top: 4px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .tv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .tv-grid {
    grid-template-columns: 1fr;
  }
}



/* ── SIDD COMBO SECTION ── */
.sidd-combo {
  padding: 60px 48px;
}

.sidd-combo-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  border-radius: 20px;
  overflow: hidden;
  align-items: center;
}

/* IMAGE SIDE */
.sidd-combo-img {
  position: relative;
  height: 420px;
}

.sidd-combo-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* DARK OVERLAY */
.sidd-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.sidd-overlay-text {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

/* CONTENT */
.sidd-combo-content {
  padding: 40px;
  /* max-width: 520px; */
}

.sidd-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 10px;
}

.sidd-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 10px;
}

.sidd-name em {
  color: var(--green);
}

.sidd-title {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.sidd-desc {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SERVICES */
.sidd-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.sidd-services span {
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
}

/* CTA */
.sidd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sidd-btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.sidd-btn.primary {
  background: var(--green);
  color: #fff;
}

.sidd-btn.wa {
  background: #25D366;
  color: #fff;
}

/* STATS */
.sidd-stats {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.sidd-stats strong {
  font-size: 18px;
}

.sidd-stats span {
  font-size: 12px;
  color: #666;
  margin-left: 5px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .sidd-combo-card {
    grid-template-columns: 1fr;
  }

  .sidd-combo-img {
    height: 260px;
  }

  .sidd-combo-content {
    padding: 30px;
  }
}

/* ── INSTAGRAM SECTION ── */
.insta-section {
  padding: 80px 48px;
  text-align: center;
  background: #fff;
}

.insta-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
}

.insta-header em {
  color: var(--green);
}

.insta-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* CARDS */
.insta-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.insta-card {
  width: 260px;
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.insta-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.insta-icon {
  font-size: 28px;
  /* margin-bottom: 12px; */
}

/* TEXT */
.insta-name {
  font-weight: 700;
  margin-bottom: 6px;
}

.insta-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

/* BUTTON */
.insta-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* RESPONSIVE */
@media(max-width:600px) {
  .insta-section {
    padding: 50px 20px;
  }
}

.getfit-brand-logo {
  width: 50px;
  margin-right: 6px;
}

.getfit-brand-logo-instagram {
  width: 100px;
  margin-right: 6px;
  padding: 20px;
  display: inline-block;
}

.zomato_icon {
  width: 40px;
  vertical-align: middle;
}

.swiggy_icon {
  width: 20px;
  vertical-align: middle;
}


/* ── VEG / NON-VEG INDICATOR DOT ── */
.food-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px 3px 5px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 4px;
}

.food-type-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.food-type-badge.veg {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.food-type-badge.veg .dot {
  background: #2e7d32;
}

.food-type-badge.nonveg {
  background: #fce4ec;
  color: #880e4f;
  border: 1px solid #f48fb1;
}

.food-type-badge.nonveg .dot {
  background: #c62828;
}

.food-type-badge.drink {
  background: #e3f2fd;
  color: #0d47a1;
  border: 1px solid #90caf9;
}

.food-type-badge.drink .dot {
  background: #1565c0;
}

/* ── CARD NAME — centered, clean ── */
.food-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: #111;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
}

/* ── CARD BODY — centered layout ── */
.food-card-body {
  padding: 14px 14px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ── CARD FOOTER — flex centered ── */
.food-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.food-card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #2a5c2a;
  font-weight: 700;
  text-align: center;
}

.food-card-price small {
  font-size: 11px;
  color: #666;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-left: 2px;
}

/* ── CATEGORY SECTION HEADER ── */
.cat-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 24px;
}

.cat-section-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #111;
  white-space: nowrap;
}

.cat-section-header h3 em {
  color: #2a5c2a;
  font-style: italic;
}

.cat-section-header .cat-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #e0e0e0, transparent);
}

.cat-section-header .cat-count {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  background: #f0f0f0;
  padding: 3px 12px;
  border-radius: 20px;
}

/* ── CATEGORY PILL ON IMAGE ── */
.food-card-badge {
  z-index: 2;
}

/* ── FILTER TABS — updated for 4 tabs ── */
.gp-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 40px 6vw 0;
  flex-wrap: wrap;
}

.gp-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}

.gp-tab:hover {
  border-color: #2e7d32;
  color: #2e7d32;
}

.gp-tab.active {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

/* ── CATEGORY SECTION VISIBILITY ── */
.cat-section {
  transition: opacity 0.2s;
}

.cat-section.hidden {
  display: none;
}

/* ── CARD IMG HEIGHT ── */
.food-card-img {
  height: 190px;
}

/* Fix order button full-width on centered layout */
.food-card-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.2s;
  width: 100%;
}

.food-card-order:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

#personaltraining {
  padding: 100px 48px;
  background: var(--warm-white);
}

.training-full-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}



@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 64px;
  }

  .brand-logo {
    width: 60px;
    height: auto;
    margin-top: 0;
  }

  .getfit-brand-logo {
    display: block;
    width: 40px;/* optional: hide 2nd logo */
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tag {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .nav-order {
    display: none; /* optional */
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding: 40px 20px;
  }

  .hero-h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 16px;
  }
}



@media (max-width: 600px) {
  .food-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-left,
  .about-right {
    padding: 40px 20px;
  }

  .about-left h2,
  .about-right h3 {
    font-size: 26px;
  }
}


@media (max-width: 768px) {
  a, button {
    min-height: 44px;
  }
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}