/* ═══════════════════════════════════════════════════════════
   WORLD-CLASS PAGE HERO — Compact, Premium, Elegant
   ═══════════════════════════════════════════════════════════ */

:root {
    --hero-navy:  #0a1628;
    --hero-blue:  #1e3a8a;
    --hero-gold:  #f5a623;
    --hero-glow:  rgba(59, 130, 246, 0.18);
    --hero-white: rgba(255, 255, 255, 0.92);
}

/* ── Base Shell ── */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 44px 0 68px;
    background: var(--hero-navy);
    color: #fff;
    isolation: isolate;
}

/* ── Layered Gradient Background ── */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 90% -10%,  rgba(59,130,246,.20) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at  0% 110%, rgba(245,166, 35,.10) 0%, transparent 55%),
        linear-gradient(150deg, #0f1f3d 0%, #0a1628 55%, #0d2247 100%);
    z-index: 0;
}

/* ── Dot-grid Blueprint Texture ── */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1;
    pointer-events: none;
}

/* ── Animated Orb (Top-Right) ── */
.hero-orb {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59,130,246,.22) 0%, transparent 68%);
    border-radius: 50%;
    filter: blur(48px);
    z-index: 2;
    animation: heroOrbPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* ── Accent Orb (Bottom-Left) ── */
.hero-orb-gold {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(245,166,35,.14) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 2;
    animation: heroOrbPulse 8s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroOrbPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: .7; transform: scale(1.12); }
}

/* ── Content Layer ── */
.hero-content {
    position: relative;
    z-index: 10;
}

/* ── Breadcrumb Pill ── */
.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 100px;
    padding: 7px 20px 7px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
    margin-bottom: 16px;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-custom a:hover { color: var(--hero-gold); }

.breadcrumb-custom .bc-sep {
    margin: 0 8px;
    opacity: 0.35;
    font-size: 0.65rem;
}

.breadcrumb-custom .bc-current {
    color: var(--hero-gold);
    font-weight: 600;
}

/* ── Badge Label ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.30);
    color: var(--hero-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

/* ── Page Title ── */
.hero-title {
    font-size: clamp(1.55rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.6px;
    color: #fff;
    margin-bottom: 10px;
}

.hero-title .hero-title-accent {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Subtitle ── */
.hero-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 0;
    font-weight: 400;
}

/* ── Decorative Gold Rule ── */
.hero-rule {
    display: block;
    width: 42px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--hero-gold), rgba(245,166,35,.3));
    margin: 12px 0;
}

/* ── Geometric Accent Lines (Right Side) ── */
.hero-geo {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.08;
    z-index: 3;
    pointer-events: none;
}

.hero-geo span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ── Wave Shape ── */
.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

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

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

/* ── Quick Stats Row ── */
.quick-stats-hero {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.quick-stats-hero .stat-item {
    display: flex;
    flex-direction: column;
}

.quick-stats-hero strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.quick-stats-hero span {
    font-size: 0.72rem;
    color: rgba(255,255,255,.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Animations ── */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-anim-1 { animation: fadeSlideDown .55s cubic-bezier(0.22,1,.36,1) both; }
.hero-anim-2 { animation: fadeSlideUp  .6s  cubic-bezier(0.22,1,.36,1) .1s both; }
.hero-anim-3 { animation: fadeSlideUp  .65s cubic-bezier(0.22,1,.36,1) .2s both; }
.hero-anim-4 { animation: fadeSlideUp  .7s  cubic-bezier(0.22,1,.36,1) .3s both; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-section { padding: 32px 0 52px; }
    .hero-title   { font-size: clamp(1.35rem, 5vw, 1.9rem); }
    .hero-geo     { display: none; }
}

@media (max-width: 575px) {
    .hero-section     { padding: 24px 0 44px; }
    .breadcrumb-custom { font-size: 0.72rem; padding: 6px 14px 6px 10px; }
}
