/* Global Hero Section Styling */
.hero-section {
    background: #0f172a; /* Fallback */
    background: radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Mesh Blueprint Texture */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Sapphire Glow */
.hero-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.hero-shape .shape-fill {
    fill: var(--bg, #f8f7f3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 10px 28px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.breadcrumb-custom a:hover {
    color: var(--gold, #fbc02d);
}

/* Quick Stats (For Notice Page & Others) */
.quick-stats-hero {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.quick-stats-hero strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .hero-section { padding: 30px 0 40px; }
}
