/* Contact page specific styles live here (breadcrumb hero is now in css/style.css). */
/* ===== BREADCRUMB HERO (INNER PAGES) ===== */
.breadcrumb-hero {
  position: relative;
  isolation: isolate;
  min-height: 200px;
  padding: 42px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 15, 63, 0.92), rgba(59, 63, 115, 0.86)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644") center/cover no-repeat;
}

.breadcrumb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.14), transparent 55%);
}

.breadcrumb-hero .display-4 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.15;
  text-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* .breadcrumb-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
} */

.breadcrumb-hero .breadcrumb-item {
  font-weight: 500;
  font-size: 0.95rem;
}

.breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.85);
  padding: 0 10px;
}

.breadcrumb-hero a {
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.breadcrumb-hero a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-hero .breadcrumb-item.active {
  opacity: 0.95;
}

/* Mobile (576px se niche) */
@media (max-width: 575px) {
  .breadcrumb-hero {
    min-height: 150px;
    padding: 40px 0;
  }

  .breadcrumb-hero h1 {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}