/**
 * BHK Homepage — Our Meals (bold editorial card design)
 */
.bhk-meals-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(127, 184, 45, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 100%, rgba(90, 154, 26, 0.16) 0%, transparent 50%),
    linear-gradient(165deg, #0f1410 0%, #1a2418 38%, #243020 100%) !important;
}

.bhk-meals-section .vector {
  opacity: 0.35;
  filter: brightness(1.4);
}

/* Dot grid overlay */
.bhk-meals-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.bhk-meals-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 184, 45, 0.25) 0%, transparent 68%);
  pointer-events: none;
  animation: bhkMealsGlow 7s ease-in-out infinite alternate;
}

@keyframes bhkMealsGlow {
  from { transform: scale(1) translate(0, 0); opacity: 0.6; }
  to   { transform: scale(1.12) translate(20px, -15px); opacity: 1; }
}

.bhk-meals-section .container {
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.bhk-meals-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bhk-meals-section .pq-section-sub-title {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--bhk-brand, #7fb82d), var(--bhk-brand-dark, #5a9a1a));
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(127, 184, 45, 0.4);
}

.bhk-meals-section .pq-section-title {
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.bhk-meals-section .pq-section-title-style-1 > p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.bhk-meals-head__line {
  display: block;
  width: 72px;
  height: 4px;
  margin: 1.25rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bhk-brand-light, #9dce5c), var(--bhk-brand, #7fb82d));
}

/* ── Carousel ── */
.bhk-meals-section .owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
  padding: 1.25rem 0 0.5rem;
}

.bhk-meals-section .owl-carousel .owl-item {
  display: flex;
  height: auto;
}

.bhk-meals-section .owl-carousel .item {
  display: flex;
  width: 100%;
  padding: 1rem 0.25rem 1.5rem;
}

.bhk-meals-section .pq-mb-400 {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ── Meal card — editorial stack ── */
.bhk-meal-card {
  --card-accent: #7fb82d;
  --card-accent-soft: rgba(127, 184, 45, 0.18);
  --card-glow: rgba(127, 184, 45, 0.35);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 0 0 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(8px);
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.bhk-meal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, transparent 45%, var(--card-accent-soft) 100%);
  pointer-events: none;
}

.bhk-meal-card:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: rgba(127, 184, 45, 0.45);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(127, 184, 45, 0.2),
    0 0 48px var(--card-glow);
}

/* Large watermark number */
.bhk-meal-card__num {
  position: absolute;
  top: -0.15rem;
  right: 1rem;
  z-index: 0;
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
}

/* Diagonal accent slash */
.bhk-meal-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 120px;
  z-index: 0;
  background: linear-gradient(135deg, var(--card-accent) 0%, transparent 72%);
  border-radius: 28px 0 60% 0;
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.bhk-meal-card:hover .bhk-meal-card__accent {
  opacity: 0.85;
}

/* Theme colors per card */
.bhk-meal-card--theme-1 { --card-accent: #7fb82d; --card-accent-soft: rgba(127,184,45,0.2); --card-glow: rgba(127,184,45,0.35); }
.bhk-meal-card--theme-2 { --card-accent: #e8a84a; --card-accent-soft: rgba(232,168,74,0.2); --card-glow: rgba(232,168,74,0.3); }
.bhk-meal-card--theme-3 { --card-accent: #e07a5f; --card-accent-soft: rgba(224,122,95,0.2); --card-glow: rgba(224,122,95,0.28); }
.bhk-meal-card--theme-4 { --card-accent: #52b788; --card-accent-soft: rgba(82,183,136,0.2); --card-glow: rgba(82,183,136,0.32); }
.bhk-meal-card--theme-5 { --card-accent: #9b5de5; --card-accent-soft: rgba(155,93,229,0.18); --card-glow: rgba(155,93,229,0.28); }
.bhk-meal-card--theme-6 { --card-accent: #f4845f; --card-accent-soft: rgba(244,132,95,0.2); --card-glow: rgba(244,132,95,0.3); }

/* Image area — pops out of card */
.bhk-meal-card__visual {
  position: relative;
  z-index: 2;
  margin: -1.25rem 1.25rem 0;
  padding-top: 0.5rem;
}

.bhk-meal-card__ring {
  position: absolute;
  z-index: 0;
  inset: -10px -10px 10px -10px;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50% 50% 40% 40% / 30% 30% 70% 70%;
  transition: transform 0.5s ease, border-color 0.35s ease;
}

.bhk-meal-card:hover .bhk-meal-card__ring {
  transform: rotate(8deg) scale(1.04);
  border-color: var(--card-accent);
}

.bhk-meal-card__img-wrap {
  position: relative;
  z-index: 1;
  height: 240px;
  overflow: hidden;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 6px var(--card-accent-soft);
  transform: rotate(-2deg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bhk-meal-card--theme-2 .bhk-meal-card__img-wrap { transform: rotate(2deg); }
.bhk-meal-card--theme-3 .bhk-meal-card__img-wrap { transform: rotate(-1.5deg); }
.bhk-meal-card--theme-4 .bhk-meal-card__img-wrap { transform: rotate(1.5deg); }
.bhk-meal-card--theme-5 .bhk-meal-card__img-wrap { transform: rotate(-2.5deg); }
.bhk-meal-card--theme-6 .bhk-meal-card__img-wrap { transform: rotate(2deg); }

.bhk-meal-card:hover .bhk-meal-card__img-wrap {
  transform: rotate(0deg) scale(1.03);
}

.bhk-meal-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.bhk-meal-card:hover .bhk-meal-card__img {
  transform: scale(1.1);
}

.bhk-meal-card__img.bhk-meal-pos--bottom { object-position: center 72%; }
.bhk-meal-card__img.bhk-meal-pos--mid-low { object-position: center 58%; }

.bhk-meal-card__tag {
  position: absolute;
  z-index: 3;
  bottom: -0.65rem;
  left: 1.25rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--card-accent);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Body */
.bhk-meal-card__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 0;
}

.bhk-meal-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.bhk-meal-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bhk-meal-card__title a:hover {
  color: var(--card-accent);
}

.bhk-meal-card__text {
  flex: 1;
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.bhk-meal-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  align-self: flex-start;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: 2px solid var(--card-accent);
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, gap 0.25s ease;
}

.bhk-meal-card__btn i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.bhk-meal-card__btn:hover {
  color: #0f1410;
  background: var(--card-accent);
  transform: translateX(4px);
  box-shadow: 0 10px 28px var(--card-glow);
}

.bhk-meal-card__btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .bhk-meal-card__img-wrap {
    height: 210px;
  }

  .bhk-meal-card__num {
    font-size: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bhk-meals-section::after,
  .bhk-meal-card,
  .bhk-meal-card__img-wrap,
  .bhk-meal-card__ring {
    animation: none;
    transition: none;
  }
}
