/* ==========================================================================
   SECTION STYLES — Homepage Components
   ========================================================================== */

/* --------------- Shared Section Styles --------------- */
section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bv-text-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--bv-text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.rounded { border-radius: 8px; }
.shadow { box-shadow: var(--bv-shadow-md); }
.shadow-lg { box-shadow: var(--bv-shadow-lg); }

/* --------------- HERO — PREMIUM REDESIGN --------------- */
.bv-hero {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0 !important;  /* override global section { padding: 60px 0 } */
  margin: 0 !important;
}

/* Swiper container */
.bv-hero-swiper {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 680px;
}

/* Individual slide — must be full height for flex centering to work */
.bv-hero-slide {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center !important;       /* vertical center */
  justify-content: flex-start !important;
  height: 100% !important;              /* fill swiper container height */
}

/* Multi-layer gradient overlay — dark left, subtle right */
.bv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(7, 21, 28, 0.90) 0%,
      rgba(11, 46, 68, 0.75) 45%,
      rgba(0, 0, 0, 0.20) 100%);
  z-index: 1;
}

/* Slide number accent (top-right decorative) */
.bv-slide-num {
  position: absolute;
  top: 48px;
  right: 60px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -4px;
  z-index: 2;
  pointer-events: none;
  font-family: var(--bv-font-heading);
  user-select: none;
}

/* Content wrapper — centred inside the full-height flex slide */
.bv-hero-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex !important;
  align-items: center !important;   /* belt-and-suspenders vertical centre */
  height: 100% !important;
}

/* Content block — left-aligned, max 700px wide */
.bv-hero-content {
  max-width: 700px;
}

/* Tag pill */
.bv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 170, 229, 0.18);
  border: 1px solid rgba(100, 170, 229, 0.45);
  color: #64aae5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.bv-hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #64aae5;
  border-radius: 50%;
  box-shadow: 0 0 6px #64aae5;
  display: inline-block;
}

/* Main title */
.bv-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.bv-hero-title span {
  color: #64aae5 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

/* Description */
.bv-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

/* CTA buttons row */
.bv-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bv-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bv-primary);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(18, 111, 181, 0.25);
  border: 2px solid transparent;
}
.bv-btn-solid:hover {
  background: var(--bv-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(18, 111, 181, 0.4);
}
.bv-btn-solid i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.bv-btn-solid:hover i {
  transform: translateX(5px);
}

.bv-btn-outline-white {
  display: inline-flex;
  align-items: center;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 13px 32px;
  border-radius: 100px;
  font-size: 0.97rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.bv-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

/* ---- Swiper Navigation ---- */
.bv-hero-prev,
.bv-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}
.bv-hero-prev { left: 30px; }
.bv-hero-next { right: 30px; }
.bv-hero-prev:hover,
.bv-hero-next:hover {
  background: var(--bv-primary);
  border-color: var(--bv-primary);
  box-shadow: 0 0 0 8px rgba(18, 111, 181, 0.15);
  transform: translateY(-50%) scale(1.08);
}

/* ---- Swiper Pagination ---- */
.bv-hero-dots {
  position: absolute;
  bottom: 32px;
  left: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bv-hero-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: all 0.35s ease;
  cursor: pointer;
}
.bv-hero-dots .swiper-pagination-bullet-active {
  width: 32px;
  background: #64aae5;
  box-shadow: 0 0 10px rgba(100, 170, 229, 0.6);
}

/* ---- Slide entrance animations ---- */
.bv-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .bv-anim:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.swiper-slide-active .bv-anim:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.swiper-slide-active .bv-anim:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.50s; }
.swiper-slide-active .bv-anim:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.68s; }

/* ---- Bottom Stats Bar ---- */
.bv-hero-bar {
  position: relative;
  z-index: 5;
  background: #0e3038;
}
.bv-hero-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 80px;
}
.bv-bar-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  flex-shrink: 0;
}
.bv-bar-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #60efcd;
  line-height: 1;
  font-family: var(--bv-font-heading);
}
.bv-bar-num sup {
  font-size: 0.8rem;
  font-weight: 700;
  vertical-align: super;
}
.bv-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.bv-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.bv-bar-divider--grow {
  flex: 1;
  width: auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.bv-bar-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 0 24px;
  flex-shrink: 0;
}
.bv-bar-notice i {
  color: #1bb0ce;
  font-size: 1rem;
}
.bv-bar-notice span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.bv-bar-notice a {
  font-size: 0.85rem;
  font-weight: 700;
  color: #60efcd;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.bv-bar-notice a:hover { color: #1bb0ce; }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .bv-hero-swiper { max-height: 600px; }
  .bv-hero-wrap { padding: 0 40px; }
  .bv-hero-bar-inner { padding: 0 40px; }
  .bv-bar-stat { padding: 20px 28px; }
}

@media (max-width: 991px) {
  .bv-hero-swiper { max-height: 540px; min-height: 480px; }
  .bv-hero-prev { left: 16px; }
  .bv-hero-next { right: 16px; }
  .bv-hero-dots {
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%);
  }
  .bv-hero-dock {
    border-radius: 28px;
    padding: 10px;
    bottom: -55px;
  }
  .bv-hero-dock-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .bv-dock-btn {
    padding: 12px 18px;
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .bv-hero-swiper { max-height: 480px; min-height: 420px; }
  .bv-hero-wrap { padding: 0 24px; }
  .bv-hero-prev, .bv-hero-next { display: none; }
  .bv-hero-dots {
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%);
  }
  .bv-bar-stat:nth-child(5), .bv-bar-divider:nth-child(4) { display: none; }
  .bv-hero-bar-inner { padding: 0 24px; }
  .bv-bar-stat { padding: 16px 18px; }
  .bv-bar-num { font-size: 1.35rem; }
  .bv-bar-notice { padding-left: 12px; }
  .bv-bar-notice span { display: none; }
  .bv-slide-num { font-size: 5rem; top: 32px; right: 28px; }
}

@media (max-width: 575px) {
  .bv-hero-swiper { max-height: 440px; min-height: 380px; }
  .bv-hero-content { max-width: 100%; }
  .bv-hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bv-btn-solid, .bv-btn-outline-white { width: 100%; justify-content: center; }
  .bv-hero-bar-inner { flex-wrap: wrap; gap: 0; min-height: auto; padding: 12px 16px; }
  .bv-bar-divider--grow { display: none; }
  .bv-bar-notice { padding: 8px 0; width: 100%; justify-content: center; border-top: 1px solid rgba(255,255,255,0.07); }
  .bv-bar-notice span { display: inline; }
  .bv-hero-dots {
    left: 50% !important;
    bottom: 24px !important;
    transform: translateX(-50%);
  }
  .bv-hero-dock {
    border-radius: 24px;
    padding: 8px;
    bottom: -55px;
    max-width: calc(100% - 32px);
  }
  .bv-hero-dock-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .bv-dock-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
    gap: 6px;
  }
  .bv-dock-btn i {
    font-size: 0.95rem;
  }
}


/* --------------- HERO FLOATING DOCK --------------- */
.bv-hero-dock {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(14, 48, 56, 0.15),
              0 10px 20px rgba(14, 48, 56, 0.05);
  max-width: calc(100% - 48px);
  width: auto;
}

.bv-hero-dock-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bv-dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(26, 158, 138, 0.05);
  color: #0e3038 !important;
  font-family: var(--bv-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--bv-border);
  white-space: nowrap;
}

.bv-dock-btn i {
  font-size: 1.1rem;
  color: var(--bv-primary);
  transition: all 0.3s ease;
}

.bv-dock-btn:hover {
  background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18, 111, 181, 0.25);
  border-color: transparent;
}

