/* =============================================
   Bizzy Chefs – Custom Stylesheet
   Bootstrap 5 + Custom Honey/Bee Theme
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --bc-orange:      #FF6B1A;
  --bc-orange-dark: #E05510;
  --bc-honey:       #FFB800;
  --bc-honey-light: #FFD966;
  --bc-green:       #4CAF50;
  --bc-green-dark:  #388E3C;
  --bc-purple:      #9C27B0;
  --bc-blue:        #2196F3;
  --bc-dark:        #2C2A27;
  --bc-cream:       #FFFBF0;
  --bc-grey:        #6C757D;
  --bc-white:       #FFFFFF;
  --bc-shadow:      0 6px 28px rgba(0,0,0,0.12);
  --bc-radius:      18px;
  --bc-font-head:   'Fredoka One', cursive;
  --bc-font-body:   'Nunito', sans-serif;
  --bc-overlay-alpha: 0.65;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--bc-font-body);
  color: var(--bc-dark);
  background-color: var(--bc-white);
  line-height: 1.75;
}

h1, h2, h3, h4, h5 {
  font-family: var(--bc-font-head);
  font-weight: 500;
  letter-spacing: 0.2px;
  word-spacing: 0.12em;
}

a {
  color: var(--bc-orange);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--bc-orange-dark); }

img { max-width: 100%; }

/* ---------- Utility ---------- */
.text-orange    { color: var(--bc-orange) !important; }
.text-honey     { color: var(--bc-honey)  !important; }
.bg-cream       { background-color: var(--bc-cream) !important; }
.bg-orange      { background-color: var(--bc-orange) !important; }
.bg-honey       { background-color: var(--bc-honey)  !important; }
.bg-dark-bc     { background-color: var(--bc-dark)   !important; }
.fw-bold {
  font-weight: 500 !important;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ---------- Navbar ---------- */
.bc-navbar {
  background: var(--bc-white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
  transition: background .3s;
}

.bc-navbar .navbar-brand {
  padding: 2px 0;
}
.bc-logo {
  height: 96px;
  width: auto;
  display: block;
}
.bc-navbar .navbar-brand span { color: var(--bc-dark); }

.bc-navbar .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bc-dark);
  padding: 0.5rem 1rem !important;
  transition: color .2s;
  position: relative;
}
.bc-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--bc-orange);
  transform: scaleX(0);
  transition: transform .25s;
}
.bc-navbar .nav-link:hover,
.bc-navbar .nav-link.active { color: var(--bc-orange); }
.bc-navbar .nav-link:hover::after,
.bc-navbar .nav-link.active::after { transform: scaleX(1); }

.bc-navbar .btn-nav-cta {
  background: var(--bc-orange);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.3rem !important;
  font-weight: 800;
  transition: background .2s, transform .2s;
}
.bc-navbar .btn-nav-cta:hover {
  background: var(--bc-orange-dark);
  transform: translateY(-2px) scale(1.05);
}
.bc-navbar .btn-nav-cta::after { display: none; }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* Top bar */
.top-bar {
  background: var(--bc-dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 6px 0;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--bc-honey); }
.top-bar .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-left: 6px;
  transition: background .2s;
}
.top-bar .social-icon:hover { background: var(--bc-orange); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  background: url('../images/Banner Bgr.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,42,39,var(--bc-overlay-alpha)) 0%, rgba(255,107,26,var(--bc-overlay-alpha)) 60%, rgba(255,184,0,var(--bc-overlay-alpha)) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--bc-honey);
  color: var(--bc-dark);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 14px rgba(255,184,0,0.45);
}
.hero h1 {
  font-family: var(--bc-font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.45;
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-btns .btn { min-width: 160px; }

/* Hero scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  font-size: 1.5rem;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Buttons ---------- */
.btn-bc-primary {
  background: var(--bc-orange);
  border: 3px solid var(--bc-orange);
  color: #fff;
  font-weight: 800;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  transition: all .2s;
  letter-spacing: 0.3px;
}
.btn-bc-primary:hover {
  background: var(--bc-orange-dark);
  border-color: var(--bc-orange-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(255,107,26,0.45);
}
.btn-bc-outline {
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
  font-weight: 800;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  transition: all .2s;
}
.btn-bc-outline:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}

/* ---------- Section Headings ---------- */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.5rem;
}
.section-divider {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--bc-orange), var(--bc-honey));
  border-radius: 50px;
  margin: 0 auto 1.5rem;
}
.section-divider.left {
  margin-left: 0;
}

