/* Professional shared hero (Navy / Green / Cream) */
:root {
    --pro-hero-navy: #001a3a;
    --pro-hero-navy-2: #002147;
    --pro-hero-green: #0f6a4f;
    --pro-hero-cream: #fff7e6;
}

.pro-hero {
    position: relative;
    padding: 140px 0 72px;
    color: #fff;
    background:
        radial-gradient(1200px 600px at 15% 20%, rgba(15, 106, 79, 0.35), rgba(15, 106, 79, 0) 60%),
        radial-gradient(900px 500px at 85% 20%, rgba(255, 247, 230, 0.18), rgba(255, 247, 230, 0) 60%),
        linear-gradient(135deg, var(--pro-hero-navy) 0%, var(--pro-hero-navy-2) 55%, #072a34 100%);
    overflow: hidden;
}

.pro-hero::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0/42px 42px,
        linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0/42px 42px;
    opacity: 0.28;
    pointer-events: none;
}

.pro-hero__content {
    position: relative;
    z-index: 1;
}

.pro-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 247, 230, 0.28);
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 247, 230, 0.92);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.pro-hero__title {
    font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 12px;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.pro-hero__subtitle {
    margin: 0 0 18px;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
}

.pro-hero .breadcrumb {
    margin: 0;
    --bs-breadcrumb-divider: '›';
}

.pro-hero .breadcrumb-item a {
    color: rgba(255, 247, 230, 0.9);
    text-decoration: none;
}

.pro-hero .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.pro-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/*
  Contrast safety:
  Some pages set global heading colors (e.g., navy) which can override hero text.
  Force light colors inside the shared hero so it's always readable on dark bg.
*/
.pro-hero,
.pro-hero p,
.pro-hero span,
.pro-hero small {
    color: #ffffff;
}

.pro-hero h1,
.pro-hero h2,
.pro-hero h3,
.pro-hero h4,
.pro-hero h5,
.pro-hero h6,
.pro-hero .pro-hero__title {
    color: #ffffff !important;
}

.pro-hero .pro-hero__subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pro-hero .breadcrumb-item,
.pro-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.85) !important;
}

.pro-hero .breadcrumb-item a {
    color: rgba(255, 247, 230, 0.92) !important;
}

@media (max-width: 576px) {
    .pro-hero {
        padding: 120px 0 56px;
    }
}