.bv-dock-btn:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.bv-dock-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.hero-slide-bg {
  width: 100%;
  height: 650px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Inner flexbox layout that replaces Bootstrap row/col */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.hero-strip-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 46, 51, 0.8) 0%, rgba(16, 46, 51, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 45px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(16, 46, 51, 0.25);
  max-width: 650px;
  width: 100%;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #60efcd;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #60efcd;
  border-radius: 50%;
  box-shadow: 0 0 10px #60efcd;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(16, 46, 51, 0.3);
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1bb0ce 0%, #318f84 100%);
  color: #ffffff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(27, 176, 206, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(27, 176, 206, 0.5);
  background: linear-gradient(135deg, #318f84 0%, #1bb0ce 100%);
}

.btn-hero-primary i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

/* --------------- SWIPER NAVIGATION & PAGINATION --------------- */
.hero-arrow {
  color: #102e33 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(16, 46, 51, 0.15);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.hero-arrow:hover {
  background: #1bb0ce !important;
  color: white !important;
  transform: scale(1.08) translateY(-50%);
  box-shadow: 0 15px 30px rgba(27, 176, 206, 0.4);
}

.hero-arrow::after {
  font-size: 1.1rem !important;
  font-weight: 900;
}

.swiper-button-prev.hero-arrow {
  left: 30px !important;
}
.swiper-button-next.hero-arrow {
  right: 30px !important;
}

.hero-pagination {
  bottom: 120px !important;
  z-index: 12 !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #60efcd;
  width: 28px;
  box-shadow: 0 0 8px #60efcd;
}

/* --------------- ENTRANCE MICRO-ANIMATIONS --------------- */
.swiper-slide .animate-subtitle,
.swiper-slide .animate-title,
.swiper-slide .animate-desc,
.swiper-slide .animate-actions {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .animate-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.swiper-slide-active .animate-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.swiper-slide-active .animate-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.swiper-slide-active .animate-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* --------------- CYAN INFO STRIP --------------- */
.hero-cyan-strip {
  background: linear-gradient(90deg, #1bb0ce 0%, #60efcd 100%);
  padding: 16px 0;
  width: 100%;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 20px rgba(16, 46, 51, 0.08);
}

.strip-text {
  font-weight: 600;
  color: #102e33;
  margin-right: 15px;
  font-size: 1.05rem;
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

.strip-text i {
  margin-right: 8px;
}

.strip-badge {
  background-color: #102e33;
  color: #60efcd;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(16, 46, 51, 0.25);
}

.strip-badge:hover {
  background-color: #ffffff;
  color: #102e33;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* --------------- FLOATING ACTION DOCK --------------- */
.hero-floating-actions {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.action-buttons-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 16px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow: 0 20px 50px rgba(16, 46, 51, 0.08);
  max-width: 1140px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.action-btn-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(16, 46, 51, 0.02);
  border: 1px solid rgba(16, 46, 51, 0.03);
}

.action-btn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(16, 46, 51, 0.12);
  border-color: rgba(27, 176, 206, 0.2);
}

.action-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-appointment {
  background: rgba(27, 176, 206, 0.1);
  color: #1bb0ce;
}
.card-doctors {
  background: rgba(96, 239, 205, 0.15);
  color: #318f84;
}
.card-package {
  background: rgba(245, 102, 154, 0.1);
  color: #f5669a;
}
.card-report {
  background: rgba(155, 81, 224, 0.1);
  color: #9b51e0;
}

.action-btn-card:hover .action-icon-box {
  transform: scale(1.1) rotate(-5deg);
}

.action-btn-card:hover .card-appointment {
  background: #1bb0ce;
  color: #ffffff;
}
.action-btn-card:hover .card-doctors {
  background: #318f84;
  color: #ffffff;
}
.action-btn-card:hover .card-package {
  background: #f5669a;
  color: #ffffff;
}
.action-btn-card:hover .card-report {
  background: #9b51e0;
  color: #ffffff;
}

.action-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #102e33;
  margin: 0 0 3px 0;
  transition: color 0.3s ease;
}

.action-btn-card:hover .action-card-content h3 {
  color: #1bb0ce;
}

.action-card-content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
}

/* --------------- RESPONSIVENESS --------------- */
@media (max-width: 1199px) {
  .hero-slide-bg {
    height: 600px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .action-buttons-wrapper {
    max-width: 960px;
    gap: 12px;
    padding: 12px;
  }
  .action-btn-card {
    padding: 16px;
    gap: 12px;
  }
  .action-icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .action-card-content h3 {
    font-size: 0.95rem;
  }
  .action-card-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 991px) {
  .hero-slide-bg {
    height: 550px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-slide-content {
    padding: 30px;
  }
  .action-buttons-wrapper {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
    gap: 12px;
  }
  .hero-floating-actions {
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .hero-slide-bg {
    height: 500px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .btn-hero-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .hero-arrow {
    display: none !important;
  }
  .hero-pagination {
    bottom: 100px !important;
  }
  .hero-floating-actions {
    margin-top: -30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .hero-strip-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero-slide-bg {
    height: 460px;
  }
  .hero-slide-content {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    padding-left: 0;
  }
  .hero-subtitle::before {
    display: none;
  }
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .hero-desc {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .btn-hero-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .action-buttons-wrapper {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 12px;
    gap: 10px;
  }
  .action-btn-card {
    padding: 14px 18px;
  }
  .hero-pagination {
    bottom: 80px !important;
  }
}

/* --------------- STATS SECTION — PREMIUM REDESIGN --------------- */
.bv-stats-section {
  position: relative;
  padding: 130px 0 90px;
  background: #f4f8f8;
  overflow: hidden;
  z-index: 1;
}

/* Subtle dot overlay pattern */
.bv-stats-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 158, 138, 0.1) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.bv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Premium light stat card */
.bv-stat-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(14, 48, 56, 0.08);
  border-top: 4px solid var(--bv-primary);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(14, 48, 56, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

/* Hover effects */
.bv-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 48, 56, 0.1);
  border-color: var(--bv-border);
  border-top-color: var(--bv-primary-dark);
}

/* Icon container */
.bv-stat-icon-box {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.bv-stat-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bv-border-light);
  color: var(--bv-primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bv-stat-card:hover .bv-stat-icon-inner {
  transform: scale(1.1);
  background: var(--bv-primary);
  color: #ffffff;
  box-shadow: var(--bv-shadow-md);
}

/* Stat numbers & labels */
.bv-stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  font-family: var(--bv-font-heading);
  letter-spacing: -1px;
  color: #0e3038;
  transition: all 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner styling */
.bv-stat-number-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--bv-border);
  border-radius: 50%;
  border-top-color: var(--bv-primary);
  animation: bv-spin 0.8s linear infinite;
}

@keyframes bv-spin {
  to { transform: rotate(360deg); }
}

.bv-stat-number.loaded {
  animation: bv-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bv-fade-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* Subtle accent line under number */
.bv-stat-card::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--bv-border);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.bv-stat-card:hover::after {
  width: 50px;
  background: var(--bv-primary);
}

.bv-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5c727d;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.bv-stat-card:hover .bv-stat-label {
  color: #0e3038;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .bv-stats-section { padding: 110px 0 80px; }
  .bv-stat-number { font-size: 2.4rem; }
}

@media (max-width: 991px) {
  .bv-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bv-stats-section { padding: 110px 0 70px; }
  .bv-stat-card { padding: 30px 20px; }
}

@media (max-width: 575px) {
  .bv-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bv-stats-section { padding: 100px 0 60px; }
  .bv-stat-card { padding: 26px 20px; }
  .bv-stat-number { font-size: 2.2rem; }
}


/* --------------- DEPARTMENTS SECTION (Hex Grid) --------------- */
.departments-section {
  padding: 60px 0;
}

.department-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--bv-border);
  border-radius: 25px;
  background: var(--bv-bg-primary);
  color: var(--bv-text-body);
  cursor: pointer;
  transition: all var(--bv-transition-fast);
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--bv-primary);
  color: var(--bv-text-light);
  border-color: var(--bv-primary);
}

.departments-grid.hex-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 20px;
}

.hex-item {
  display: block;
}

.hex-item a {
  text-decoration: none;
}

.hex-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bv-text-dark);
  margin-top: 12px;
  margin-bottom: 0;
}

/* --------------- ABOUT SECTION --------------- */
.about-section {
  padding: 60px 0;
}

.about-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.about-content {
  flex: 1;
}

.about-content .section-title {
  font-size: 1.75rem;
}

.about-text {
  color: var(--bv-text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --------------- SERVICES SECTION --------------- */
/* ================================================================
   OUR SERVICES SECTION — PREMIUM REDESIGN
   ================================================================ */

.bv-services-section {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #0a1e35 0%, #102845 45%, #163660 100%);
  overflow: hidden;
}

/* Large radial glow decorations */
.bv-services-bg-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bv-services-bg-deco--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(18,111,181,0.22) 0%, transparent 65%);
}
.bv-services-bg-deco--2 {
  width: 500px; height: 500px;
  bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(100,170,229,0.14) 0%, transparent 65%);
}

/* ---- Section Header ---- */
.bv-services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.bv-services-header-left { flex: 1 1 420px; }
.bv-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,170,229,0.12);
  border: 1px solid rgba(100,170,229,0.28);
  color: #64aae5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.bv-services-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.bv-services-title span {
  color: #64aae5;
}
.bv-services-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
  max-width: 520px;
  margin: 0;
}
.bv-services-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.22);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.28s ease;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.bv-services-all-btn:hover {
  background: var(--bv-primary, #126fb5);
  border-color: var(--bv-primary, #126fb5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,111,181,0.35);
}
.bv-services-all-btn i {
  transition: transform 0.25s ease;
}
.bv-services-all-btn:hover i {
  transform: translateX(4px);
}

/* ---- Services Grid ---- */
.bv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* ---- Service Card ---- */
.bv-service-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.38s ease;
  cursor: default;
  backdrop-filter: blur(12px);
}
.bv-service-card:hover {
  transform: translateY(-8px);
  background: rgba(18,111,181,0.2);
  border-color: rgba(100,170,229,0.6);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(100,170,229,0.25);
}

/* Hover fill overlay */
.bv-sc-hover-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,111,181,0.16) 0%, rgba(18,111,181,0.04) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: 20px;
  z-index: 0;
}
.bv-service-card:hover .bv-sc-hover-fill {
  opacity: 1;
}