/* ---------- Stat / Feature Cards ---------- */
.stat-card {
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
  padding: 36px 24px;
  text-align: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  border-top: 5px solid var(--bc-orange);
}
.stat-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}
.stat-card .stat-icon {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  color: var(--bc-orange);
}
.stat-card .stat-number {
  font-family: var(--bc-font-head);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--bc-dark);
}
.stat-card .stat-label {
  color: var(--bc-grey);
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 4px;
}

/* ---------- Hive Cards ---------- */
.hive-card {
  border-radius: var(--bc-radius);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  background: var(--bc-white);
  border: none;
}
.hive-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.hive-card .hive-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.hive-card .hive-icon-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.hive-card .card-body { padding: 2rem; }
.hive-card .card-title {
  font-family: var(--bc-font-head);
  font-size: 1.4rem;
  font-weight: 400;
}

/* EGG */
.hive-egg   .hive-icon-wrap { background: transparent; color: var(--bc-orange); }
.hive-egg   { border-top: 5px solid var(--bc-orange); }
/* JELLY & NECTAR */
.hive-jelly .hive-icon-wrap { background: transparent; color: var(--bc-honey); }
.hive-jelly { border-top: 5px solid var(--bc-honey); }
/* HONEY */
.hive-honey .hive-icon-wrap { background: transparent; color: var(--bc-green); }
.hive-honey { border-top: 5px solid var(--bc-green); }

/* ---------- Accordion (Lessons) ---------- */
.bc-accordion .accordion-item {
  border: none;
  border-radius: var(--bc-radius) !important;
  margin-bottom: 14px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  overflow: hidden;
}
.bc-accordion .accordion-button {
  font-family: var(--bc-font-head);
  font-weight: 400;
  font-size: 1.1rem;
  background: var(--bc-white);
  color: var(--bc-dark);
  border-radius: var(--bc-radius) !important;
  padding: 1.2rem 1.4rem;
}
.bc-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--bc-orange) 0%, var(--bc-honey) 100%);
  color: #fff;
  box-shadow: none;
}
.bc-accordion .accordion-button:focus { box-shadow: none; }
.bc-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.bc-accordion .accordion-body {
  padding: 1.4rem;
  background: var(--bc-cream);
}
.bc-accordion ul { padding-left: 1.3rem; margin-bottom: 0; }
.bc-accordion ul li { margin-bottom: 6px; }

/* ---------- Programme Info ---------- */
.programme-icon-box {
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  padding: 24px;
  box-shadow: var(--bc-shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: transform .2s;
}
.programme-icon-box:hover { transform: translateX(4px); }
.programme-icon-box .pi-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bc-cream);
  color: var(--bc-orange);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.programme-icon-box h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.programme-icon-box p {
  font-size: 0.88rem;
  color: var(--bc-grey);
  margin-bottom: 0;
}

/* ---------- Contact Form Flower ---------- */
.contact-form-section {
  overflow: hidden;
}
.contact-form-row {
  align-items: start;
}
.buzz-bgr-wrap {
  padding-top: 8px;
}
.buzz-bgr-image {
  width: 700px;
  height: 400px;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}
.contact-flower-wrap {
  padding-top: clamp(70px, 8vw, 120px);
}
.contact-form-flower {
  width: min(100%, 520px);
  max-height: 620px;
  object-fit: contain;
  transform: translate(-108px, -52px);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: url('../images/Bee Lanscape.png') center/cover no-repeat;
  color: #fff;
  border-radius: var(--bc-radius);
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(255,107,26,0.3);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 140, 0, var(--bc-overlay-alpha));
  pointer-events: none;
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-banner p  { opacity: 0.95; font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; font-weight: 700; }

.journey-icon-img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}
.journey-step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--journey-step-bg, var(--bc-orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 auto 1rem;
}
.journey-row {
  display: flex;
  flex-wrap: nowrap;
}
.journey-step {
  flex: 1 1 0;
}

