/* Font cdn link */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Common css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* ===========================
NAVBAR SECTION CSS 
============================ */

/* Navbar base */
.bb-navbar {
  background-color: #d12525;
  padding: 10px 0;
}

/* ---- Logo ---- */
.bb-brand {
  text-decoration: none;
}

.bb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.bb-bangla {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bb-bite {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Georgia", serif;
}

/* ---- Nav links ---- */
.bb-nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.bb-nav-link:hover,
.bb-nav-link.active {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.15);
}

.bb-nav-link.dropdown-toggle::after {
  margin-left: 4px;
}

/* ---- Dropdown menu ---- */
.bb-dropdown {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 6px;
  min-width: 200px;
  margin-top: 8px !important;
}

.bb-dropdown .dropdown-item {
  font-size: 15px;
  font-weight: 500;
  color: #2d2d2d;
  padding: 10px 16px;
  border-radius: 6px;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.bb-dropdown .dropdown-item:hover {
  background-color: #d12525;
  color: #fff;
}

/* Override Bootstrap active/focus states */
.bb-dropdown .dropdown-item:active,
.bb-dropdown .dropdown-item:focus,
.bb-dropdown .dropdown-item.active {
  background-color: #d12525;
  color: #fff;
  outline: none;
}

/* ---- Sub-dropdown (nested) ---- */
.bb-has-submenu {
  position: relative;
}

.bb-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb-submenu-toggle .bi-chevron-right {
  font-size: 12px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bb-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 96%;
  margin-top: 0 !important;
  margin-left: 6px;
  min-width: 180px;
  animation: bbFadeIn 0.15s ease;
}

.bb-has-submenu:hover > .bb-submenu {
  display: block;
}

.bb-has-submenu:hover > .bb-submenu-toggle .bi-chevron-right {
  transform: rotate(90deg);
  opacity: 1;
}

.bb-submenu .dropdown-item {
  display: flex;
  align-items: center;
}

.bb-submenu .dropdown-item .bi-tag {
  color: #d12525;
  transition: color 0.18s ease;
}

.bb-submenu .dropdown-item .bi-stars {
  color: #d12525;
  transition: color 0.18s ease;
}

.bb-submenu .dropdown-item:hover .bi-tag,
.bb-submenu .dropdown-item:hover .bi-stars {
  color: #fff;
}

@keyframes bbFadeIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---- Right side: Sign in ---- */
.bb-signin {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bb-signin:hover {
  opacity: 0.8;
  color: #fff;
}

/* ---- Right side: Get a Quote button ---- */
.bb-quote-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.bb-quote-btn:hover {
  background-color: #fff;
  color: #c0251d;
}

/* ===============================
 BANNER SECTION CSS 
================================= */

.bb-banner {
  width: 100%;
  position: relative;
}

.bb-swiper {
  width: 100%;
  height: 100%;
}

.bb-slide {
  position: relative;
  height: 620px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bb-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.bb-slide .container {
  position: relative;
  z-index: 2;
}

/* ---- Slide content ---- */
.bb-slide-content {
  padding: 20px 0;
}

.bb-slide-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.bb-slide-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  letter-spacing: 0.2px;
}

/* ---- Slide buttons ---- */
.bb-slide-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #d12525;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bb-btn-primary:hover {
  background-color: #b01f1f;
  color: #fff;
  transform: translateY(-1px);
}

.bb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  background-color: transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bb-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Swiper navigation arrows ---- */
.bb-swiper-prev,
.bb-swiper-next {
  width: 46px !important;
  height: 46px !important;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  color: #fff;
}

.bb-swiper-prev:hover,
.bb-swiper-next:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

/* Hide default Swiper arrows, use Bootstrap Icons */
.bb-swiper-prev::after,
.bb-swiper-next::after {
  display: none;
}

.bb-swiper-prev .bi,
.bb-swiper-next .bi {
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

/* ---- Swiper pagination dots ---- */
.bb-swiper-pagination {
  bottom: 24px !important;
}

.bb-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bb-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d12525;
  transform: scale(1.3);
}

/* ---- Banner responsive ---- */
@media (max-width: 991.98px) {
  .bb-slide {
    height: 500px;
  }

  .bb-slide-title {
    font-size: 38px;
  }

  .bb-slide-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

@media (max-width: 575.98px) {
  .bb-slide {
    height: 420px;
  }

  .bb-slide-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .bb-slide-subtitle {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .bb-btn-primary,
  .bb-btn-outline {
    padding: 10px 20px;
    font-size: 14px;
  }

  .bb-swiper-prev,
  .bb-swiper-next {
    width: 36px !important;
    height: 36px !important;
  }

  .bb-swiper-prev .bi,
  .bb-swiper-next .bi {
    font-size: 16px;
  }
}

/* ===== END BANNER SECTION CSS ===== */

/* ===========================
SERVICES SECTION CSS
============================ */

.bb-services {
  background-color: #faf0f0;
  padding: 20px 0 20px;
}

/* ---- Section heading ---- */
.bb-section-head {
  text-align: center;
  margin-bottom: 20px;
}

.bb-section-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.bb-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bb-divider-line {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #d12525;
  border-radius: 2px;
}

.bb-divider-dot {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #e8a020;
  border-radius: 50%;
}

/* ---- Service card ---- */
.bb-service-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(209, 37, 37, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ---- Card image ---- */
.bb-service-img-wrap {
  position: relative;
  overflow: hidden;
}

.bb-service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-service-card:hover .bb-service-img {
  transform: scale(1.04);
}

/* ---- Icon badge ---- */
.bb-service-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background-color: #d12525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-service-icon .bi {
  font-size: 20px;
  color: #fff;
}

/* ---- Card body ---- */
.bb-service-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bb-service-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.bb-service-desc {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
  flex: 1;
}

/* ---- View Details button ---- */
.bb-service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  background-color: #d12525;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.2s ease;
}

.bb-service-btn:hover {
  background-color: #b01f1f;
  color: #fff;
}

/* ---- Services responsive ---- */
@media (max-width: 991.98px) {
  .bb-services {
    padding: 60px 0 70px;
  }

  .bb-section-title {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .bb-services {
    padding: 50px 0 60px;
  }

  .bb-section-title {
    font-size: 28px;
  }

  .bb-service-img {
    height: 190px;
  }
}

/* ===== END SERVICES SECTION CSS ===== */

/* ===========================
EXPLORE SECTION CSS
============================ */

.bb-explore {
  background-color: #fff;
  padding: 20px 0 20px;
}

.bb-explore .bb-section-head {
  margin-bottom: 28px;
}

/* ---- Tab buttons ---- */
.bb-explore-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.bb-tab-btn {
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  background-color: #fff;
  color: #555;
  transition: all 0.2s ease;
}

.bb-tab-btn.active {
    font-size: 18px;
    border-color: #d12525;
    color: #d12525;
    background-color: #fff;
    padding: 5px 40px;
}

.bb-tab-btn:hover:not(.active) {
  border-color: #bbb;
  color: #333;
}

/* ---- Panel toggle ---- */
.bb-explore-panel {
  display: none;
  position: relative;
  padding: 0;
}

.bb-explore-panel.active {
  display: block;
}

/* ---- Explore Swiper ---- */
.bb-explore-swiper {
  width: 100%;
  padding-bottom: 8px;
}

.bb-explore-swiper .swiper-wrapper {
  align-items: stretch;
}

.bb-explore-swiper .swiper-slide {
  height: auto;
}

/* ---- Dish card ---- */
.bb-dish-card {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #efefef;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---- Card image ---- */
.bb-dish-img-wrap {
  position: relative;
  overflow: hidden;
}

.bb-dish-img {
  width: 100%;
  height:  auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-dish-card:hover .bb-dish-img {
  transform: scale(1.04);
}

/* ---- Price badge ---- */
.bb-dish-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #d12525;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

/* ---- Tags ---- */
.bb-dish-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bb-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.bb-tag-protein {
  background-color: #ff6b35;
  color: #fff;
}

.bb-tag-grown {
  background-color: #28a745;
  color: #fff;
}

/* ---- Card body ---- */
.bb-dish-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.bb-dish-day {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.bb-dish-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

/* ---- Add to Cart button ---- */
.bb-dish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background-color: #d12525;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.2s ease;
}

.bb-dish-btn:hover {
  background-color: #b01f1f;
  color: #fff;
}


.modal-btn {

  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 11px 20px;
  background-color: #d12525;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom:5px;
}

/* Hover effect */
.modal-btn:hover {
  background-color: #a81c1c;
}

/* Tablet */
@media (max-width: 768px) {
  .modal-btn {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .modal-btn {
    font-size: 12px;
    padding: 9px 14px;
    border-radius: 30px;
  }
}
.modal-btn:hover {
  background-color: #b01f1f;
  color: #fff;
}

/* ---- Navigation arrows ---- */
.bb-explore-prev,
.bb-explore-next {
  width: 44px !important;
  height: 44px !important;
  background-color: #fff !important;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  top: 38% !important;
}

.bb-explore-prev {
  left: 0 !important;
}

.bb-explore-next {
  right: 0 !important;
}

.bb-explore-prev:hover,
.bb-explore-next:hover {
  border-color: #d12525;
  box-shadow: 0 4px 16px rgba(209, 37, 37, 0.15);
}

.bb-explore-prev::after,
.bb-explore-next::after {
  display: none;
}

.bb-explore-prev .bi,
.bb-explore-next .bi {
  font-size: 18px;
  color: #444;
}

.bb-explore-prev:hover .bi,
.bb-explore-next:hover .bi {
  color: #d12525;
}

/* ---- Explore responsive ---- */
@media (max-width: 991.98px) {
  .bb-explore {
    padding: 60px 0 70px;
  }

  .bb-explore-panel {
    padding: 0 40px;
  }
}

@media (max-width: 575.98px) {
  .bb-explore {
    padding: 50px 0 60px;
  }

  .bb-explore-panel {
    padding: 0 25px;
  }

  .bb-tab-btn {
    padding: 9px 22px;
    font-size: 14px;
  }

  .bb-dish-img {
    height: 180px;
  }
}

/* ===== END EXPLORE SECTION CSS ===== */

/* ===========================
WEEKS MENU SECTION CSS
============================ */

.bb-weeks {
  background-color: #faf0f0;
  padding: 20px 0 20px;
}

.bb-weeks > .container {
  max-width: 930px;
}

.bb-weeks-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0;
}

.bb-weeks-title span {
  color: #d12525;
}

.bb-weeks .bb-section-head {
  margin-bottom: 36px;
}

/* ---- Day selector ---- */
.bb-day-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .bb-day-selector {
    max-width: calc(100% - 90px);
  }
}

.bb-days-swiper {
  flex: 1;
  overflow: hidden;
}

.bb-days-swiper .swiper-slide {
  width: auto;
}

.bb-day-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1.5px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: 100%;
}

.bb-day-btn:hover {
  border-color: #d12525;
}

.bb-day-btn.active {
  background-color: #d12525;
  border-color: #d12525;
}

.bb-day-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.bb-day-date {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  line-height: 1.3;
}

.bb-day-btn.active .bb-day-name,
.bb-day-btn.active .bb-day-date {
  color: #fff;
}

/* Arrow buttons */
.bb-day-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
  color: #555;
  font-size: 14px;
}

.bb-day-arrow:hover {
  border-color: #d12525;
  color: #d12525;
}

/* ---- Menu detail card ---- */
.bb-weeks-card {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* ---- Image side ---- */
.bb-weeks-img-wrap {
  position: relative;
  flex: 0 0 48%;
  max-width: 48%;
}

.bb-weeks-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  min-height: 360px;
}

.bb-weeks-price {
  position: absolute;
  top: 18px;
  right: 18px;
  background-color: #d12525;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
}

/* ---- Detail side ---- */
.bb-weeks-detail {
  flex: 1;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-weeks-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bb-weeks-meal {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 22px;
  line-height: 1.2;
}

.bb-weeks-side-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bb-weeks-sides {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.bb-side-pill {
  padding: 6px 16px;
  border-radius: 50px;
  background-color: #fde8e8;
  color: #d12525;
  font-size: 13px;
  font-weight: 500;
}

.bb-weeks-order-btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  background-color: #d12525;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background-color 0.2s ease;
}

.bb-weeks-order-btn:hover {
  background-color: #b01f1f;
  color: #fff;
}

.bb-weeks-free {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  margin-bottom: 0;
}

/* ---- Weeks responsive ---- */
@media (max-width: 1400px) {
  .bb-weeks > .container {
    max-width: 895px;
  }
}
@media (max-width: 991.98px) {
  .bb-weeks {
    padding: 60px 0 70px;
  }

  .bb-weeks-title {
    font-size: 36px;
  }

  .bb-weeks-card {
    flex-direction: column;
  }

  .bb-weeks-img-wrap {
    flex: none;
    max-width: 100%;
  }

  .bb-weeks-img {
    min-height: 260px;
    max-height: 320px;
  }

  .bb-weeks-detail {
    padding: 28px 28px;
  }

  .bb-weeks-meal {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .bb-weeks {
    padding: 50px 0 60px;
  }

  .bb-weeks-title {
    font-size: 28px;
  }

  .bb-weeks-detail {
    padding: 22px 20px;
  }

  .bb-weeks-meal {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .bb-day-btn {
    min-width: 80px;
    padding: 10px 14px;
  }

  .bb-day-name {
    font-size: 13px;
  }

  .bb-day-date {
    font-size: 12px;
  }
}

/* ===== END WEEKS MENU SECTION CSS ===== */

/* ===========================
CORPORATE SECTION CSS
============================ */

.bb-corporate {
  background-color: #fff;
  padding: 20px 0 20px;
  border-bottom: 1px solid #e5e7eb;
}

/* ---- Title ---- */
.bb-corp-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 20px;
}

.bb-corp-title span {
  color: #d12525;
}

/* ---- Description ---- */
.bb-corp-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 34px;
}

/* ---- Features grid ---- */
.bb-corp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 38px;
}

.bb-corp-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bb-corp-feat-icon {
  width: 46px;
  height: 46px;
  background-color: #fae8e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-corp-feat-icon .bi {
  font-size: 20px;
  color: #d12525;
}

.bb-corp-feat-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.bb-corp-feat-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* ---- CTA button ---- */
.bb-corp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background-color: #d12525;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bb-corp-btn:hover {
  background-color: #b01f1f;
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Image wrap ---- */
.bb-corp-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.bb-corp-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ---- Stats overlay ---- */
.bb-corp-stats {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  display: flex;
  gap: 12px;
}

.bb-corp-stat {
  flex: 1;
  background-color: #fff;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bb-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #d12525;
  line-height: 1;
}

.bb-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

/* ---- Corporate responsive ---- */
@media (max-width: 991.98px) {
  .bb-corporate {
    padding: 60px 0 70px;
  }

  .bb-corp-title {
    font-size: 36px;
  }

  .bb-corp-img {
    height: 380px;
  }

  .bb-stat-num {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .bb-corp-img-wrap {
    margin-top: 10px;
  }

  .bb-corp-img {
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .bb-corporate {
    padding: 50px 0 60px;
  }

  .bb-corp-title {
    font-size: 30px;
  }

  .bb-corp-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bb-corp-img {
    height: 260px;
  }

  .bb-corp-stats {
    bottom: 14px;
    left: 14px;
    right: 14px;
    gap: 8px;
  }

  .bb-corp-stat {
    padding: 10px 6px;
    border-radius: 10px;
  }

  .bb-stat-num {
    font-size: 18px;
  }

  .bb-stat-label {
    font-size: 11px;
  }
}

/* ===== END CORPORATE SECTION CSS ===== */

/* ===========================
COMPANIES SECTION CSS
============================ */

.bb-companies {
  background-color: #fff;
  padding: 20px 0 20px;
  border-bottom: 1px solid #e5e7eb;
}

.bb-companies-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0;
  text-align: center;
}

.bb-companies .bb-section-head {
  margin-bottom: 44px;
}

/* ---- Logo Swiper ---- */
.bb-companies-swiper {
  padding-bottom: 40px !important;
}

/* ---- Logo card ---- */
.bb-logo-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  height: 120px;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.bb-logo-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d5dd;
}

.bb-logo-img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.2s ease;
}

/* ---- Pagination ---- */
.bb-companies-pagination {
  bottom: 0 !important;
}

.bb-companies-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 1;
}