/* Top row */
.bv-sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Number accent */
.bv-sc-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(100,170,229,0.6);
  letter-spacing: 2px;
  font-family: var(--bv-font-heading, sans-serif);
}
.bv-service-card:hover .bv-sc-number {
  color: #64aae5;
}

/* Icon */
.bv-sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(18,111,181,0.35);
  border: 1px solid rgba(100,170,229,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8d8f8;
  font-size: 1.4rem;
  transition: all 0.32s ease;
  flex-shrink: 0;
}
.bv-service-card:hover .bv-sc-icon {
  background: var(--bv-primary, #126fb5);
  border-color: #64aae5;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(18,111,181,0.55);
  transform: scale(1.1);
}

/* Divider */
.bv-sc-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(100,170,229,0.45), rgba(100,170,229,0.1), transparent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}
.bv-service-card:hover .bv-sc-divider {
  background: linear-gradient(to right, rgba(100,170,229,0.85), rgba(100,170,229,0.2), transparent);
}

/* Body */
.bv-sc-body {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.bv-sc-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.1px;
  transition: color 0.25s;
}
.bv-service-card:hover .bv-sc-title {
  color: #a8d8f8;
}
.bv-sc-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin: 0;
  transition: color 0.25s;
}
.bv-service-card:hover .bv-sc-desc {
  color: rgba(255,255,255,0.95);
}

/* Footer link */
.bv-sc-footer {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.bv-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64aae5;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.bv-sc-link i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.bv-service-card:hover .bv-sc-link {
  color: #a8d8f8;
}
.bv-service-card:hover .bv-sc-link i {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 991px) {
  .bv-services-header { flex-direction: column; align-items: flex-start; }
  .bv-services-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
}
@media (max-width: 575px) {
  .bv-services-section { padding: 70px 0 80px; }
  .bv-services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bv-service-card { padding: 24px 18px 20px; }
}

/* Keep old .services-section fallback classes working */
.services-section { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }

/* --------------- DOCTORS CAROUSEL (homepage widget) --------------- */

.doctors-carousel-section {
  padding: 80px 0;
  background-color: var(--bv-bg-tertiary);
}
.doctors-carousel-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.doctors-carousel-section .section-title {
  font-size: 2.2rem;
  color: var(--bv-text-dark);
}
.doctor-card {
  background-color: var(--bv-bg-secondary);
  border-radius: 16px;
  padding: 40px 20px 30px;
  text-align: center;
  color: var(--bv-text-dark);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: transform var(--bv-transition-normal), box-shadow var(--bv-transition-normal);
  border: 1px solid var(--bv-border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bv-shadow-md);
  border-color: var(--bv-border);
}
.doctor-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bv-primary);
  padding: 4px;
  background-color: transparent;
  box-sizing: border-box;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.doctor-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.doctor-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.doctor-name a { color: var(--bv-text-dark); text-decoration: none; }
.doctor-name a:hover { color: var(--bv-primary); }
.doctor-designation { font-size: 0.95rem; margin-bottom: 5px; color: var(--bv-primary) !important; font-weight: 500; }
.doctor-degrees { font-size: 0.85rem; margin-bottom: 15px; color: var(--bv-text-muted) !important; flex-grow: 1; }
.doctor-card .btn { margin-top: auto; align-self: center; }
.doctors-swiper:not(.swiper-initialized) .swiper-wrapper { display: flex; gap: 20px; }
.doctors-swiper:not(.swiper-initialized) .swiper-slide { flex: 0 0 calc(25% - 15px); min-width: 250px; }

/* --------------- DOCTORS ARCHIVE — PREMIUM --------------- */

/* Page wrapper */
.bv-doctors-archive {
  background: #f5f8ff;
}

/* Hero Banner */
.bv-doctors-hero {
  position: relative;
  background: linear-gradient(135deg, #071524 0%, #0b2844 55%, #126fb5 100%);
  padding: 90px 0 60px;
  overflow: hidden;
}
.bv-doctors-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.bv-doctors-hero-bg {
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,170,229,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bv-doctors-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.bv-doctors-hero-content { flex: 1 1 420px; }
.bv-doctors-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 170, 229, 0.15);
  border: 1px solid rgba(100, 170, 229, 0.35);
  color: #64aae5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.bv-doctors-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.bv-doctors-hero-title span {
  color: #64aae5;
}
.bv-doctors-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Stats */
.bv-doctors-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 28px 36px;
  flex-shrink: 0;
}
.bv-dhs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.bv-dhs-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.bv-dhs-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  white-space: nowrap;
}
.bv-dhs-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Filter Bar */
.bv-doctors-filter-wrap {
  background: #ffffff;
  border-bottom: 1px solid #e8edf5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.bv-doctors-filter-form {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0;
}
.bv-filter-search,
.bv-filter-specialty {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 12px 20px;
  border-right: 1px solid #e8edf5;
}
.bv-filter-search i,
.bv-filter-specialty i {
  color: var(--bv-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.bv-filter-search input,
.bv-filter-specialty select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #1e2d3d;
  background: transparent;
  width: 100%;
  font-family: var(--bv-font-body);
}
.bv-filter-specialty select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.bv-filter-btn {
  background: var(--bv-primary);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
  white-space: nowrap;
  margin-left: 0;
}
.bv-filter-btn:hover {
  background: var(--bv-primary-dark);
}

/* Doctors Grid */
.bv-doctors-grid-section {
  padding: 60px 0 80px;
}
.bv-doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* Doctor Card */
.bv-doc-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e4ecf7;
  box-shadow: 0 4px 20px rgba(18, 111, 181, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.bv-doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(18, 111, 181, 0.12);
  border-color: rgba(18, 111, 181, 0.2);
}

/* Photo */
.bv-doc-photo-wrap {
  position: relative;
  background: linear-gradient(160deg, #deeaf8 0%, #eef4fc 100%);
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bv-doc-photo-wrap .bv-doc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.bv-doc-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(18, 111, 181, 0.18);
}
.bv-doc-specialty-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bv-primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(18, 111, 181, 0.3);
}

/* Body */
.bv-doc-body {
  padding: 24px 22px 16px;
  flex-grow: 1;
}
.bv-doc-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.bv-doc-name a {
  color: #0e2a45;
  text-decoration: none;
  transition: color 0.25s;
}
.bv-doc-name a:hover { color: var(--bv-primary); }
.bv-doc-designation {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bv-primary);
  margin-bottom: 4px;
}
.bv-doc-degrees {
  font-size: 0.82rem;
  color: #6b7f96;
  margin-bottom: 8px;
  line-height: 1.5;
}
.bv-doc-chamber {
  font-size: 0.82rem;
  color: #8a99aa;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bv-doc-chamber i {
  color: var(--bv-primary);
  font-size: 0.75rem;
}

/* Actions */
.bv-doc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eef2f8;
}
.bv-doc-btn-profile,
.bv-doc-btn-appt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.bv-doc-btn-profile {
  color: var(--bv-primary);
  background: transparent;
  border-right: 1px solid #eef2f8;
}
.bv-doc-btn-profile:hover {
  background: #f0f7ff;
  color: var(--bv-primary-dark);
}
.bv-doc-btn-appt {
  color: #ffffff;
  background: var(--bv-primary);
}
.bv-doc-btn-appt:hover {
  background: var(--bv-primary-dark);
  color: #ffffff;
}

/* Pagination */
.bv-pagination-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.bv-pagination-wrap .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.bv-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #0e2a45;
  background: #ffffff;
  border: 1px solid #dde5f0;
  transition: all 0.25s ease;
}
.bv-pagination-wrap .page-numbers:hover,
.bv-pagination-wrap .page-numbers.current {
  background: var(--bv-primary);
  color: #ffffff;
  border-color: var(--bv-primary);
  box-shadow: 0 4px 12px rgba(18, 111, 181, 0.25);
}