/* ---------- Gallery Page ---------- */
.gallery-item {
  border-radius: var(--bc-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.gallery-item img {
  width: 100%;
  height: clamp(390px, 42vw, 500px);
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,99,26,var(--bc-overlay-alpha));
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 2rem; }

/* Lightbox */
.lightbox-modal .modal-dialog {
  max-width: min(96vw, 1400px);
  margin: 1rem auto;
}
.lightbox-modal .modal-content {
  background: rgba(14,14,14,0.96);
  border: none;
  border-radius: 14px;
  overflow: hidden;
}
.lightbox-modal .modal-body {
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-modal img {
  max-height: 84vh;
  max-width: 94vw;
  width: auto;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  background: rgba(25,25,25,0.5);
  color: #fff;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%);
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .lightbox-modal .modal-body { min-height: 74vh; }
  .lightbox-modal img { max-height: 70vh; }
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--bc-cream);
  border-radius: var(--bc-radius);
  padding: 28px 24px;
  text-align: center;
  border-top: 5px solid var(--bc-orange);
  height: 100%;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.contact-info-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--bc-shadow);
}
.contact-info-card .ci-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bc-orange);
  color: #fff;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-info-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bc-grey);
}
.contact-info-card p, .contact-info-card a {
  font-weight: 600;
  color: var(--bc-dark);
  margin-bottom: 0;
}

.vision-mission-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vision-mission-head i {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ---------- Forms ---------- */
.bc-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.bc-form .form-control,
.bc-form .form-select {
  border: 2.5px solid #E9ECEF;
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  transition: border-color .2s, box-shadow .2s;
}
.bc-form .form-control:focus,
.bc-form .form-select:focus {
  border-color: var(--bc-orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,0.12);
  outline: none;
}
.bc-form textarea.form-control { min-height: 130px; resize: vertical; }

.bc-form .form-check-input:checked {
  background-color: var(--bc-orange);
  border-color: var(--bc-orange);
}
.bc-form .form-check-input:focus { box-shadow: 0 0 0 3px rgba(232,99,26,0.12); }

/* ---------- About Page ---------- */
.about-img-wrap {
  position: relative;
  border-radius: var(--bc-radius);
  overflow: hidden;
}
.about-img-wrap img {
  border-radius: var(--bc-radius);
  width: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(255,107,26,0.7);
  color: #fff;
  border-radius: var(--bc-radius);
  padding: 12px 16px;
  width: fit-content;
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(232,99,26,0.28);
}
.about-badge-thoko {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255,107,26,0.7);
  border-radius: var(--bc-radius);
  width: fit-content;
  min-width: 220px;
  max-width: 100%;
}
.about-badge-honeypot {
  display: block;
  width: 26px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin-bottom: 2px;
}
.about-badge-thoko-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.2px;
  margin-bottom: 0px;
}
.about-badge-thoko-role {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  opacity: 0.92;
  white-space: nowrap;
}
.about-badge-icon {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto 6px;
  object-fit: contain;
}
.about-badge-text {
  display: block;
  font-size: 0.78rem;
  opacity: 0.9;
  white-space: nowrap;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-cream);
  border: 2px solid rgba(255,107,26,0.25);
  border-radius: 50px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  margin: 4px;
  color: var(--bc-dark);
  transition: transform .2s, box-shadow .2s;
}
.value-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,107,26,0.2);
}
.value-pill i { color: var(--bc-orange); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background:
    linear-gradient(rgba(44,42,39,var(--bc-overlay-alpha)), rgba(123,63,0,var(--bc-overlay-alpha))),
    url('../images/honeycomb.png') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '🍯';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--bc-font-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.page-hero .breadcrumb-item.active { color: var(--bc-honey); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,0.4); }