.bb-companies-pagination .swiper-pagination-bullet-active {
  background-color: #d12525;
  transform: scale(1.3);
}

/* ---- Companies responsive ---- */
@media (max-width: 991.98px) {
  .bb-companies {
    padding: 55px 0 65px;
  }

  .bb-companies-title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .bb-companies {
    padding: 45px 0 55px;
  }

  .bb-companies-title {
    font-size: 20px;
  }

  .bb-logo-card {
    height: 100px;
    padding: 20px 16px;
  }

  .bb-logo-img {
    max-height: 52px;
  }
}

/* ===== END COMPANIES SECTION CSS ===== */

/* ===========================
WELCOME SECTION CSS
============================ */

.bb-welcome {
  background-color: #faf0f0;
  padding: 20px 0 20px;
}

/* ---- Heading ---- */
.bb-welcome-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.bb-welcome-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.15;
}

.bb-welcome-title span {
  color: #d12525;
}

.bb-welcome-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ---- Image grid ---- */
.bb-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

/* ---- Large left image ---- */
.bb-welcome-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.bb-welcome-img-main .bb-welcome-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.bb-welcome-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
}

.bb-welcome-img-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px;
  color: #fff;
}

.bb-welcome-img-label .bi {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bb-wlabel-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}

.bb-wlabel-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ---- Right stacked images ---- */
.bb-welcome-img-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-welcome-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
}

.bb-welcome-img-wrap .bb-welcome-img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bb-welcome-img-wrap:hover .bb-welcome-img {
  transform: scale(1.04);
}

/* Dark overlay for badge legibility */
.bb-welcome-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

/* ---- Image badge ---- */
.bb-welcome-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  backdrop-filter: none;
}

.bb-welcome-img-badge .bi {
  color: #fff;
  font-size: 16px;
}

/* ---- Stats row ---- */
.bb-welcome-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.bb-welcome-stat {
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(209, 37, 37, 0.08);
  transition: box-shadow 0.2s ease;
}

.bb-welcome-stat:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.bb-wstat-icon {
  width: 52px;
  height: 52px;
  background-color: #d12525;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.bb-wstat-icon .bi {
  font-size: 20px;
  color: #fff;
}

.bb-wstat-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.bb-wstat-desc {
  font-size: 16px;
  color: #777;
  line-height: 1.55;
  margin: 0;
}