/* No results state */
.bv-no-doctors {
  text-align: center;
  padding: 80px 20px;
  color: #8a99aa;
}
.bv-no-doctors i {
  font-size: 4rem;
  color: #d0ddf0;
  margin-bottom: 20px;
  display: block;
}
.bv-no-doctors h2 {
  font-size: 1.6rem;
  color: #0e2a45;
  margin-bottom: 10px;
}
.bv-no-doctors p {
  margin-bottom: 28px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .bv-doctors-hero-inner { flex-direction: column; text-align: center; }
  .bv-doctors-hero-desc { max-width: 100%; margin: 0 auto; }
  .bv-doctors-hero-stats { width: 100%; justify-content: center; }
  .bv-dhs-item { padding: 0 18px; }
}
@media (max-width: 767px) {
  .bv-doctors-hero { padding: 60px 0 40px; }
  .bv-doctors-filter-form { flex-direction: column; gap: 0; padding: 12px 0; }
  .bv-filter-search, .bv-filter-specialty {
    width: 100%; border-right: none;
    border-bottom: 1px solid #e8edf5;
    border-radius: 0;
  }
  .bv-filter-btn { width: 100%; justify-content: center; border-radius: 0 0 8px 8px; }
  .bv-doctors-hero-stats { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .bv-dhs-divider { display: none; }
  .bv-dhs-item { padding: 0 12px; }
  .bv-doctors-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
}
@media (max-width: 480px) {
  .bv-doctors-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bv-doc-actions { grid-template-columns: 1fr; }
  .bv-doc-btn-profile { border-right: none; border-bottom: 1px solid #eef2f8; }
}


/* --------------- PACKAGES SECTION --------------- */
.packages-section {
  padding: 60px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.package-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--bv-border-light);
}

.package-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.package-price {
  color: var(--bv-primary);
}

.package-price .currency {
  font-size: 1.25rem;
  font-weight: 500;
}

.package-price .amount {
  font-size: 2rem;
  font-weight: 700;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bv-border-light);
  color: var(--bv-text-body);
}

.package-features li i {
  margin-right: 8px;
}

.package-footer {
  margin-top: auto;
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--bv-primary);
  color: var(--bv-text-light);
  padding: 5px 15px;
  border-radius: 0 0 6px 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* --------------- TESTIMONIALS SECTION --------------- */
.testimonials-section {
  padding: 60px 0;
}

.testimonial-card {
  background: var(--bv-bg-primary);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--bv-shadow-sm);
  max-width: 700px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 1.5rem;
  margin-bottom: 15px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--bv-text-body);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  margin-right: 3px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.author-designation {
  font-size: 0.85rem;
}

/* Testimonials: simple layout when Swiper is not loaded */
.testimonials-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  justify-content: center;
}

/* --------------- NEWS SECTION --------------- */
.news-section {
  padding: 60px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.news-card {
  background: var(--bv-bg-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--bv-shadow-sm);
  transition: transform var(--bv-transition-normal), box-shadow var(--bv-transition-normal);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bv-shadow-lg);
}

.news-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.news-date .day {
  font-size: 1.25rem;
  font-weight: 700;
}

.news-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.news-content {
  padding: 20px;
}

.news-meta {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.news-meta i {
  margin-right: 5px;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-title a {
  color: var(--bv-text-dark);
}

.news-title a:hover {
  color: var(--bv-primary);
}

.news-excerpt {
  color: var(--bv-text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.read-more {
  font-weight: 500;
  font-size: 0.9rem;
}

.read-more i {
  margin-left: 4px;
  transition: margin-left var(--bv-transition-fast);
}

.read-more:hover i {
  margin-left: 8px;
}

/* --------------- CTA BANNER --------------- */
.cta-banner-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: var(--bv-text-light);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-or {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.cta-phone {
  color: var(--bv-text-light) !important;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-phone i {
  margin-right: 5px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* --------------- TEXT UTILITIES --------------- */
.text-light {
  color: var(--bv-text-light) !important;
}

.text-muted {
  color: var(--bv-text-muted) !important;
}

.text-primary {
  color: var(--bv-primary) !important;
}

.text-secondary {
  color: var(--bv-secondary) !important;
}

/* ============================================================
   GLOBAL PAGE HEADER BANNER
   ============================================================ */
.bv-page-header {
  position: relative;
  background: linear-gradient(135deg, #071524 0%, #0b2844 55%, #126fb5 100%);
  padding: 60px 0 65px;
  overflow: hidden;
}
.bv-page-header-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.bv-page-header::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 170, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.bv-page-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 111, 181, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.bv-page-header-inner {
  position: relative;
  z-index: 2;
}
.bv-page-header-content {
  max-width: 800px;
}
.bv-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 170, 229, 0.15);
  border: 1px solid rgba(100, 170, 229, 0.35);
  color: #64aae5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.bv-page-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.bv-page-title span {
  color: #64aae5;
}
.bv-page-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   GLOBAL BREADCRUMBS
   ============================================================ */
.bv-breadcrumbs {
  background: #ffffff;
  border-bottom: 1px solid #e6edf8;
  padding: 13px 0;
  font-size: 0.83rem;
  color: #8a9ab0;
}
.bv-breadcrumbs a {
  color: #8a9ab0;
  text-decoration: none;
  transition: color 0.22s ease;
  font-weight: 500;
}
.bv-breadcrumbs a:hover {
  color: var(--bv-primary, #126fb5);
}
.bv-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bv-breadcrumbs i.fa-chevron-right {
  font-size: 0.65rem;
  color: #cbd5e0;
}
.bv-breadcrumbs span {
  color: var(--bv-primary, #126fb5);
  font-weight: 600;
}
.bv-breadcrumbs i.fa-home {
  font-size: 0.82rem;
  margin-right: 2px;
}

@media (max-width: 767px) {
  .bv-page-header {
    padding: 50px 0 55px;
    text-align: center;
  }
  .bv-page-header-content {
    margin: 0 auto;
  }
  .bv-page-eyebrow {
    justify-content: center;
  }
  .bv-breadcrumbs .container {
    justify-content: center;
  }
}

/* ============================================================
   IMPROVED DOCTOR CARD (archive grid)
   ============================================================ */

.bv-doc-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e0eaf6;
  box-shadow: 0 2px 16px rgba(18, 111, 181, 0.05);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.38s ease,
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bv-doc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(18, 111, 181, 0.14);
  border-color: rgba(18, 111, 181, 0.22);
}

/* Photo area — taller with gradient overlay at bottom */
.bv-doc-photo-wrap {
  position: relative;
  height: 240px;
  background: linear-gradient(150deg, #d6e9f8 0%, #eaf3fc 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.bv-doc-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 100%);
  pointer-events: none;
}
.bv-doc-photo-wrap .bv-doc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.bv-doc-card:hover .bv-doc-photo {
  transform: scale(1.04);
}
.bv-doc-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(18, 111, 181, 0.14);
}
.bv-doc-specialty-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bv-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  box-shadow: 0 3px 10px rgba(18, 111, 181, 0.28);
  z-index: 2;
}

/* Body */
.bv-doc-body {
  padding: 20px 20px 14px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.bv-doc-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.bv-doc-name a {
  color: #0e2a45;
  text-decoration: none;
  transition: color 0.2s;
}
.bv-doc-name a:hover { color: var(--bv-primary); }
.bv-doc-designation {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bv-primary);
  margin-bottom: 3px;
}
.bv-doc-degrees {
  font-size: 0.78rem;
  color: #7a8fa6;
  margin-bottom: 10px;
  line-height: 1.5;
  flex-grow: 1;
}
.bv-doc-chamber {
  font-size: 0.78rem;
  color: #9aabb8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}
.bv-doc-chamber i { color: var(--bv-primary); font-size: 0.72rem; }

/* Action bar */
.bv-doc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #eef3fb;
  margin-top: 4px;
}
.bv-doc-btn-profile,
.bv-doc-btn-appt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
  letter-spacing: 0.2px;
}
.bv-doc-btn-profile {
  color: var(--bv-primary);
  background: #f4f9ff;
  border-right: 1px solid #eef3fb;
  border-radius: 0 0 0 20px;
}
.bv-doc-btn-profile:hover {
  background: #e4f0ff;
  color: var(--bv-primary-dark);
}
.bv-doc-btn-appt {
  color: #fff;
  background: var(--bv-primary);
  border-radius: 0 0 20px 0;
}
.bv-doc-btn-appt:hover {
  background: var(--bv-primary-dark);
  color: #fff;
}

/* ============================================================
   SINGLE DOCTOR PAGE — PREMIUM
   ============================================================ */

.bv-single-doctor-page {
  background: #f4f8ff;
}

/* Breadcrumb */
.bv-sdp-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e6edf8;
  padding: 12px 0;
  font-size: 0.83rem;
  color: #8a9ab0;
}
.bv-sdp-breadcrumb a {
  color: #8a9ab0;
  text-decoration: none;
  transition: color 0.2s;
}
.bv-sdp-breadcrumb a:hover { color: var(--bv-primary); }
.bv-sdp-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bv-sdp-breadcrumb i.fa-chevron-right {
  font-size: 0.65rem;
  color: #cbd5e0;
}
.bv-sdp-breadcrumb span { color: var(--bv-primary); font-weight: 600; }

/* Hero Section */
.bv-sdp-hero {
  position: relative;
  background: linear-gradient(135deg, #071524 0%, #0b2844 55%, #126fb5 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}
.bv-sdp-hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.bv-sdp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 50px;
  flex-wrap: wrap;
}

/* Photo Card */
.bv-sdp-photo-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: 20px;
  overflow: visible;
  position: relative;
  margin-bottom: -60px;
}
.bv-sdp-photo {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.15);
}
.bv-sdp-photo-placeholder {
  width: 240px;
  height: 300px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.bv-sdp-specialty-tag {
  position: absolute;
  top: 14px;
  right: -12px;
  background: var(--bv-secondary, #64aae5);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.bv-sdp-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.25s;
}
.bv-sdp-phone-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Profile Info */
.bv-sdp-info {
  flex: 1 1 360px;
  padding-bottom: 24px;
}
.bv-sdp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100,170,229,0.15);
  border: 1px solid rgba(100,170,229,0.35);
  color: #64aae5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.bv-sdp-name {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.bv-sdp-designation {
  font-size: 1rem;
  font-weight: 600;
  color: #64aae5;
  margin-bottom: 6px;
}
.bv-sdp-degrees {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.bv-sdp-degrees i { color: #64aae5; margin-top: 2px; flex-shrink: 0; }

/* Meta badges */
.bv-sdp-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.bv-sdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.bv-sdp-badge--spec {
  background: rgba(100,170,229,0.18);
  border-color: rgba(100,170,229,0.35);
  color: #64aae5;
}

/* CTA Buttons */
.bv-sdp-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bv-sdp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bv-primary);
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(18,111,181,0.35);
  transition: all 0.28s ease;
}
.bv-sdp-btn-primary:hover {
  background: var(--bv-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18,111,181,0.45);
}
.bv-sdp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.bv-sdp-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

/* Body Section */
.bv-sdp-body {
  padding: 80px 0 60px;
}
.bv-sdp-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

/* Content Panels */
.bv-sdp-main { display: flex; flex-direction: column; gap: 24px; }
.bv-sdp-panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e0eaf6;
  box-shadow: 0 4px 20px rgba(18,111,181,0.04);
  overflow: hidden;
}
.bv-sdp-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-bottom: 1px solid #eef3fb;
  background: #fafcff;
}
.bv-sdp-panel-header i {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(18,111,181,0.08);
  color: var(--bv-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.bv-sdp-panel-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e2a45;
  margin: 0;
}
.bv-sdp-panel-body { padding: 24px 28px; }
.bv-sdp-content { font-size: 0.97rem; color: #3d5166; line-height: 1.8; }
.bv-sdp-panel-text { font-size: 0.95rem; color: #3d5166; line-height: 1.7; margin: 0; }

/* Sidebar */
.bv-sdp-sidebar { display: flex; flex-direction: column; gap: 24px; }
.bv-sdp-info-card,
.bv-sdp-schedule-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e0eaf6;
  box-shadow: 0 4px 20px rgba(18,111,181,0.04);
  overflow: hidden;
}
.bv-sdp-info-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0e2a45;
  padding: 18px 22px;
  border-bottom: 1px solid #eef3fb;
  background: #fafcff;
  margin: 0;
}
.bv-sdp-info-card-title i { color: var(--bv-primary); }
.bv-sdp-info-list {
  list-style: none;
  margin: 0; padding: 0;
}
.bv-sdp-info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  border-bottom: 1px solid #f0f5fc;
}
.bv-sdp-info-list li:last-child { border-bottom: none; }
.bv-sdp-info-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a0afc0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bv-sdp-info-label i { color: var(--bv-primary); }
.bv-sdp-info-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2f45;
}
.bv-sdp-info-val a { color: var(--bv-primary); text-decoration: none; }
.bv-sdp-info-val a:hover { text-decoration: underline; }