.contact-hero::after {
  content: none;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
}
.contact-hero-hive {
  position: absolute;
  right: 4%;
  top: 50%;
  width: clamp(190px, 22vw, 320px);
  height: auto;
  max-height: calc(100% - 24px);
  transform: translateY(-50%);
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.bc-footer {
  background: var(--bc-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.bc-footer .footer-brand {
  font-family: var(--bc-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bc-orange);
}
.bc-footer .footer-brand span { color: #fff; }
.bc-logo-footer {
  height: 90px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.bc-footer p { font-size: 0.9rem; line-height: 1.8; }
.bc-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.bc-footer .footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color .2s, padding-left .2s;
}
.bc-footer .footer-program-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: text-bottom;
  margin-right: 8px;
}
.bc-footer .footer-link:hover {
  color: var(--bc-honey);
  padding-left: 6px;
}
.bc-footer .footer-contact {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.bc-footer .footer-contact i {
  color: var(--bc-orange);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.bc-footer .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-right: 8px;
  transition: all .2s;
}
.bc-footer .social-btn:hover {
  background: var(--bc-orange);
  border-color: var(--bc-orange);
  color: #fff;
  transform: translateY(-2px);
}
.bc-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 40px;
}

/* ---------- Honeycomb Decoration ---------- */
.honeycomb-bg {
  position: relative;
  overflow: hidden;
}
.honeycomb-bg::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 320px; height: 320px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2L56 17v30L30 57 4 47V17z' fill='none' stroke='%23E8631A' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 991.98px) {
  .hero { background-position: 100% -80px; }
  .bc-navbar .btn-nav-cta {
    display: inline-block;
    margin-top: 8px;
  }
  .hero { min-height: 70vh; }
  .section-pad { padding: 60px 0; }
  .cta-banner { padding: 40px 24px; }
  .contact-flower-wrap {
    padding-top: clamp(50px, 7vw, 90px);
  }
  .contact-form-flower {
    width: min(100%, 400px);
    max-height: 500px;
    transform: translate(-64px, -30px);
  }
  .contact-hero-hive {
    width: clamp(150px, 26vw, 240px);
    max-height: calc(100% - 20px);
    right: 3%;
  }
}

@media (max-width: 767.98px) {
  .hero { min-height: 60vh; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .section-pad { padding: 50px 0; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .vision-mission-head h4 { font-size: 1.4rem; }
  .cta-bee-about { width: min(100%, 260px); }
  .journey-icon-img {
    width: 106px;
    height: 106px;
  }
  .journey-step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  .journey-row { flex-wrap: wrap; }
  .contact-form-row {
    align-items: start;
  }
  .contact-flower-wrap {
    display: none !important;
  }
  .buzz-bgr-wrap {
    margin-top: 1rem !important;
  }
  .contact-hero-hive {
    width: 130px;
    max-height: calc(100% - 18px);
    right: 3%;
  }
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bc-orange);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,99,26,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 999;
  cursor: pointer;
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}
#backToTop:hover { transform: translateY(-3px); }

/* ---------- Wavy Divider ---------- */
.wavy-divider {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}
.wavy-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ---------- Coloured Stat Cards ---------- */
.stat-orange { border-top-color: var(--bc-orange) !important; }
.stat-orange .stat-icon,
.stat-orange .stat-number { color: var(--bc-orange); }

.stat-honey { border-top-color: var(--bc-honey) !important; }
.stat-honey .stat-icon,
.stat-honey .stat-number { color: #c48a00; }

.stat-green { border-top-color: var(--bc-green) !important; }
.stat-green .stat-icon,
.stat-green .stat-number { color: var(--bc-green-dark); }

.stat-purple { border-top-color: var(--bc-blue) !important; }
.stat-purple .stat-icon,
.stat-purple .stat-number { color: var(--bc-blue); }

/* ---------- Flying Bee Banner ---------- */
.bee-banner-strip {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 340px;
}
.bee-banner-img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- Food Background Section ---------- */
.food-bg-section {
  position: relative;
}
.food-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/food-backgroung.gif') center/cover repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.food-bg-section > .container {
  position: relative;
  z-index: 1;
}

/* ---------- Bee Mascot ---------- */
.hero-bee {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.4));
  animation: bee-float 3.5s ease-in-out infinite;
}
.cta-bee {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  animation: bee-float 3.5s ease-in-out infinite;
}
.cta-bee-about {
  width: min(100%, 340px);
}
.sidebar-bee {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 16px rgba(232,99,26,0.25));
  animation: bee-float 3.5s ease-in-out infinite;
}
@keyframes bee-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
