/* === BAO HANH PAGE STYLES === */

/* Hero */
.bh-hero {
  position: relative;
  background: linear-gradient(135deg, #690429 0%, #a3154a 50%, #690429 100%);
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.bh-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0djItSDI0di0yaDEyek0zNiAyNHYySDI0di0yaDEyeiIvPjwvZz48L2c+PC9zdmc+');
  opacity: 0.5;
}
.bh-hero-content {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.bh-breadcrumb {
  margin-bottom: 20px;
}
.bh-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}
.bh-breadcrumb li {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
}
.bh-breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255,255,255,0.5);
}
.bh-breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .2s;
}
.bh-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}
.bh-breadcrumb li[aria-current] {
  color: #fff;
  font-weight: 600;
}

.bh-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bh-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section */
.bh-section {
  padding: 50px 0;
}
.bh-section-branches {
  background: #f8f5f0;
}

.bh-section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #690429;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.bh-section-desc {
  text-align: center;
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Card grid */
.bh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.bh-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #f0e8e0;
  transition: box-shadow .25s;
}
.bh-card:hover {
  box-shadow: 0 6px 20px rgba(105,4,41,0.1);
}
.bh-card:last-child {
  grid-column: 1 / -1;
  max-width: 500px;
  justify-self: center;
  width: 100%;
}

.bh-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #690429, #a3154a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bh-card-icon i {
  color: #fff;
  font-size: 20px;
}

.bh-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #690429;
  margin: 0 0 14px;
}

.bh-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bh-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}
.bh-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a3154a;
}
.bh-list-check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  color: #2e7d32;
  background: none;
  width: auto;
  height: auto;
  top: 8px;
}
.bh-list-x li::before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  color: #c62828;
  background: none;
  width: auto;
  height: auto;
  top: 8px;
}
.bh-list-hours li {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  padding-left: 0;
}
.bh-list-hours li::before {
  display: none;
}
.bh-list-hours span {
  font-weight: 600;
  color: #690429;
}

.bh-label {
  font-weight: 600;
  color: #2e7d32;
  margin: 12px 0 6px;
  font-size: 15px;
}
.bh-label-danger {
  color: #c62828;
  margin-top: 16px;
}

.bh-note {
  color: #888;
  font-style: italic;
  font-size: 14px;
  margin: 12px 0 0;
  padding: 10px 14px;
  background: #faf5f0;
  border-radius: 6px;
  border-left: 3px solid #a3154a;
}

/* Branch cards */
.bh-branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.bh-branch-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #f0e8e0;
  transition: box-shadow .25s, transform .25s;
}
.bh-branch-card:hover {
  box-shadow: 0 8px 24px rgba(105,4,41,0.12);
  transform: translateY(-3px);
}
.bh-branch-header {
  background: linear-gradient(135deg, #690429, #a3154a);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bh-branch-header i {
  color: #fff;
  font-size: 18px;
}
.bh-branch-region {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}
.bh-branch-body {
  padding: 16px 20px;
}
.bh-branch-body p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bh-branch-body p:last-child {
  margin-bottom: 0;
}
.bh-branch-body i {
  width: 16px;
  color: #a3154a;
  margin-top: 3px;
}
.bh-branch-contact {
  font-weight: 600;
  color: #333 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .bh-hero {
    padding: 40px 0;
  }
  .bh-hero-title {
    font-size: 24px;
  }
  .bh-hero-desc {
    font-size: 15px;
  }
  .bh-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bh-card:last-child {
    grid-column: 1;
  }
  .bh-section {
    padding: 32px 0;
  }
  .bh-section-title {
    font-size: 20px;
  }
  .bh-branch-grid {
    grid-template-columns: 1fr;
  }
}