/* Schedule */
.bv-sdp-schedule-list {
  list-style: none;
  margin: 0; padding: 0;
}
.bv-sdp-schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px;
  border-bottom: 1px solid #f0f5fc;
  font-size: 0.88rem;
}
.bv-sdp-schedule-list li:last-child { border-bottom: none; }
.bv-sdp-sched-day { font-weight: 700; color: #1a2f45; }
.bv-sdp-sched-time { color: var(--bv-primary); font-weight: 600; }
.bv-sdp-no-schedule {
  padding: 18px 22px;
  font-size: 0.88rem;
  color: #8a9ab0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.bv-sdp-no-schedule i { color: #64aae5; margin-top: 2px; flex-shrink: 0; }
.bv-sdp-book-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 16px 16px;
  background: var(--bv-primary);
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.bv-sdp-book-full:hover {
  background: var(--bv-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive — Single Doctor */
@media (max-width: 1024px) {
  .bv-sdp-body-grid { grid-template-columns: 1fr; }
  .bv-sdp-sidebar { grid-row: 1; }
}
@media (max-width: 767px) {
  .bv-sdp-hero { padding: 40px 0 70px; }
  .bv-sdp-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .bv-sdp-photo-card { margin-bottom: -50px; }
  .bv-sdp-info { text-align: center; }
  .bv-sdp-degrees { justify-content: center; }
  .bv-sdp-meta-badges { justify-content: center; }
  .bv-sdp-ctas { justify-content: center; }
  .bv-sdp-body { padding: 70px 0 40px; }
}

/* ================================================================
   BLUE VUE — ABOUT & CONTACT PAGES PREMIUM STYLES v2
   ================================================================ */

/* ======================
   SHARED UTILITIES
   ====================== */
.bv-about-page,
.bv-contact-page {
  color: var(--bv-text-dark, #0c2540);
}

.bv-section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

/* ======================
   ABOUT — EYEBROW BADGE
   ====================== */
.bv-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 111, 181, 0.08);
  color: var(--bv-primary, #126fb5);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(18, 111, 181, 0.15);
  margin-bottom: 20px;
}

/* ======================
   ABOUT — SECTION 1: INTRO
   ====================== */
.bv-about-intro {
  padding: 90px 0 80px;
}

.bv-about-grid-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.bv-about-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #0c2540;
}
.bv-about-title span {
  color: var(--bv-primary, #126fb5);
}
.bv-about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.65;
  margin-bottom: 18px;
}
.bv-about-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Feature list */
.bv-about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bv-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bv-af-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 111, 181, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-primary, #126fb5);
  font-size: 1rem;
  margin-top: 2px;
  transition: background 0.3s, color 0.3s;
}
.bv-about-feature-item:hover .bv-af-icon {
  background: var(--bv-primary, #126fb5);
  color: #fff;
}
.bv-af-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0c2540;
  margin: 0 0 4px;
}
.bv-af-text p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Image block */
.bv-about-image-wrap {
  position: relative;
  padding: 24px 0 24px 24px;
}
.bv-about-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  height: 94%;
  background: linear-gradient(135deg, rgba(18,111,181,0.09) 0%, rgba(49,143,132,0.05) 100%);
  border-radius: 28px;
  z-index: 0;
}
.bv-about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
  display: block;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.bv-about-image-wrap:hover .bv-about-img {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 36px 80px rgba(18,111,181,0.14);
}

/* Floating badge — "10+ Years" */
.bv-about-image-card {
  position: absolute;
  bottom: 50px;
  left: 8px;
  z-index: 3;
  background: #fff;
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 12px 36px rgba(18,111,181,0.16);
  border-left: 5px solid var(--bv-primary, #126fb5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.bv-about-image-wrap:hover .bv-about-image-card {
  transform: translateY(-6px);
}
.bv-aic-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bv-primary, #126fb5);
  line-height: 1;
}
.bv-aic-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8a9ab0;
  margin-top: 4px;
}