/* ---- Welcome responsive ---- */
@media (max-width: 991.98px) {
  .bb-welcome {
    padding: 60px 0 70px;
  }

  .bb-welcome-title {
    font-size: 36px;
  }

  .bb-welcome-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .bb-welcome-grid {
    grid-template-columns: 1fr;
  }

  .bb-welcome-img-main .bb-welcome-img {
    min-height: 280px;
  }

  .bb-welcome-img-wrap .bb-welcome-img {
    min-height: 200px;
  }
}

@media (max-width: 575.98px) {
  .bb-welcome {
    padding: 50px 0 60px;
  }

  .bb-welcome-title {
    font-size: 28px;
  }

  .bb-welcome-desc {
    font-size: 15px;
  }

  .bb-welcome-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .bb-welcome-stat {
    padding: 20px 16px;
  }

  .bb-wstat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .bb-wstat-icon .bi {
    font-size: 16px;
  }

  .bb-wstat-title {
    font-size: 13px;
  }

  .bb-wstat-desc {
    font-size: 12px;
  }
}

/* ===== END WELCOME SECTION CSS ===== */

/* ===========================
TESTIMONIAL SECTION CSS
============================ */

.bb-testimonial {
  background-color: #ffffff;
  padding: 20px 0 20px;
}

/* ---- Section heading ---- */
.bb-testimonial-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 50px;
  text-align: center;
}

.bb-testimonial-title span {
  color: #d12525;
}

/* ---- Swiper container ---- */
.bb-testimonial-swiper {
  padding-bottom: 16px !important;
}

.bb-testimonial-swiper .swiper-slide {
  height: auto;
}

/* ---- Testimonial card ---- */
.bb-testi-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 28px 28px 32px;
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07); */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* .bb-testi-card:hover {
  box-shadow: 0 8px 36px rgba(209, 37, 37, 0.12);
  transform: translateY(-4px);
} */

/* ---- Large quote icon (decoration) ---- */
.bb-testi-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 52px;
  line-height: 1;
  color: rgba(209, 37, 37, 0.12);
  pointer-events: none;
}

.bb-testi-quote .bi {
  display: block;
  line-height: 1;
}

/* ---- Header: avatar + info ---- */
.bb-testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bb-testi-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(209, 37, 37, 0.15);
}

.bb-testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bb-testi-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.bb-testi-role {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin: 0;
}

.bb-testi-company {
  font-size: 13px;
  font-weight: 600;
  color: #d12525;
  margin: 0;
}

/* ---- Star rating ---- */
.bb-testi-stars {
  display: flex;
  gap: 4px;
}

.bb-testi-stars .bi {
  font-size: 18px;
  color: #f59e0b;
}

/* ---- Review text ---- */
.bb-testi-text {
  font-size: 15px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ---- Navigation arrows ---- */
.bb-testi-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.bb-testi-prev,
.bb-testi-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d12525;
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  flex-shrink: 0;
}

/* .bb-testi-prev:hover,
.bb-testi-next:hover {
  background-color: #b01f1f;
  transform: scale(1.08);
} */

