/* =============================================
   page-hero.css — Shared styles for inner pages
   (About, Contact, Gallery) page-hero banners
   ============================================= */

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 12, 28, 0.92) 0%, rgba(15, 25, 55, 0.78) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.hero-service-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--color-primary, #ed1c24);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 32px rgba(237, 28, 36, 0.4);
}
.hero-service-icon i { font-size: 2.1rem; color: #fff; }
.page-hero-content h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--color-primary, #ed1c24); text-decoration: none; transition: opacity 0.2s; }
.breadcrumb-nav a:hover { opacity: 0.8; }
.breadcrumb-nav .sep { color: rgba(255, 255, 255, 0.35); }
.breadcrumb-nav .current { color: #fff; }

/* ---- Stat Strip ---- */
.stat-strip {
  background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 100%);
  padding: 64px 0;
}
.stat-item { text-align: center; padding: 16px; }
.stat-num { font-size: 3.2rem; font-weight: 900; color: var(--color-primary, #ed1c24); line-height: 1; display: block; }
.stat-lbl { color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; margin-top: 0.6rem; display: block; }

/* ---- CTA Section ---- */
.service-cta-sec {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta-sec::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(237, 28, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.service-cta-sec h2 { color: #fff; font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; position: relative; }
.service-cta-sec p { color: rgba(255, 255, 255, 0.82); font-size: 1.12rem; margin-bottom: 2.2rem; position: relative; }
.btn-cta-gold {
  background: var(--color-primary, #ed1c24);
  color: #fff;
  padding: 16px 42px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin: 6px;
  font-size: 1rem;
  position: relative;
}
.btn-cta-gold:hover { background: #fff; color: var(--color-primary, #ed1c24); }
.btn-cta-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin: 6px;
  font-size: 1rem;
  position: relative;
}
.btn-cta-outline-white:hover { background: #fff; color: #1a1a2e; border-color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .page-hero-content h1 { font-size: 2rem; }
  .service-cta-sec h2 { font-size: 1.8rem; }
  .stat-num { font-size: 2.5rem; }
}
