/* ======================================== */
/* hero                                     */
/* ======================================== */

.hero {
    position: relative;
    direction: rtl;
    overflow: hidden;
    padding: 96px 0 88px;
    margin-bottom: 90px;
    text-align: center;
    background:
        linear-gradient(135deg, #0f5148 0%, #174f47 42%, #f4f8f6 42%, #ffffff 100%);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 20% 78%, rgba(15, 81, 72, 0.12), transparent 34%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -42px;
    z-index: -1;
    width: min(1120px, calc(100% - 32px));
    height: 86px;
    transform: translateX(-50%);
    border-radius: 999px 999px 0 0;
    background: #ffffff;
    box-shadow: 0 -18px 45px rgba(15, 81, 72, 0.08);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 0 auto;
    padding: 20px 46px 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
}

.hero-title {
    margin: 0 0 22px;
    color: #0f5148;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -1.2px;
    text-shadow: 0 10px 28px rgba(15, 81, 72, 0.16);
}

.hero-title::after {
    content: "";
    display: block;
    width: 82px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #0f5148, transparent);
    opacity: 0.95;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 22px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 81, 72, 0.08);
    box-shadow:
        0 16px 36px rgba(15, 81, 72, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    color: rgba(16, 47, 42, 0.78);
    font-size: 0.92rem;
    font-weight: 800;
}

.breadcrumb-link,
.breadcrumb-current {
    color: rgba(16, 47, 42, 0.78);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.breadcrumb-link:hover {
    color: #0f5148;
    transform: translateY(-1px);
}

.breadcrumb-current {
    color: #0f5148;
}

.breadcrumb-sep {
    color: rgba(15, 81, 72, 0.36);
    font-weight: 900;
}
