/* ===========================
   BH79 - 5 INFO SECTIONS
   =========================== */

.bh79-info-section {
  padding: 80px 0;
  overflow: hidden;
}

.bh79-info-section:nth-child(even) {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2d42 50%, #0d1b2a 100%);
}

.bh79-info-section:nth-child(odd) {
  background: linear-gradient(135deg, #0a0f1e 0%, #131d35 50%, #0a0f1e 100%);
}

.bh79-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bh79-info-section:nth-child(even) .bh79-section-inner {
  direction: rtl;
}

.bh79-info-section:nth-child(even) .bh79-section-text,
.bh79-info-section:nth-child(even) .bh79-section-img {
  direction: ltr;
}

/* Image side */
.bh79-section-img {
  position: relative;
}

.bh79-section-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 120, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bh79-section-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0078ff, #00d4ff, #7b2fff);
  z-index: -1;
  opacity: 0.6;
}

.bh79-section-img:hover img {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 120, 255, 0.45);
}

/* Text side */
.bh79-section-text {
  color: #e8f0ff;
}

.bh79-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 120, 255, 0.15);
  border: 1px solid rgba(0, 120, 255, 0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #60b4ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bh79-section-badge .badge-icon {
  font-size: 1rem;
}

.bh79-section-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #ffffff 0%, #90c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bh79-section-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #a8bdd8;
  margin-bottom: 16px;
}

/* Feature list */
.bh79-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bh79-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #c5d9f0;
  font-weight: 500;
}

.bh79-feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078ff, #00d4ff);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Accent colors per section */
.bh79-info-section.section-chinh-sach .bh79-section-badge { color: #ffd700; border-color: rgba(255, 215, 0, 0.4); background: rgba(255, 215, 0, 0.1); }
.bh79-info-section.section-chinh-sach h2 { background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.bh79-info-section.section-nap-rut .bh79-section-badge { color: #00e676; border-color: rgba(0, 230, 118, 0.4); background: rgba(0, 230, 118, 0.1); }
.bh79-info-section.section-nap-rut h2 { background: linear-gradient(135deg, #ffffff 0%, #00e676 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.bh79-info-section.section-khuyen-mai .bh79-section-badge { color: #ff9d00; border-color: rgba(255, 157, 0, 0.4); background: rgba(255, 157, 0, 0.1); }
.bh79-info-section.section-khuyen-mai h2 { background: linear-gradient(135deg, #ffffff 0%, #ff9d00 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.bh79-info-section.section-the-loai .bh79-section-badge { color: #c084fc; border-color: rgba(192, 132, 252, 0.4); background: rgba(192, 132, 252, 0.1); }
.bh79-info-section.section-the-loai h2 { background: linear-gradient(135deg, #ffffff 0%, #c084fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.bh79-info-section.section-bao-mat .bh79-section-badge { color: #38bdf8; border-color: rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.1); }
.bh79-info-section.section-bao-mat h2 { background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Responsive */
@media (max-width: 768px) {
  .bh79-section-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .bh79-info-section:nth-child(even) .bh79-section-inner {
    direction: ltr;
  }
  .bh79-feature-list {
    grid-template-columns: 1fr;
  }
  .bh79-info-section {
    padding: 50px 0;
  }
}