/* Floating badge — "ISO Certified" */
.bv-about-image-badge {
  position: absolute;
  top: 40px;
  right: -10px;
  z-index: 3;
  background: linear-gradient(135deg, #318f84 0%, #1c5c55 100%);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(49,143,132,0.3);
  white-space: nowrap;
  transition: transform 0.3s ease;
}
.bv-about-image-badge i { font-size: 1rem; }
.bv-about-image-wrap:hover .bv-about-image-badge {
  transform: translateY(-4px);
}

/* ======================
   ABOUT — SECTION 2: MISSION & VISION
   ====================== */
.bv-about-mission {
  padding: 90px 0;
  background: #f5f8fc;
  border-top: 1px solid rgba(18,111,181,0.06);
  border-bottom: 1px solid rgba(18,111,181,0.06);
}

.bv-about-grid-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bv-mv-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid rgba(18,111,181,0.08);
  box-shadow: 0 6px 30px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.3s;
}
.bv-mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(18,111,181,0.10);
  border-color: rgba(18,111,181,0.18);
}
.bv-mv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #126fb5 0%, #64aae5 100%);
}
.bv-mv-card-accent--teal {
  background: linear-gradient(90deg, #318f84 0%, #5bc4b8 100%);
}

.bv-mv-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.bv-mv-card:hover .bv-mv-icon { transform: scale(1.1) rotate(5deg); }
.bv-mv-icon--primary {
  background: linear-gradient(135deg, #126fb5 0%, #0b4b7d 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(18,111,181,0.28);
}
.bv-mv-icon--teal {
  background: linear-gradient(135deg, #318f84 0%, #1c5c55 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(49,143,132,0.28);
}

.bv-mv-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0c2540;
  margin-bottom: 16px;
}
.bv-mv-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}
.bv-mv-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bv-mv-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2f45;
}
.bv-mv-bullets li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(18,111,181,0.1);
  color: var(--bv-primary, #126fb5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.bv-vision-card .bv-mv-bullets li i {
  background: rgba(49,143,132,0.1);
  color: #318f84;
}

/* ======================
   ABOUT — SECTION 3: CORE VALUES
   ====================== */
.bv-about-values {
  padding: 90px 0;
}

.bv-about-grid-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bv-value-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(18,111,181,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.3s;
}
.bv-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(18,111,181,0.10);
  border-color: rgba(18,111,181,0.18);
}

.bv-vc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.bv-value-card:hover .bv-vc-icon-wrap { transform: scale(1.12) rotate(6deg); }
.bv-vc-icon-wrap--blue {
  background: linear-gradient(135deg, rgba(18,111,181,0.12) 0%, rgba(100,170,229,0.12) 100%);
  color: var(--bv-primary, #126fb5);
}
.bv-vc-icon-wrap--teal {
  background: linear-gradient(135deg, rgba(49,143,132,0.12) 0%, rgba(91,196,184,0.12) 100%);
  color: #318f84;
}

.bv-value-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0c2540;
  margin-bottom: 12px;
}
.bv-value-card p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ======================
   ABOUT — SECTION 4: STATS
   ====================== */
.bv-about-stats {
  padding-bottom: 0;
}

/* ======================
   CONTACT — SECTION 1: CARDS
   ====================== */
.bv-contact-cards-section {
  padding: 80px 0 60px;
}

.bv-contact-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bv-contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 42px 32px;
  text-align: center;
  border: 1px solid rgba(18,111,181,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bv-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(18,111,181,0.10);
  border-color: rgba(18,111,181,0.16);
}

