/* =====================================================
   ADDITIONAL CHARGES PAGE – additional-charges.css
   Order matches additional-charges.html top → bottom
===================================================== */

/* =====================================================
   PAGE HERO
===================================================== */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000; /* fallback while image loads */
}

.additional-charges-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* =====================================================
   CHARGES GRID (Cards)
===================================================== */
.info-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Tablet & mobile: stack cards */
@media (max-width: 900px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* Card header with icon */
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand-primary);
}

/* Card style */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-bottom: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

/* Description text inside cards */
#descrip {
  color: var(--text-muted);
}