/* ---- Testimonial responsive ---- */
@media (max-width: 991.98px) {
  .bb-testimonial-title {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .bb-testimonial {
    padding: 60px 0 50px;
  }

  .bb-testimonial-title {
    font-size: 28px;
  }

  .bb-testi-card {
    padding: 22px 20px 26px;
  }

  .bb-testi-avatar {
    width: 54px;
    height: 54px;
  }

  .bb-testi-name {
    font-size: 15px;
  }

  .bb-testi-nav {
    margin-top: 30px;
  }

  .bb-testi-prev,
  .bb-testi-next {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* ===== END TESTIMONIAL SECTION CSS ===== */

/* ===========================
MESSAGE US SECTION CSS
============================ */

.bb-message {
  background: linear-gradient(135deg, #fff5f5 0%, #fdf0f0 50%, #fff9f0 100%);
  padding: 90px 0;
}

/* ---- Left: title ---- */
.bb-msg-title {
  font-size: 30px ;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.18;
  margin-bottom: 18px;
}

.bb-msg-title span {
  color: #d12525;
}

/* ---- Description ---- */
.bb-msg-desc {
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ---- Contact items ---- */
.bb-msg-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* Hide on mobile */
@media (max-width: 768px) {
    .bb-msg-contacts {
        display: none;
    }
}

.bb-msg-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bb-msg-contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(209, 37, 37, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-msg-contact-icon .bi {
  font-size: 20px;
  color: #d12525;
}

.bb-msg-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bb-msg-contact-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.bb-msg-contact-val {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
}

/* ---- Right: form card ---- */
.bb-msg-form-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Form field ---- */
.bb-msg-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bb-msg-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.bb-msg-label span {
  color: #d12525;
}

/* ---- Input wrapper (icon + input) ---- */
.bb-msg-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 14px;
  background-color: #fafafa;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bb-msg-input-wrap:focus-within {
  border-color: #d12525;
  box-shadow: 0 0 0 3px rgba(209, 37, 37, 0.08);
  background-color: #fff;
}

.bb-msg-input-wrap .bi {
  font-size: 16px;
  color: #9ca3af;
  flex-shrink: 0;
}

.bb-msg-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a2e;
  padding: 13px 0;
}

.bb-msg-input::placeholder {
  color: #b0b7c3;
}

/* Remove number input arrows */
.bb-msg-input[type="number"]::-webkit-inner-spin-button,
.bb-msg-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---- Textarea ---- */
.bb-msg-textarea-wrap {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.bb-msg-textarea-wrap .bi {
  margin-top: 2px;
}

.bb-msg-textarea {
  resize: none;
  padding: 0;
  line-height: 1.65;
}

/* ---- Submit button ---- */
.bb-msg-submit {
  width: 100%;
  padding: 10px;
  background-color: #d12525;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  margin-top: 4px;
}
/* 
.bb-msg-submit:hover {
  background-color: #b01f1f;
  transform: translateY(-2px);
} */

/* ---- Message Us responsive ---- */
@media (max-width: 991.98px) {
  .bb-msg-title {
    font-size: 38px;
  }
}

@media (max-width: 767.98px) {
  .bb-message {
    padding: 70px 0;
  }

  .bb-msg-title {
    font-size: 32px;
  }

  .bb-msg-form-card {
    padding: 28px 24px;
  }
}

@media (max-width: 575.98px) {
  .bb-message {
    padding: 55px 0;
  }

  .bb-msg-title {
    font-size: 26px;
  }

  .bb-msg-desc {
    font-size: 14px;
  }

  .bb-msg-form-card {
    padding: 22px 16px;
    gap: 16px;
  }

  .bb-msg-input {
    font-size: 14px;
    padding: 11px 0;
  }

  .bb-msg-submit {
    font-size: 15px;
    padding: 10px;
  }
}

/* ===== END MESSAGE US SECTION CSS ===== */

/* ===========================
COUNTER SECTION CSS
============================ */

.bb-counter {
  background-color: #d12525;
  padding: 55px 0;
}

.bb-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.bb-counter-item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}

.bb-counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.bb-counter-num {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.bb-counter-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  letter-spacing: 0.2px;
}

/* ---- Counter responsive ---- */
@media (max-width: 991.98px) {
  .bb-counter-num {
    font-size: 40px;
  }

  .bb-counter-label {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .bb-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-counter-item:not(:last-child)::after {
    display: none;
  }

  .bb-counter-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .bb-counter-item:nth-child(2n) {
    border-right: none;
  }

  .bb-counter-item:nth-child(3),
  .bb-counter-item:nth-child(4) {
    border-bottom: none;
  }

  .bb-counter-num {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .bb-counter {
    padding: 44px 0;
  }

  .bb-counter-item {
    padding: 18px 12px;
  }

  .bb-counter-num {
    font-size: 30px;
  }

  .bb-counter-label {
    font-size: 13px;
  }
}

/* ===== END COUNTER SECTION CSS ===== */

/* ===========================
FOOTER SECTION CSS
============================ */

.bb-footer {
  background-color: #0f172a;
  padding: 70px 0 0;
  color: #cbd5e1;
}

/* ---- Top grid ---- */
.bb-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* ---- Brand column ---- */
.bb-footer-logo {
  margin-bottom: 18px;
}

.bb-footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.bb-footer-about {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* ---- Social icons ---- */
.bb-footer-socials {
  display: flex;
  gap: 10px;
}

.bb-footer-social {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 16px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.bb-footer-social:hover {
  background-color: #d12525;
  color: #fff;
}

/* ---- Column titles ---- */
.bb-footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

/* ---- Quick links ---- */
.bb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bb-footer-links li a {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bb-footer-links li a:hover {
  color: #fff;
}

/* ---- Contact list ---- */
.bb-footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bb-footer-contact-item .bi {
  font-size: 16px;
  color: #d12525;
  margin-top: 2px;
  flex-shrink: 0;
}

.bb-footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bb-footer-contact-label {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bb-footer-contact-val {
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
}

/* ---- Working hours ---- */
.bb-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-footer-hour-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bb-footer-hour-item .bi {
  font-size: 16px;
  color: #d12525;
  margin-top: 2px;
  flex-shrink: 0;
}

.bb-footer-hour-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bb-footer-hour-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.bb-footer-hour-val {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
}

/* ---- Note box ---- */
.bb-footer-note {
  /* background-color: rgba(209, 37, 37, 0.15); */
  border: 1px solid rgba(209, 37, 37, 0.3);
  background: rgba(209, 37, 37, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
}

.bb-footer-note p {
  font-size: 13px;
  font-weight: 400;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.bb-footer-note p span {
  font-weight: 700;
  color: #f59e0b;
}

/* ---- Divider ---- */
.bb-footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

/* ---- Bottom bar ---- */
.bb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.bb-footer-copy {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.bb-footer-policies {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.bb-footer-policies a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bb-footer-policies a:hover {
  color: #fff;
}

/* ---- Footer responsive ---- */
@media (max-width: 1199.98px) {
  .bb-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}

@media (max-width: 991.98px) {
  .bb-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 575.98px) {
  .bb-footer {
    padding: 50px 0 0;
  }

  .bb-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .bb-footer-logo-bottom {
    font-size: 36px;
  }

  .bb-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 0;
  }

  .bb-footer-policies {
    gap: 16px;
  }
}

/* ===== END FOOTER SECTION CSS ===== */

/* ============================
 NAVBAR HAMBURGER TOGGLER
============================= */
/* ---- Hamburger toggler ---- */
.bb-toggler {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 20px;
}

.bb-toggler:focus {
  box-shadow: none;
}

.bb-toggler .bi {
  color: #fff;
}

/* ---- Mobile adjustments ---- */
@media (max-width: 1400px) {
  .bb-nav-link {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  /* Collapsed menu inherits red background */
  .bb-navbar .navbar-collapse {
    background-color: #d12525;
    padding: 8px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 8px;
  }

  .bb-navbar .navbar-nav {
    padding: 0;
    gap: 2px !important;
  }

  /* Nav links full width on mobile */
  .bb-nav-link {
    padding: 10px 16px !important;
    border-radius: 6px;
  }

  /* Active/hover highlight contained */
  .bb-nav-link.active,
  .bb-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.18);
  }

  /* Dropdown menu on mobile */
  .bb-dropdown {
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    border-radius: 6px;
    padding: 4px 8px;
  }

  .bb-dropdown .dropdown-item {
    color: #fff;
    border-radius: 4px;
    padding: 8px 12px;
  }

  .bb-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  /* Sub-dropdown on mobile: expand below on click, not hover */
  .bb-submenu {
    display: none;
    position: static;
    margin-left: 12px !important;
    margin-top: 4px !important;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    animation: none;
  }

  .bb-has-submenu.bb-submenu-open > .bb-submenu {
    display: block;
  }

  /* Remove hover trigger on touch/mobile */
  .bb-has-submenu:hover > .bb-submenu {
    display: none;
  }

  .bb-has-submenu.bb-submenu-open > .bb-submenu {
    display: block;
  }

  /* Chevron rotates down when open */
  .bb-has-submenu.bb-submenu-open > .bb-submenu-toggle .bi-chevron-right {
    transform: rotate(90deg);
    opacity: 1;
  }

  .bb-submenu .dropdown-item {
    color: #fff;
  }

  .bb-submenu .dropdown-item .bi-tag,
  .bb-submenu .dropdown-item .bi-stars {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Right actions row */
  .d-flex.align-items-center.gap-3 {
    flex-direction: row;
    padding: 12px 16px 4px;
    gap: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 6px;
  }

  /* Toggler clean look */
  .bb-toggler {
    padding: 4px 8px;
    border-color: rgba(255, 255, 255, 0.7);
  }
}

/* ===========================
CHAIRMAN MESSAGE SECTION CSS
============================ */

.bb-chairman {
  padding: 90px 0;
  background-color: #fff;
}

/* ---- Section heading ---- */
.bb-chairman-head {
  text-align: center;
  margin-bottom: 60px;
}

.bb-chairman-badge {
  display: inline-block;
  padding: 5px 18px;
  background-color: rgba(209, 37, 37, 0.1);
  color: #d12525;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.bb-chairman-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bb-chairman-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d12525;
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- Image outer (position context for deco shapes) ---- */
.bb-chairman-img-outer {
  position: relative;
  padding: 20px 20px 20px 20px;
}

/* ---- Decorative shapes ---- */
.bb-chair-deco {
  position: absolute;
  border-radius: 12px;
  display: block;
}

.bb-chair-deco--pink {
  width: 80px;
  height: 80px;
  background-color: rgba(209, 37, 37, 0.12);
  top: 0;
  left: 0;
  border-radius: 14px;
}

.bb-chair-deco--gold {
  width: 70px;
  height: 90px;
  background-color: #e8a020;
  bottom: 0;
  right: 0;
  border-radius: 14px;
  opacity: 0.85;
}

/* ---- Photo card ---- */
.bb-chairman-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bb-chairman-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- Card footer overlay ---- */
.bb-chairman-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  background: linear-gradient(
    to top,
    rgba(180, 10, 10, 0.92) 0%,
    rgba(209, 37, 37, 0.55) 100%
  );
}

.bb-chair-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bb-chair-role {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

/* ---- Right: message ---- */
.bb-chairman-msg {
  padding-left: 10px;
}

.bb-chair-quote {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 22px;
  line-height: 1.4;
}

.bb-chair-para {
  font-size: 16px;
  font-weight: 400;
  color: #4a4a5a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.bb-chair-hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 28px 0 24px;
}

.bb-chair-sig-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.bb-chair-sig-role {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-bottom: 0;
}

/* ---- Chairman responsive ---- */
@media (max-width: 991.98px) {
  .bb-chairman {
    padding: 70px 0;
  }

  .bb-chairman-title {
    font-size: 36px;
  }

  .bb-chairman-img {
    height: 380px;
  }

  .bb-chairman-msg {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .bb-chairman {
    padding: 60px 0;
  }

  .bb-chairman-title {
    font-size: 30px;
  }

  .bb-chairman-img-outer {
    padding: 16px 16px 16px 16px;
    max-width: 480px;
    margin: 0 auto;
  }

  .bb-chairman-img {
    height: 320px;
  }

  .bb-chair-deco--pink {
    width: 60px;
    height: 60px;
  }

  .bb-chair-deco--gold {
    width: 55px;
    height: 70px;
  }
}

@media (max-width: 575.98px) {
  .bb-chairman {
    padding: 50px 0;
  }

  .bb-chairman-title {
    font-size: 26px;
  }

  .bb-chairman-badge {
    font-size: 12px;
    padding: 4px 14px;
  }

  .bb-chairman-img {
    height: 280px;
  }

  .bb-chair-quote {
    font-size: 18px;
  }

  .bb-chair-para {
    font-size: 14px;
  }

  .bb-chair-deco--pink {
    width: 48px;
    height: 48px;
  }

  .bb-chair-deco--gold {
    width: 44px;
    height: 56px;
  }
}

/* ===== END CHAIRMAN MESSAGE SECTION CSS ===== */

/* ===========================
MANAGEMENT TEAM SECTION CSS
============================ */

.bb-team {
  background-color: #faf0f0;
  padding: 90px 0;
}

/* ---- Section heading ---- */
.bb-team-head {
  text-align: center;
  margin-bottom: 56px;
}

.bb-team-badge {
  display: inline-block;
  padding: 5px 18px;
  background-color: #fff;
  color: #d12525;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid rgba(209, 37, 37, 0.2);
  margin-bottom: 14px;
}

.bb-team-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bb-team-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d12525;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.bb-team-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  margin: 0;
}

/* ---- Team card ---- */
.bb-team-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
}

/* ---- Card image ---- */
.bb-team-img-wrap {
  position: relative;
  overflow: hidden;
}

.bb-team-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.bb-team-card:hover .bb-team-img {
  transform: scale(1.04);
}

/* Bottom gradient fade on image */
.bb-team-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

/* ---- Card body ---- */
.bb-team-body {
  padding: 22px 24px 28px;
  text-align: center;
}

.bb-team-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.bb-team-role {
  font-size: 16px;
  font-weight: 600;
  color: #d12525;
  margin-bottom: 10px;
}

.bb-team-exp {
  font-size: 13.5px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ---- Skills list ---- */
.bb-team-skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bb-team-skills li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #444;
}

.bb-team-skills .bi {
  color: #d12525;
  font-size: 15px;
  flex-shrink: 0;
}

/* ---- Team responsive ---- */
@media (max-width: 991.98px) {
  .bb-team {
    padding: 70px 0;
  }

  .bb-team-title {
    font-size: 36px;
  }

  .bb-team-img {
    height: 260px;
  }
}

@media (max-width: 767.98px) {
  .bb-team {
    padding: 60px 0;
  }

  .bb-team-title {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .bb-team {
    padding: 50px 0;
  }

  .bb-team-title {
    font-size: 26px;
  }

  .bb-team-badge {
    font-size: 12px;
    padding: 4px 14px;
  }

  .bb-team-subtitle {
    font-size: 14px;
  }

  .bb-team-img {
    height: 240px;
  }

  .bb-team-body {
    padding: 18px 20px 24px;
  }

  .bb-team-name {
    font-size: 18px;
  }
}

/* ===== END MANAGEMENT TEAM SECTION CSS ===== */

/* ===========================
OUR STORY SECTION CSS
============================ */

.bb-story {
  background-color: #fff;
  padding: 90px 0;
}

/* ---- Section heading ---- */
.bb-story-head {
  text-align: center;
  margin-bottom: 70px;
}

.bb-story-badge {
  display: inline-block;
  padding: 5px 18px;
  background-color: rgba(209, 37, 37, 0.1);
  color: #d12525;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 14px;
}

.bb-story-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bb-story-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d12525;
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- Timeline wrapper ---- */
.bb-story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- Single timeline item ---- */
.bb-story-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 0 32px;
  min-height: 320px;
}

/* ---- Center line column ---- */
.bb-story-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
}

/* Vertical line drawn via ::before on each sibling's column */
.bb-story-line-col::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #d12525;
}

/* Hide top half of line for first item */
.bb-story-item:first-child .bb-story-line-col::before {
  top: 50%;
}

/* Hide bottom half of line for last item */
.bb-story-item:last-child .bb-story-line-col::before {
  bottom: 50%;
}

/* ---- Dot on the line ---- */
.bb-story-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  background-color: #d12525;
  border-radius: 50%;
  border: 3px solid #fff;
  outline: 2px solid #d12525;
  margin: auto;
  flex-shrink: 0;
}

.bb-story-dot--gold {
  background-color: #e8a020;
  outline-color: #e8a020;
}

/* ---- Image column ---- */
.bb-story-img-col {
  position: relative;
  padding: 30px 0 20px 30px;
}

.bb-story-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

.bb-story-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bb-story-img-wrap:hover .bb-story-img {
  transform: scale(1.04);
}

/* ---- Year badge ---- */
.bb-story-year {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.bb-story-year--red {
  background-color: #d12525;
}

.bb-story-year--gold {
  background-color: #e8a020;
}

/* ---- Text column ---- */
.bb-story-text-col {
  padding: 40px 0;
}

.bb-story-content {
  padding: 10px 0;
}

.bb-story-content-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.bb-story-content-desc {
  font-size: 15px;
  font-weight: 400;
  color: #5a5a6a;
  line-height: 1.8;
  margin: 0;
  max-width: 440px;
}

/* Reversed item: text left, image right */
.bb-story-item--reverse .bb-story-text-col .bb-story-content-desc {
  max-width: 100%;
}

/* ---- Story responsive ---- */
@media (max-width: 991.98px) {
  .bb-story {
    padding: 70px 0;
  }

  .bb-story-title {
    font-size: 36px;
  }

  .bb-story-img {
    height: 210px;
  }

  .bb-story-content-title {
    font-size: 21px;
  }
}

/* On tablet/mobile: stack items vertically, hide center line */
@media (max-width: 767.98px) {
  .bb-story {
    padding: 60px 0;
  }

  .bb-story-item,
  .bb-story-item--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px 0;
    min-height: unset;
    margin-bottom: 48px;
  }

  /* On mobile normal item: image first, then text */
  .bb-story-item .bb-story-img-col {
    order: 1;
    padding: 0;
  }
  .bb-story-item .bb-story-line-col {
    display: none;
  }
  .bb-story-item .bb-story-text-col {
    order: 2;
    padding: 0;
  }

  /* On mobile reversed item: image first, then text */
  .bb-story-item--reverse .bb-story-text-col {
    order: 2;
    padding: 0;
  }
  .bb-story-item--reverse .bb-story-line-col {
    display: none;
  }
  .bb-story-item--reverse .bb-story-img-col {
    order: 1;
    padding: 0;
  }

  .bb-story-content-desc {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .bb-story {
    padding: 50px 0;
  }

  .bb-story-title {
    font-size: 26px;
  }

  .bb-story-badge {
    font-size: 12px;
    padding: 4px 14px;
  }

  .bb-story-img {
    height: 200px;
  }

  .bb-story-content-title {
    font-size: 19px;
  }

  .bb-story-content-desc {
    font-size: 14px;
  }
}

/* ===== END OUR STORY SECTION CSS ===== */

/* ===========================
MISSION & VISION SECTION CSS
============================ */

.bb-mv {
  background-color: #faf0f0;
  padding: 90px 0;
}

/* ---- Section heading ---- */
.bb-mv-head {
  text-align: center;
  margin-bottom: 56px;
}

.bb-mv-badge {
  display: inline-block;
  padding: 5px 18px;
  background-color: #fff;
  color: #d12525;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid rgba(209, 37, 37, 0.2);
  margin-bottom: 14px;
}

.bb-mv-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bb-mv-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d12525;
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- Card ---- */
.bb-mv-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 40px 36px 44px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-top: 4px solid transparent;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* .bb-mv-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
} */

.bb-mv-card--red {
  border-top-color: #d12525;
}

.bb-mv-card--gold {
  border-top-color: #e8a020;
}

/* ---- Card header ---- */
.bb-mv-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

/* ---- Icon circle ---- */
.bb-mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-mv-icon .bi {
  font-size: 28px;
}

.bb-mv-icon--red {
  background-color: rgba(209, 37, 37, 0.1);
}

.bb-mv-icon--red .bi {
  color: #d12525;
}

.bb-mv-icon--gold {
  background-color: rgba(232, 160, 32, 0.12);
}

.bb-mv-icon--gold .bi {
  color: #e8a020;
}

/* ---- Card title ---- */
.bb-mv-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}

/* ---- Description ---- */
.bb-mv-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #5a5a6a;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ---- List ---- */
.bb-mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-mv-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

/* ---- List icon circle ---- */
.bb-mv-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-mv-list-icon .bi {
  font-size: 16px;
}

.bb-mv-list-icon--red {
  background-color: rgba(209, 37, 37, 0.08);
}

.bb-mv-list-icon--red .bi {
  color: #d12525;
}

.bb-mv-list-icon--gold {
  background-color: rgba(232, 160, 32, 0.1);
}

.bb-mv-list-icon--gold .bi {
  color: #e8a020;
}

/* ---- Mission & Vision responsive ---- */
@media (max-width: 991.98px) {
  .bb-mv {
    padding: 70px 0;
  }

  .bb-mv-title {
    font-size: 36px;
  }

  .bb-mv-card {
    padding: 32px 28px 36px;
  }
}

@media (max-width: 767.98px) {
  .bb-mv {
    padding: 60px 0;
  }

  .bb-mv-card-title {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .bb-mv {
    padding: 50px 0;
  }

  .bb-mv-title {
    font-size: 26px;
  }

  .bb-mv-badge {
    font-size: 12px;
    padding: 4px 14px;
  }

  .bb-mv-card {
    padding: 26px 22px 30px;
  }

  .bb-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .bb-mv-icon .bi {
    font-size: 22px;
  }

  .bb-mv-card-title {
    font-size: 20px;
  }

  .bb-mv-card-desc {
    font-size: 14px;
  }

  .bb-mv-list li {
    font-size: 14px;
  }
}

/* ===== END MISSION & VISION SECTION CSS ===== */

/* ===========================
CORE VALUES SECTION CSS
============================ */

.bb-values {
  background-color: #faf0f0;
  padding: 0 0 90px;
}

/* ---- Outer white card ---- */
.bb-values-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 56px 48px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* ---- Title ---- */
.bb-values-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 48px;
}

/* ---- 4-col grid ---- */
.bb-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ---- Single value item ---- */
.bb-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* ---- Icon box ---- */
.bb-value-icon {
  width: 80px;
  height: 80px;
  background-color: #d12525;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(209, 37, 37, 0.3);
}

.bb-value-icon .bi {
  font-size: 34px;
  color: #fff;
}

/* ---- Item name ---- */
.bb-value-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

/* ---- Item description ---- */
.bb-value-desc {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
}

/* ---- Core Values responsive ---- */
@media (max-width: 991.98px) {
  .bb-values {
    padding-bottom: 70px;
  }

  .bb-values-card {
    padding: 44px 36px 48px;
  }

  .bb-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .bb-value-desc {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .bb-values {
    padding-bottom: 60px;
  }

  .bb-values-card {
    padding: 36px 28px 40px;
  }

  .bb-values-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 575.98px) {
  .bb-values {
    padding-bottom: 50px;
  }

  .bb-values-card {
    padding: 28px 20px 32px;
    border-radius: 16px;
  }

  .bb-values-title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .bb-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .bb-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .bb-value-icon .bi {
    font-size: 26px;
  }

  .bb-value-name {
    font-size: 16px;
  }

  .bb-value-desc {
    font-size: 13px;
  }
}

/* ===== END CORE VALUES SECTION CSS ===== */

/* ===========================
CLIENTS / PARTNERS SECTION CSS
============================ */

.bb-clients {
  background-color: #fff;
  padding: 90px 0;
}

/* ---- Section heading ---- */
.bb-clients-head {
  text-align: center;
  margin-bottom: 56px;
}

.bb-clients-badge {
  display: inline-block;
  padding: 5px 18px;
  background-color: rgba(209, 37, 37, 0.08);
  color: #d12525;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 14px;
}

.bb-clients-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bb-clients-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d12525;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.bb-clients-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #777;
  margin: 0;
}

/* ---- Swiper container ---- */
.bb-clients-swiper {
  padding-bottom: 48px !important;
}

/* ---- Client card ---- */
.bb-client-card {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  height: 120px;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* .bb-client-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  border-color: #d0d0d0;
  transform: translateY(-3px);
} */

.bb-client-logo {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.25s ease;
}

.bb-client-card:hover .bb-client-logo {
  filter: grayscale(0%);
}

/* ---- Pagination dots ---- */
.bb-clients-pagination {
  bottom: 0 !important;
}

.bb-clients-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 1;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bb-clients-pagination .swiper-pagination-bullet-active {
  background-color: #d12525;
  transform: scale(1.3);
}

/* ---- Clients responsive ---- */
@media (max-width: 991.98px) {
  .bb-clients {
    padding: 70px 0;
  }

  .bb-clients-title {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .bb-clients {
    padding: 60px 0;
  }

  .bb-clients-title {
    font-size: 30px;
  }

  .bb-client-card {
    height: 100px;
    padding: 20px 16px;
  }

  .bb-client-logo {
    max-height: 52px;
  }
}

@media (max-width: 575.98px) {
  .bb-clients {
    padding: 50px 0;
  }

  .bb-clients-title {
    font-size: 26px;
  }

  .bb-clients-badge {
    font-size: 12px;
    padding: 4px 14px;
  }

  .bb-clients-subtitle {
    font-size: 14px;
  }

  .bb-client-card {
    height: 90px;
    padding: 16px 12px;
  }

  .bb-client-logo {
    max-height: 44px;
  }
}

/* ===== END CLIENTS / PARTNERS SECTION CSS ===== */

/* ===========================
CTA SECTION CSS
============================ */

.bb-cta {
  background-color: #fff;
  padding: 0 0 90px;
}

/* ---- Red card ---- */
.bb-cta-card {
  background-color: #d12525;
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(209, 37, 37, 0.28);
}

/* ---- Title ---- */
.bb-cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* ---- Description ---- */
.bb-cta-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ---- Button ---- */
.bb-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background-color: #fff;
  color: #d12525;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* .bb-cta-btn:hover {
  background-color: #f5f5f5;
  color: #d12525;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
} */

/* ---- CTA responsive ---- */
@media (max-width: 991.98px) {
  .bb-cta {
    padding-bottom: 70px;
  }

  .bb-cta-card {
    padding: 56px 36px;
  }

  .bb-cta-title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .bb-cta {
    padding-bottom: 60px;
  }

  .bb-cta-card {
    padding: 48px 28px;
    border-radius: 20px;
  }

  .bb-cta-title {
    font-size: 28px;
  }

  .bb-cta-desc {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

@media (max-width: 575.98px) {
  .bb-cta {
    padding-bottom: 50px;
  }

  .bb-cta-card {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .bb-cta-title {
    font-size: 24px;
  }

  .bb-cta-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .bb-cta-btn {
    padding: 14px 36px;
    font-size: 15px;
  }
}

/* ===== END CTA SECTION CSS ===== */

/* ===========================
KITCHEN SECTION CSS
============================ */

.bb-kitchen {
  background-color: #faf0f0;
  padding: 90px 0;
}

/* ---- Section heading ---- */
.bb-kitchen-head {
  text-align: center;
  margin-bottom: 56px;
}

.bb-kitchen-badge {
  display: inline-block;
  padding: 6px 20px;
  background-color: #fff;
  color: #d12525;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid #d12525;
  margin-bottom: 16px;
}

.bb-kitchen-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bb-kitchen-divider {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d12525;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.bb-kitchen-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Card ---- */
.bb-kitchen-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  height: 100%;
}

/* .bb-kitchen-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
} */

/* ---- Image wrap ---- */
.bb-kitchen-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.bb-kitchen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.bb-kitchen-card:hover .bb-kitchen-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ---- Image overlay ---- */
.bb-kitchen-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}

.bb-kitchen-img-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* ---- Card body ---- */
.bb-kitchen-body {
  padding: 24px 24px 28px;
}

/* ---- Feature list ---- */
.bb-kitchen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-kitchen-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.bb-kitchen-item .bi {
  font-size: 18px;
  color: #d12525;
  flex-shrink: 0;
}

/* ---- Kitchen responsive ---- */
@media (max-width: 991.98px) {
  .bb-kitchen {
    padding: 70px 0;
  }

  .bb-kitchen-title {
    font-size: 34px;
  }

  .bb-kitchen-head {
    margin-bottom: 44px;
  }
}

@media (max-width: 767.98px) {
  .bb-kitchen {
    padding: 60px 0;
  }

  .bb-kitchen-title {
    font-size: 28px;
  }

  .bb-kitchen-img-wrap {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .bb-kitchen {
    padding: 50px 0;
  }

  .bb-kitchen-title {
    font-size: 24px;
  }

  .bb-kitchen-subtitle {
    font-size: 14px;
  }

  .bb-kitchen-img-wrap {
    height: 200px;
  }

  .bb-kitchen-body {
    padding: 20px 18px 24px;
  }

  .bb-kitchen-img-title {
    font-size: 17px;
  }

  .bb-kitchen-item {
    font-size: 14px;
  }
}

/* ===== END KITCHEN SECTION CSS ===== */

/* ===========================
KITCHEN STATS SECTION CSS
============================ */

.bb-kstats {
  background-color: #d12525;
  padding: 60px 0;
}

/* ---- Stats grid ---- */
.bb-kstats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* ---- Single stat ---- */
.bb-kstat-item {
  text-align: center;
  padding: 24px 20px;
}

/* ---- Number ---- */
.bb-kstat-num {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -1px;
}

/* ---- Label ---- */
.bb-kstat-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

/* ---- Kitchen stats responsive ---- */
@media (max-width: 991.98px) {
  .bb-kstats {
    padding: 50px 0;
  }

  .bb-kstat-num {
    font-size: 40px;
  }

  .bb-kstat-label {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .bb-kstats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-kstat-item:nth-child(2)::after {
    display: none;
  }

  .bb-kstat-item:nth-child(4)::after {
    display: none;
  }

  .bb-kstat-item:nth-child(1),
  .bb-kstat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .bb-kstat-num {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .bb-kstats {
    padding: 40px 0;
  }

  .bb-kstat-num {
    font-size: 30px;
  }

  .bb-kstat-label {
    font-size: 13px;
  }

  .bb-kstat-item {
    padding: 20px 12px;
  }
}

/* ===== END KITCHEN STATS SECTION CSS ===== */

/* ===========================
KITCHEN STATS SECTION CSS
============================ */

.bb-kstats {
  background-color: #d12525;
  padding: 60px 0;
}

/* ---- Stats grid ---- */
.bb-kstats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* ---- Single stat ---- */
.bb-kstat-item {
  text-align: center;
  padding: 24px 20px;
}

/* ---- Number ---- */
.bb-kstat-num {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

/* ---- Label ---- */
.bb-kstat-label {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

/* ---- Kitchen stats responsive ---- */
@media (max-width: 991.98px) {
  .bb-kstats {
    padding: 50px 0;
  }

  .bb-kstat-num {
    font-size: 40px;
  }

  .bb-kstat-label {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .bb-kstats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-kstat-item:nth-child(2)::after {
    display: none;
  }

  .bb-kstat-item:nth-child(4)::after {
    display: none;
  }

  .bb-kstat-item:nth-child(1),
  .bb-kstat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .bb-kstat-num {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .bb-kstats {
    padding: 40px 0;
  }

  .bb-kstats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-kstat-num {
    font-size: 30px;
  }

  .bb-kstat-label {
    font-size: 13px;
  }

  .bb-kstat-item {
    padding: 20px 12px;
  }
}

/* ===== END KITCHEN STATS SECTION CSS ===== */

/* ===========================
INNER BANNER SECTION CSS
============================ */

.bb-inner-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* ---- Dark overlay ---- */
.bb-inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.52) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 1;
}

/* ---- Content wrapper ---- */
.bb-inner-banner-content {
  padding: 20px 0;
}

/* ---- Breadcrumb ---- */
.bb-inner-breadcrumb-nav {
  margin-bottom: 18px;
}

.bb-inner-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  background: transparent;
  list-style: none;
}

.bb-inner-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bb-inner-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.bb-inner-breadcrumb .breadcrumb-item.active {
  color: #d12525;
  font-size: 14px;
  font-weight: 600;
}

.bb-inner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
  content: "/";
  padding-right: 8px;
  padding-left: 4px;
}

/* ---- Title ---- */
.bb-inner-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.bb-inner-title span {
  color: #d12525;
}

/* ---- Subtitle ---- */
.bb-inner-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---- Meta info ---- */
.bb-inner-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bb-inner-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.bb-inner-meta-item .bi {
  color: #d12525;
  font-size: 16px;
}

.bb-inner-meta-divider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ---- Inner banner responsive ---- */
@media (max-width: 991.98px) {
  .bb-inner-banner {
    height: 320px;
  }

  .bb-inner-title {
    font-size: 38px;
  }

  .bb-inner-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .bb-inner-banner {
    height: 280px;
  }

  .bb-inner-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .bb-inner-subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

@media (max-width: 575.98px) {
  .bb-inner-banner {
    height: 260px;
  }

  .bb-inner-title {
    font-size: 26px;
  }

  .bb-inner-subtitle {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .bb-inner-meta {
    gap: 8px;
  }

  .bb-inner-meta-item {
    font-size: 12px;
  }

  .bb-inner-meta-divider {
    display: none;
  }
}

/* ---- Contact inner banner extras ---- */
.bb-contact-divider {
  width: 52px;
  height: 4px;
  background-color: #d12525;
  border-radius: 2px;
  margin-bottom: 20px;
}

.bb-contact-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bb-contact-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.bb-contact-icon-badge:hover {
  background-color: #d12525;
  border-color: #d12525;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .bb-contact-icon-badge {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .bb-contact-icon-badge {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 8px;
  }

  .bb-contact-icons {
    gap: 10px;
  }
}

/* ===== END INNER BANNER SECTION CSS ===== */

/* ===========================
CONTACT CARDS SECTION CSS
============================ */

.bb-contact-cards {
  background-color: #fdf2f2;
  padding: 80px 0;
}

/* ---- Card ---- */
.bb-ccard {
  background-color: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #d12525;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- Icon badge ---- */
.bb-ccard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #d12525;
  border-radius: 14px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* ---- Title ---- */
.bb-ccard-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* ---- Subtitle ---- */
.bb-ccard-sub {
  font-size: 15px;
  color: #888;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ---- Linked / highlighted values ---- */
.bb-ccard-value {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #d12525;
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.bb-ccard-value:hover {
  color: #a81c1c;
}

/* ---- Note (time, extra info) ---- */
.bb-ccard-note {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ---- Address ---- */
.bb-ccard-address {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .bb-contact-cards {
    padding: 64px 0;
  }

  .bb-ccard {
    padding: 30px 26px;
  }
}

@media (max-width: 767.98px) {
  .bb-contact-cards {
    padding: 52px 0;
  }

  .bb-ccard {
    padding: 28px 24px;
  }

  .bb-ccard-title {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .bb-contact-cards {
    padding: 44px 0;
  }

  .bb-ccard {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .bb-ccard-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    margin-bottom: 18px;
  }

  .bb-ccard-title {
    font-size: 19px;
  }

  .bb-ccard-value {
    font-size: 16px;
  }
}

/* ===== END CONTACT CARDS SECTION CSS ===== */

/* ===========================
CONTACT FORM SECTION CSS
============================ */

.bb-contact-form {
  background-color: #fff;
  padding: 80px 0;
}

/* ---- Section heading ---- */
.bb-cf-head {
  text-align: center;
  margin-bottom: 48px;
}

.bb-cf-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.2;
}

.bb-cf-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* ---- Form card ---- */
.bb-cf-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 48px 56px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  max-width: 860px;
  margin: 0 auto;
}

/* ---- Row spacing ---- */
.bb-cf-form .row {
  margin-bottom: 8px;
}

/* ---- Field wrapper ---- */
.bb-cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

/* ---- Label ---- */
.bb-cf-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0;
}

.bb-cf-label span {
  color: #d12525;
}

/* ---- Input & Textarea ---- */
.bb-cf-input {
  width: 100%;
  background-color: #f3f4f6;
  border: 1.5px solid #f3f4f6;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: #111827;
  outline: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
  font-family: inherit;
  line-height: 1.5;
}

.bb-cf-input::placeholder {
  color: #9ca3af;
}

.bb-cf-input:focus {
  border-color: #d12525;
  background-color: #fff;
}

/* ---- Textarea ---- */
.bb-cf-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---- Submit button ---- */
.bb-cf-submit-wrap {
  text-align: center;
  margin-top: 24px;
}

.bb-cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 44px;
  background-color: #d12525;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  font-family: inherit;
  line-height: 1;
}

.bb-cf-submit:hover {
  background-color: #b81f1f;
  /* transform: translateY(-2px); */
}

/* ---- Contact form responsive ---- */
@media (max-width: 991.98px) {
  .bb-contact-form {
    padding: 64px 0;
  }

  .bb-cf-card {
    padding: 40px 40px;
  }

  .bb-cf-title {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .bb-contact-form {
    padding: 52px 0;
  }

  .bb-cf-card {
    padding: 32px 28px;
    border-radius: 16px;
  }

  .bb-cf-title {
    font-size: 30px;
  }

  .bb-cf-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .bb-contact-form {
    padding: 44px 0;
  }

  .bb-cf-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .bb-cf-title {
    font-size: 26px;
  }

  .bb-cf-subtitle {
    font-size: 14px;
  }

  .bb-cf-input {
    padding: 11px 14px;
    font-size: 14px;
  }

  .bb-cf-submit {
    padding: 13px 36px;
    font-size: 15px;
  }
}

/* ===== END CONTACT FORM SECTION CSS ===== */

/* ===========================
LOCATION SECTION CSS
============================ */

.bb-location {
  background-color: #f9fafb;
  padding: 80px 0;
}

/* ---- Section heading ---- */
.bb-location-head {
  text-align: center;
  margin-bottom: 40px;
}

.bb-location-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.2;
}

.bb-location-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

/* ---- Map wrapper ---- */
.bb-location-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  line-height: 0;
}

.bb-location-map {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

/* ---- Location responsive ---- */
@media (max-width: 991.98px) {
  .bb-location {
    padding: 64px 0;
  }

  .bb-location-title {
    font-size: 34px;
  }

  .bb-location-map {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .bb-location {
    padding: 52px 0;
  }

  .bb-location-title {
    font-size: 28px;
  }

  .bb-location-subtitle {
    font-size: 15px;
  }

  .bb-location-map {
    height: 320px;
  }

  .bb-location-map-wrap {
    border-radius: 12px;
  }
}

@media (max-width: 575.98px) {
  .bb-location {
    padding: 44px 0;
  }

  .bb-location-title {
    font-size: 24px;
  }

  .bb-location-subtitle {
    font-size: 14px;
  }

  .bb-location-map {
    height: 260px;
  }

  .bb-location-map-wrap {
    border-radius: 10px;
  }
}

/* ===== END LOCATION SECTION CSS ===== */

/* ===========================
FAQ SECTION CSS
============================ */

.bb-faq {
  background-color: #fff;
  padding: 80px 0;
}

/* ---- Section heading ---- */
.bb-faq-head {
  text-align: center;
  margin-bottom: 48px;
}

.bb-faq-title {
  font-size: 42px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.2;
}

.bb-faq-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

/* ---- Accordion list ---- */
.bb-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Single item ---- */
.bb-faq-item {
  background-color: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.bb-faq-item--open {
  border-color: #e5e7eb;
}

/* ---- Toggle button ---- */
.bb-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  font-family: inherit;
  line-height: 1.4;
}

.bb-faq-btn:focus-visible {
  outline: 2px solid #d12525;
  outline-offset: -2px;
  border-radius: 12px;
}

/* ---- +/- icon ---- */
.bb-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #6b7280;
  font-size: 18px;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.bb-faq-item--open .bb-faq-icon {
  background-color: #d12525;
  color: #fff;
}

/* ---- Answer body ---- */
.bb-faq-body {
  padding: 0 24px 20px;
}

.bb-faq-body p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ---- FAQ responsive ---- */
@media (max-width: 991.98px) {
  .bb-faq {
    padding: 64px 0;
  }

  .bb-faq-title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .bb-faq {
    padding: 52px 0;
  }

  .bb-faq-title {
    font-size: 28px;
  }

  .bb-faq-subtitle {
    font-size: 15px;
  }

  .bb-faq-btn {
    font-size: 15px;
    padding: 18px 20px;
  }

  .bb-faq-body {
    padding: 0 20px 18px;
  }
}

@media (max-width: 575.98px) {
  .bb-faq {
    padding: 44px 0;
  }

  .bb-faq-title {
    font-size: 24px;
  }

  .bb-faq-subtitle {
    font-size: 14px;
  }

  .bb-faq-btn {
    font-size: 14px;
    padding: 16px 16px;
    gap: 12px;
  }

  .bb-faq-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .bb-faq-body {
    padding: 0 16px 16px;
  }

  .bb-faq-body p {
    font-size: 14px;
  }
}

/* ===== END FAQ SECTION CSS ===== */

/* ===========================
PACKAGE SECTION CSS
============================ */

.bb-package {
  background-color: #fff;
  padding: 90px 0;
}

/* ---- Section head ---- */
.bb-pkg-head {
  margin-bottom: 48px;
}

.bb-pkg-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  line-height: 1.2;
}

.bb-pkg-title span {
  color: #d12525;
}

/* ---- Tab buttons ---- */
.bb-pkg-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bb-pkg-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #d12525;
  background-color: transparent;
  color: #d12525;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  line-height: 1;
}

.bb-pkg-tab.active {
  background-color: #d12525;
  color: #fff;
}

.bb-pkg-tab:hover:not(.active) {
  background-color: rgba(209, 37, 37, 0.06);
}

/* ---- Price text inside tab button ---- */
.bb-pkg-price {
  font-size: 15px;
  font-weight: 700;
}

/* ---- Subtitle ---- */
.bb-pkg-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 0;
}

/* ---- Low Oil tag variant ---- */
.bb-tag-oil {
  background-color: #17a2b8;
  color: #fff;
}

/* ---- Most Popular / Best Value overlay badge ---- */
.bb-dish-popular {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d12525;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 0;
  letter-spacing: 0.3px;
}

.bb-dish-popular .bi {
  font-size: 11px;
  margin-right: 4px;
}

/* ---- Package responsive ---- */
@media (max-width: 991.98px) {
  .bb-package {
    padding: 70px 0;
  }

  .bb-pkg-title {
    font-size: 30px;
  }

  .bb-pkg-tab {
    padding: 11px 28px;
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .bb-package {
    padding: 60px 0;
  }

  .bb-pkg-title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .bb-pkg-tab {
    padding: 10px 22px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .bb-package {
    padding: 50px 0;
  }

  .bb-pkg-head {
    margin-bottom: 36px;
  }

  .bb-pkg-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .bb-pkg-tabs {
    gap: 10px;
  }

  .bb-pkg-tab {
    padding: 9px 18px;
    font-size: 13px;
  }

  .bb-pkg-price {
    font-size: 13px;
  }

  .bb-pkg-subtitle {
    font-size: 13px;
  }
}

/* ===== END PACKAGE SECTION CSS ===== */

/* ===========================
   SIGN IN SECTION CSS
============================ */
.bb-signin-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 40px 0;
}

.bb-signin-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ---- Left Panel ---- */
.bb-signin-left {
  background: linear-gradient(
    160deg,
    #d12525 0%,
    #e94a2a 30%,
    #f07a30 60%,
    #f5a623 100%
  );
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  /* border-radius: 20px; */
}

.bb-signin-logo img {
  height: 60px;
  margin-bottom: 40px;
}

.bb-signin-welcome h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.bb-signin-welcome p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

.bb-signin-features {
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bb-signin-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bb-signin-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.bb-signin-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bb-signin-feature-text h6 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.bb-signin-feature-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* ---- Right Panel ---- */
.bb-signin-right {
  padding: 50px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.bb-signin-form-wrapper {
  width: 100%;
  max-width: 420px;
}

.bb-signin-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.bb-signin-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 30px;
}

/* ---- Form Fields ---- */
.bb-signin-field {
  margin-bottom: 22px;
}

.bb-signin-field label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.bb-signin-input-group {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
}

.bb-signin-input-group:focus-within {
  border-color: #d12525;
  box-shadow: 0 0 0 3px rgba(209, 37, 37, 0.08);
}

.bb-signin-input-icon {
  padding: 0 0 0 14px;
  color: #999;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.bb-signin-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 14px;
  font-size: 15px;
  color: #333;
  background: transparent;
  border-radius: 10px;
}

.bb-signin-input-group input::placeholder {
  color: #aaa;
}

.bb-signin-toggle-pw {
  background: none;
  border: none;
  padding: 0 14px 0 0;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.bb-signin-toggle-pw:hover {
  color: #d12525;
}

/* ---- Remember / Forgot ---- */
.bb-signin-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bb-signin-remember {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bb-signin-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #d12525;
  cursor: pointer;
}

.bb-signin-remember label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
  margin-bottom: 0;
}

.bb-signin-forgot {
  font-size: 14px;
  font-weight: 600;
  color: #d12525;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bb-signin-forgot:hover {
  color: #b01f1f;
}

/* ---- Sign In Button ---- */
.bb-signin-btn {
  width: 100%;
  padding: 14px;
  background-color: #d12525;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bb-signin-btn:hover {
  background-color: #b01f1f;
  /* transform: translateY(-1px); */
}

/* ---- Divider ---- */
.bb-signin-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.bb-signin-divider::before,
.bb-signin-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e5e5;
}

.bb-signin-divider span {
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
}

/* ---- Subscribe Link ---- */
.bb-signin-subscribe {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 0;
}

.bb-signin-subscribe a {
  color: #d12525;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.bb-signin-subscribe a:hover {
  color: #b01f1f;
}

/* ---- Support Box ---- */
.bb-signin-support {
  margin-top: 24px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
}

.bb-signin-support p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.bb-signin-support a {
  color: #d12525;
  font-weight: 700;
  text-decoration: none;
}

.bb-signin-support a:hover {
  text-decoration: underline;
}

/* ---- Trust Badges ---- */
.bb-signin-trust {
  text-align: center;
  margin-top: 30px;
}

.bb-signin-trust-text {
  font-size: 14px;
  color: #999;
  margin-bottom: 14px;
}

.bb-signin-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bb-signin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.bb-signin-badge .bi-lock-fill {
  color: #f5a623;
}

.bb-signin-badge .bi-patch-check-fill {
  color: #28a745;
}

.bb-signin-badge .bi-lightning-fill {
  color: #d12525;
}

/* ---- Sign In Responsive ---- */
@media (max-width: 991.98px) {
  .bb-signin-left {
    padding: 40px 30px;
    border-radius: 20px 20px 0 0;
  }

  .bb-signin-welcome h1 {
    font-size: 34px;
  }

  .bb-signin-features {
    padding-top: 30px;
    flex-direction: row;
    gap: 24px;
  }

  .bb-signin-right {
    padding: 36px 30px;
  }
}

@media (max-width: 575.98px) {
  .bb-signin-section {
    padding: 20px 0;
  }

  .bb-signin-left {
    padding: 30px 22px;
  }

  .bb-signin-welcome h1 {
    font-size: 28px;
  }

  .bb-signin-welcome p {
    font-size: 14px;
  }

  .bb-signin-features {
    flex-direction: column;
    gap: 16px;
  }

  .bb-signin-right {
    padding: 28px 20px;
  }

  .bb-signin-title {
    font-size: 26px;
  }

  .bb-signin-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bb-signin-badges {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== END SIGN IN SECTION CSS ===== */

/* ===========================
SUBSCRIBE SECTION CSS
============================ */

.bb-subscribe {
  position: relative;
  background: url("./assets/form-banner.png") center center / cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
}

.bb-subscribe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.bb-subscribe .container {
  position: relative;
  z-index: 1;
}

.bb-subscribe-content {
  text-align: center;
}

.bb-subscribe-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.bb-subscribe-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #e5a000;
  margin-bottom: 0;
}

/* ---- Subscribe responsive ---- */
@media (max-width: 991.98px) {
  .bb-subscribe {
    padding: 80px 0;
  }

  .bb-subscribe-title {
    font-size: 42px;
  }

  .bb-subscribe-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .bb-subscribe {
    padding: 60px 0;
  }

  .bb-subscribe-title {
    font-size: 30px;
  }

  .bb-subscribe-subtitle {
    font-size: 14px;
  }
}

/* ===== END SUBSCRIBE SECTION CSS ===== */

/* ===========================
SUBSCRIPTION FORM SECTION CSS
============================ */

.bb-subform {
  padding: 80px 0;
  background: #f5f6f8;
}

/* ---- Form card ---- */
.bb-subform-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

/* ---- Header ---- */
.bb-subform-header {
  text-align: center;
  margin-bottom: 40px;
}

.bb-subform-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.bb-subform-desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 0;
}

/* ---- Step block ---- */
.bb-subform-step {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.bb-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bb-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0;
}

/* ---- Labels ---- */
.bb-subform-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.bb-subform-label span {
  color: #c0392b;
}

.bb-subform-label small {
  font-weight: 400;
  color: #9ca3af;
}

/* ---- Input wrapper ---- */
.bb-subform-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  transition: border-color 0.2s;
}

.bb-subform-input-wrap:focus-within {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.bb-subform-input-wrap .bi {
  font-size: 17px;
  color: #9ca3af;
  flex-shrink: 0;
}

.bb-subform-input {
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  color: #1a1a2e;
  background: transparent;
}

.bb-subform-input::placeholder {
  color: #b0b5be;
}

/* ---- Textarea ---- */
.bb-subform-textarea-wrap {
  align-items: flex-start;
  padding-top: 12px;
}

.bb-subform-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---- Package grid ---- */
.bb-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.bb-package-option {
  cursor: pointer;
}

.bb-package-option input[type="radio"] {
  display: none;
}

.bb-package-box {
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.2s;
}

.bb-package-box strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.bb-package-box small {
  font-size: 12px;
  color: #9ca3af;
  font-style: italic;
}

.bb-package-option input[type="radio"]:checked + .bb-package-box {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.04);
}

.bb-package-box:hover {
  border-color: #c0392b;
}

/* ---- Terms box ---- */
.bb-terms-box {
  background: #eff6ff;
  border: 2px solid #dbeafe;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bb-terms-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1a2e;
  cursor: pointer;
}

.bb-terms-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #c0392b;
  flex-shrink: 0;
}

.bb-terms-check a {
  color: #c0392b;
  font-weight: 600;
  text-decoration: none;
}

.bb-terms-check a:hover {
  text-decoration: underline;
}

/* ---- Captcha ---- */
.bb-captcha-wrap {
  margin-top: 4px;
}

.bb-captcha-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 16px;
  background: #fafafa;
  width: fit-content;
  font-size: 14px;
  color: #1a1a2e;
}

.bb-captcha-placeholder input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.bb-captcha-placeholder img {
  margin-left: 20px;
}

.bb-captcha-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #9ca3af;
}

/* ---- Submit ---- */
.bb-subform-submit {
  text-align: center;
  padding-top: 10px;
}

.bb-subform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 36px;
  border: 2px solid #c0392b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.bb-subform-btn:hover {
  background: #a93226;
  border-color: #a93226;
}

.bb-subform-submit-note {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ---- Subscription Form responsive ---- */
@media (max-width: 991.98px) {
  .bb-subform {
    padding: 60px 0;
  }

  .bb-subform-card {
    padding: 36px 32px;
  }

  .bb-subform-title {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .bb-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .bb-subform {
    padding: 40px 0;
  }

  .bb-subform-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .bb-subform-title {
    font-size: 22px;
  }

  .bb-subform-desc {
    font-size: 13px;
  }

  .bb-step-title {
    font-size: 17px;
  }

  .bb-subform-step {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .bb-package-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bb-subform-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 24px;
  }

  .bb-terms-check {
    font-size: 13px;
  }
}

/* ===== END SUBSCRIPTION FORM SECTION CSS ===== */