.bv-cc-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.bv-contact-card:hover .bv-cc-icon { transform: scale(1.1) rotate(6deg); }
.bv-cc-icon--blue {
  background: linear-gradient(135deg, #126fb5 0%, #0b4b7d 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(18,111,181,0.28);
}
.bv-cc-icon--teal {
  background: linear-gradient(135deg, #318f84 0%, #1c5c55 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(49,143,132,0.28);
}

.bv-contact-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0c2540;
  margin-bottom: 10px;
}
.bv-contact-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.bv-contact-card p a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.bv-contact-card p a:hover { color: var(--bv-primary, #126fb5); }

.bv-cc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bv-primary, #126fb5);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(18,111,181,0.25);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.bv-cc-link:hover {
  background: var(--bv-primary, #126fb5);
  color: #fff;
  border-color: var(--bv-primary, #126fb5);
  transform: translateX(3px);
}
.bv-cc-link i { font-size: 0.75rem; transition: transform 0.25s; }
.bv-cc-link:hover i { transform: translateX(4px); }

/* ======================
   CONTACT — SECTION 2: SPLIT
   ====================== */
.bv-contact-split-section {
  padding: 20px 0 80px;
}

.bv-contact-grid-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* --- Info Panel --- */
.bv-contact-info {
  background: linear-gradient(160deg, #0c2540 0%, #0b3766 60%, #126fb5 100%);
  border-radius: 26px;
  padding: 52px 44px;
  color: #fff;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 60px rgba(12,37,64,0.22);
  overflow: hidden;
}
.bv-contact-info::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.bv-contact-info::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.bv-ci-header { position: relative; z-index: 1; }
.bv-ci-header .bv-about-eyebrow {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.18);
}
.bv-ci-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 14px 0 16px;
  line-height: 1.2;
}
.bv-ci-header h2 span { color: #64aae5; }
.bv-ci-header p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Working hours */
.bv-working-hours {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.10);
}
.bv-working-hours h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bv-working-hours h4 i { color: #64aae5; }
.bv-working-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bv-working-hours ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.bv-working-hours ul li:last-child { border-bottom: none; }
.bv-wh-day {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bv-wh-day i { color: #64aae5; font-size: 0.8rem; }
.bv-wh-time {
  font-weight: 700;
  color: #fff;
}
.bv-wh-time--open {
  color: #5bc4b8;
  background: rgba(91,196,184,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.82rem;
}

/* Social icons */
.bv-social-block {
  position: relative;
  z-index: 1;
}
.bv-social-block h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.bv-social-icons {
  display: flex;
  gap: 12px;
}
.bv-social-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: default;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.bv-social-icon:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  color: #fff;
}

/* --- Form Panel --- */
.bv-contact-form-wrap { }
.bv-contact-form {
  background: #fff;
  border-radius: 26px;
  padding: 52px 48px;
  border: 1px solid rgba(18,111,181,0.08);
  box-shadow: 0 12px 50px rgba(0,0,0,0.05);
}

.bv-cf-header { margin-bottom: 36px; }
.bv-cf-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0c2540;
  margin-bottom: 10px;
  line-height: 1.2;
}
.bv-cf-header h2 span { color: var(--bv-primary, #126fb5); }
.bv-cf-header p {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Fallback form */
.bv-fallback-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bv-form-group { display: flex; flex-direction: column; gap: 8px; }
.bv-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0c2540;
  letter-spacing: 0.3px;
}

.bv-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.bv-input-wrap i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.25s;
}
.bv-input-wrap input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid rgba(18,111,181,0.14);
  border-radius: 12px;
  font-size: 0.92rem;
  color: #0c2540;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  font-family: inherit;
}
.bv-input-wrap:focus-within i { color: var(--bv-primary, #126fb5); }
.bv-input-wrap input:focus {
  border-color: var(--bv-primary, #126fb5);
  box-shadow: 0 0 0 4px rgba(18,111,181,0.12);
  background: #fff;
}

.bv-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(18,111,181,0.14);
  border-radius: 12px;
  font-size: 0.92rem;
  color: #0c2540;
  background: #f8fafc;
  outline: none;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  min-height: 140px;
}
.bv-form-group textarea:focus {
  border-color: var(--bv-primary, #126fb5);
  box-shadow: 0 0 0 4px rgba(18,111,181,0.12);
  background: #fff;
}

.bv-submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #126fb5 0%, #0b4b7d 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 6px 20px rgba(18,111,181,0.30);
  font-family: inherit;
  letter-spacing: 0.3px;
}
.bv-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(18,111,181,0.38);
  background: linear-gradient(135deg, #1580d2 0%, #0c5898 100%);
}
.bv-submit-btn:active { transform: translateY(-1px); }
.bv-submit-btn i { font-size: 0.88rem; }

/* ======================
   CONTACT — SECTION 3: MAP
   ====================== */
.bv-map-section {
  padding: 0 0 90px;
}
.bv-map-container {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(18,111,181,0.10);
}

/* ======================
   RESPONSIVE BREAKPOINTS
   ====================== */
@media (max-width: 1200px) {
  .bv-about-grid-intro { gap: 50px; }
}

@media (max-width: 1024px) {
  .bv-about-grid-intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .bv-about-image-wrap {
    padding-left: 0;
    padding-top: 0;
    max-width: 560px;
    margin: 0 auto;
  }
  .bv-about-image-bg { display: none; }
  .bv-about-img { height: 380px; }
  .bv-about-image-card { left: 20px; bottom: 30px; }
  .bv-about-image-badge { right: 10px; }

  .bv-contact-grid-split {
    grid-template-columns: 1fr;
  }
  .bv-contact-info {
    position: static;
  }
}

@media (max-width: 991px) {
  .bv-about-intro { padding: 70px 0 60px; }
  .bv-about-mission { padding: 70px 0; }
  .bv-about-values { padding: 70px 0; }
  .bv-contact-cards-section { padding: 60px 0 50px; }
  .bv-contact-split-section { padding: 20px 0 70px; }

  .bv-about-title { font-size: 2.2rem; }

  .bv-about-grid-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bv-contact-form { padding: 44px 36px; }
  .bv-contact-info { padding: 44px 36px; }
}

@media (max-width: 767px) {
  .bv-about-grid-mv {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bv-contact-grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bv-mv-card { padding: 36px 30px; }
  .bv-about-img { height: 300px; }
}

@media (max-width: 640px) {
  .bv-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bv-about-title { font-size: 1.85rem; }
  .bv-about-lead { font-size: 1rem; }
  .bv-contact-form { padding: 32px 24px; }
  .bv-contact-info { padding: 32px 24px; }
  .bv-ci-header h2 { font-size: 1.6rem; }
  .bv-cf-header h2 { font-size: 1.6rem; }
  .bv-submit-btn { width: 100%; justify-content: center; }
}

@media (max-width: 575px) {
  .bv-about-grid-values {
    grid-template-columns: 1fr;
  }
  .bv-about-image-card { padding: 16px 22px; }
  .bv-aic-num { font-size: 1.9rem; }
  .bv-map-section { padding-bottom: 60px; }
}

/* ================================================================
   BLUE VUE — 404 ERROR PAGE PREMIUM STYLES
   ================================================================ */
.bv-404-section {
  padding: 100px 0;
  background-color: var(--bv-bg-primary);
  min-height: calc(100vh - 450px);
  display: flex;
  align-items: center;
}

.bv-404-card {
  background: var(--bv-bg-secondary);
  border-radius: 24px;
  padding: 70px 60px;
  box-shadow: var(--bv-shadow-lg);
  border: 1px solid var(--bv-border-light);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background blob overlay */
.bv-404-card::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(18, 111, 181, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Left column - Visual column */
.bv-404-visual-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.bv-404-number-wrap {
  position: relative;
  z-index: 2;
}

.bv-404-number {
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  text-shadow: 0 15px 40px rgba(18, 111, 181, 0.15);
  animation: float 6s ease-in-out infinite;
}

/* Glowing floating rings */
.bv-404-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(18, 111, 181, 0.15);
  pointer-events: none;
}

.bv-404-ring-1 {
  width: 280px;
  height: 280px;
  animation: rotate-clockwise 25s linear infinite;
}

.bv-404-ring-2 {
  width: 220px;
  height: 220px;
  border-style: dotted;
  animation: rotate-counter 20s linear infinite;
}

.bv-404-ring-3 {
  width: 160px;
  height: 160px;
  border: 2px solid rgba(18, 111, 181, 0.05);
}

.bv-404-heart-pulsing {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  background: var(--bv-bg-secondary);
  border-radius: 50%;
  box-shadow: var(--bv-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-primary);
  font-size: 1.5rem;
  z-index: 3;
  border: 1px solid var(--bv-border-light);
  animation: pulse-badge 2s infinite;
}

/* Right column - Content column */
.bv-404-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bv-404-title {
  font-size: 2.5rem;
  font-weight: 750;
  color: var(--bv-secondary);
  line-height: 1.25;
  margin: 0;
}

.bv-404-message {
  font-size: 1.05rem;
  color: var(--bv-text-body);
  line-height: 1.7;
  margin: 0 0 10px 0;
}

/* Search Form Custom Style */
.bv-404-search-box {
  background: var(--bv-bg-tertiary);
  border: 1px solid var(--bv-border);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 10px;
}

.bv-404-search-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bv-secondary-light);
  margin-bottom: 12px;
}

.bv-404-search-form {
  display: flex;
  gap: 12px;
  position: relative;
}

.bv-404-search-input-wrapper {
  position: relative;
  flex: 1;
}

.bv-404-search-input-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bv-text-muted);
  font-size: 1rem;
}

.bv-404-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 50px;
  border: 1.5px solid var(--bv-border);
  background: var(--bv-bg-secondary);
  color: var(--bv-text-dark);
  font-family: var(--bv-font-body);
  font-size: 0.95rem;
  transition: all var(--bv-transition-normal);
}

.bv-404-search-input:focus {
  outline: none;
  border-color: var(--bv-primary);
  box-shadow: 0 0 0 4px rgba(18, 111, 181, 0.12);
  background: var(--bv-bg-secondary);
}

.bv-404-search-btn {
  padding: 0 28px;
  border-radius: 50px;
  background-color: var(--bv-primary);
  color: var(--bv-text-light);
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--bv-transition-normal);
}

.bv-404-search-btn:hover {
  background-color: var(--bv-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--bv-shadow-md);
}

.bv-404-search-btn i {
  font-size: 0.95rem;
}

/* Links Cloud */
.bv-404-links-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bv-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.bv-404-links-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bv-404-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--bv-bg-tertiary);
  border: 1px solid var(--bv-border-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bv-secondary-light);
  transition: all var(--bv-transition-fast);
}

.bv-404-link-item i {
  color: var(--bv-primary);
  font-size: 0.9rem;
}

.bv-404-link-item:hover {
  background: var(--bv-primary);
  color: var(--bv-text-light) !important;
  border-color: var(--bv-primary);
  transform: translateY(-2px);
  box-shadow: var(--bv-shadow-sm);
}

.bv-404-link-item:hover i {
  color: var(--bv-text-light);
}

/* CSS Keyframe Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-counter {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 111, 181, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(18, 111, 181, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(18, 111, 181, 0);
    transform: scale(1);
  }
}

/* ================================================================
   BLUE VUE — SEARCH RESULTS PAGE PREMIUM STYLES
   ================================================================ */
.bv-search-section {
  padding: 80px 0;
  background-color: var(--bv-bg-primary);
  min-height: calc(100vh - 450px);
}

.bv-search-layout {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Info Bar */
.bv-search-result-info {
  background: var(--bv-bg-secondary);
  border-radius: 18px;
  padding: 22px 30px;
  box-shadow: var(--bv-shadow-sm);
  border: 1px solid var(--bv-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.bv-search-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bv-text-body);
  font-size: 0.98rem;
}

.bv-search-meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 111, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-primary);
  font-size: 1rem;
}

.bv-search-meta-text strong {
  color: var(--bv-secondary);
}

.bv-search-query-badge {
  background: rgba(18, 111, 181, 0.08);
  color: var(--bv-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid rgba(18, 111, 181, 0.12);
  margin-left: 4px;
}

.bv-search-clear-btn {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bv-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--bv-transition-fast);
}

.bv-search-clear-btn:hover {
  color: var(--bv-primary-dark);
  transform: translateX(3px);
}

/* Results Grid */
.bv-search-results-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card */
.bv-search-card {
  background: var(--bv-bg-secondary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--bv-shadow-sm);
  border: 1px solid var(--bv-border-light);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bv-search-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bv-shadow-lg);
  border-color: rgba(18, 111, 181, 0.2);
}

/* Left Accent Line */
.bv-search-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--bv-border);
  transition: all var(--bv-transition-normal);
}

.bv-search-card:hover::after {
  background: var(--bv-primary);
  top: 30px;
  bottom: 30px;
}

/* Card Meta / Badge */
.bv-search-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bv-search-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Badge Post Type Variants */
.bv-search-card-badge.type-doctor {
  background: rgba(255, 152, 0, 0.08);
  color: var(--bv-accent);
  border: 1px solid rgba(255, 152, 0, 0.15);
}

.bv-search-card-badge.type-post {
  background: rgba(76, 175, 80, 0.08);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.15);
}

.bv-search-card-badge.type-page {
  background: rgba(18, 111, 181, 0.08);
  color: var(--bv-primary);
  border: 1px solid rgba(18, 111, 181, 0.15);
}

.bv-search-card-date {
  font-size: 0.85rem;
  color: var(--bv-text-muted);
}

/* Card Title */
.bv-search-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.bv-search-card-title a {
  color: var(--bv-secondary);
  transition: color var(--bv-transition-fast);
}

.bv-search-card-title a:hover {
  color: var(--bv-primary);
}

/* Card Excerpt */
.bv-search-card-excerpt {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--bv-text-body);
  margin: 0;
}

.bv-search-card-excerpt p {
  margin: 0;
}

/* Read More */
.bv-search-card-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bv-primary);
  transition: all var(--bv-transition-fast);
}

.bv-search-card-link i {
  font-size: 0.82rem;
  transition: transform var(--bv-transition-normal);
}

.bv-search-card-link:hover {
  color: var(--bv-primary-dark);
}

.bv-search-card:hover .bv-search-card-link i {
  transform: translateX(5px);
}

/* Pagination container */
.bv-search-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.bv-search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bv-bg-secondary);
  border: 1px solid var(--bv-border);
  color: var(--bv-secondary-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--bv-transition-normal);
}

.bv-search-pagination .page-numbers:hover,
.bv-search-pagination .page-numbers.current {
  background: var(--bv-primary);
  color: var(--bv-text-light) !important;
  border-color: var(--bv-primary);
  box-shadow: var(--bv-shadow-sm);
}

.bv-search-pagination .prev.page-numbers,
.bv-search-pagination .next.page-numbers {
  width: auto;
  padding: 0 20px;
  border-radius: 50px;
}

/* Older custom non-numbered posts nav support */
.bv-search-posts-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  background: var(--bv-bg-secondary);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: var(--bv-shadow-sm);
  border: 1px solid var(--bv-border-light);
}

.bv-search-posts-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bv-primary);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--bv-border);
  transition: all var(--bv-transition-normal);
}

.bv-search-posts-nav a:hover {
  background: var(--bv-primary);
  color: var(--bv-text-light) !important;
  border-color: var(--bv-primary);
  box-shadow: var(--bv-shadow-sm);
}

/* Fallback - No Results */
.bv-search-no-results {
  padding: 40px 0;
}

.bv-no-results-card {
  background: var(--bv-bg-secondary);
  border-radius: 24px;
  border: 1px solid var(--bv-border-light);
  box-shadow: var(--bv-shadow-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.bv-no-results-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
}

.bv-nr-circle {
  position: absolute;
  border-radius: 50%;
}

.bv-nr-circle-1 {
  width: 120px;
  height: 120px;
  background: rgba(18, 111, 181, 0.04);
}

.bv-nr-circle-2 {
  width: 80px;
  height: 80px;
  background: rgba(18, 111, 181, 0.08);
  animation: pulse-badge 3s infinite;
}

.bv-no-results-icon {
  font-size: 2.4rem;
  color: var(--bv-primary);
  z-index: 2;
}

.bv-no-results-title {
  font-size: 2rem;
  font-weight: 750;
  color: var(--bv-secondary);
  margin-bottom: 12px;
}

.bv-no-results-desc {
  font-size: 1.02rem;
  color: var(--bv-text-body);
  max-width: 480px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.bv-no-results-search {
  max-width: 480px;
  margin: 0 auto 35px;
  background: var(--bv-bg-tertiary);
  border: 1px solid var(--bv-border);
  padding: 16px;
  border-radius: 14px;
}

.bv-no-results-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Media Queries for Search & 404 Pages */
@media (max-width: 991px) {
  .bv-404-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 30px;
    text-align: center;
  }

  .bv-404-visual-block {
    height: 220px;
  }

  .bv-404-number {
    font-size: 7.5rem;
  }

  .bv-404-heart-pulsing {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    animation: pulse-badge 2s infinite;
  }
  
  .bv-404-content {
    align-items: center;
  }

  .bv-404-links-cloud {
    justify-content: center;
  }
  
  .bv-search-card {
    padding: 30px;
  }
  
  .bv-search-card-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 640px) {
  .bv-404-title {
    font-size: 2rem;
  }
  
  .bv-404-search-box {
    width: 100%;
    padding: 16px;
  }

  .bv-404-search-form {
    flex-direction: column;
    gap: 10px;
  }

  .bv-404-search-btn {
    width: 100%;
    padding: 14px 0;
  }
  
  .bv-no-results-card {
    padding: 40px 20px;
  }
  
  .bv-no-results-title {
    font-size: 1.65rem;
  }
}

/* ==========================================================================
   BLOG ARCHIVE & SINGLE POST STYLES
   ========================================================================== */

.bv-blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 45px;
  align-items: start;
}

.bv-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bv-blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #eef2f6;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bv-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(18,111,181,0.08);
}

.bv-blog-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.bv-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bv-blog-card:hover .bv-blog-img {
  transform: scale(1.06);
}

.bv-blog-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--bv-secondary);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}

.bv-blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bv-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #7c8e9a;
  margin-bottom: 12px;
  font-weight: 500;
}

.bv-blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bv-blog-card-meta i {
  color: var(--bv-primary);
}

.bv-blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.bv-blog-card-title a {
  color: #1a2b36;
  text-decoration: none;
  transition: color 0.25s ease;
}

.bv-blog-card-title a:hover {
  color: var(--bv-primary);
}

.bv-blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5c6f84;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bv-blog-card-link {
  color: var(--bv-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: gap 0.25s ease;
}

.bv-blog-card-link:hover {
  gap: 12px;
  color: var(--bv-secondary);
}

.bv-blog-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.bv-blog-pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.bv-blog-pagination li a,
.bv-blog-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #eef2f6;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5c6f84;
  text-decoration: none;
  background: white;
  transition: all 0.3s ease;
}

.bv-blog-pagination li span.current {
  background: linear-gradient(135deg, var(--bv-primary), var(--bv-primary-dark));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(18,111,181,0.25);
}

.bv-blog-pagination li a:hover {
  background: var(--bv-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(18,111,181,0.15);
}

.bv-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bv-sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #eef2f6;
}

.bv-widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2b36;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bv-bg-primary);
  position: relative;
}

.bv-widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bv-primary);
}

.bv-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bv-search-input-wrap i {
  position: absolute;
  left: 16px;
  color: #a5b8c6;
  font-size: 0.95rem;
}

.bv-search-field {
  width: 100%;
  padding: 12px 70px 12px 42px;
  border-radius: 50px;
  border: 1px solid #e2eaf1;
  background: #f8fafc;
  font-size: 0.9rem;
  color: #1a2b36;
  transition: all 0.3s ease;
  outline: none;
}

.bv-search-field:focus {
  border-color: var(--bv-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(18,111,181,0.1);
}

.bv-search-submit-btn {
  position: absolute;
  right: 6px;
  background: var(--bv-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.bv-search-submit-btn:hover {
  background: var(--bv-primary-dark);
}

.bv-widget-posts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bv-widget-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bv-widget-post-thumb {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #eef2f6;
}

.bv-widget-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bv-widget-post-item:hover .bv-widget-post-thumb img {
  transform: scale(1.08);
}

.bv-widget-post-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bv-widget-post-date {
  font-size: 0.75rem;
  color: #7c8e9a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bv-widget-post-date i {
  color: var(--bv-primary);
}

.bv-widget-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.bv-widget-post-title a {
  color: #1a2b36;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bv-widget-post-title a:hover {
  color: var(--bv-primary);
}

.bv-widget-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bv-widget-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5c6f84;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
  padding: 4px 0;
}

.bv-widget-categories li a:hover {
  color: var(--bv-primary);
  transform: translateX(4px);
}

.bv-cat-count {
  background: var(--bv-bg-primary);
  color: var(--bv-primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.bv-widget-categories li a:hover .bv-cat-count {
  background: var(--bv-primary);
  color: white;
}

.bv-single-post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.04);
  border: 1px solid #eef2f6;
}

.bv-single-post-thumbnail {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-bottom: 1px solid #eef2f6;
}

.bv-single-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

.bv-single-post-body {
  padding: 40px;
}

.bv-single-post-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a2b36;
  line-height: 1.3;
}

.bv-single-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3d5166;
}

.bv-single-post-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2b36;
  margin-top: 35px;
  margin-bottom: 18px;
}

.bv-single-post-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2b36;
  margin-top: 30px;
  margin-bottom: 15px;
}

.bv-single-post-content p {
  margin-bottom: 22px;
}

.bv-single-post-content blockquote {
  background: var(--bv-bg-primary);
  border-left: 4px solid var(--bv-primary);
  padding: 24px 30px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bv-primary-dark);
  position: relative;
}

.bv-single-post-content blockquote p {
  margin: 0;
}

.bv-author-box {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.bv-author-box:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.bv-author-avatar img {
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bv-author-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bv-primary);
  margin-bottom: 5px;
}

.bv-author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2b36;
  margin-bottom: 8px;
}

.bv-author-bio {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5c6f84;
}

.bv-post-nav-row {
  display: flex;
}

.bv-post-nav-item {
  flex: 1;
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.bv-post-nav-item:hover {
  border-color: var(--bv-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.bv-post-nav-link {
  display: block;
  padding: 24px 30px;
  text-decoration: none;
  height: 100%;
}

.bv-post-nav-dir {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7c8e9a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.bv-post-nav-item:hover .bv-post-nav-dir {
  color: var(--bv-primary);
}

.bv-post-nav-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2b36;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.bv-post-nav-item:hover .bv-post-nav-title {
  color: var(--bv-primary);
}

@media (max-width: 1024px) {
  .bv-blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .bv-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bv-single-post-body {
    padding: 30px 20px;
  }
  .bv-author-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px !important;
  }
  .bv-post-nav-row {
    flex-direction: column;
    gap: 20px;
  }
}


