/* =========================================================
   SITE HERO GLOBAL
========================================================= */

.site-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f4f8fb;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.site-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(23, 105, 170, 0.10);
    z-index: 1;
}

.site-hero::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: 18%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(48, 186, 206, 0.12);
    z-index: 1;
}

.site-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.site-hero__content {
    max-width: 690px;
    padding: 90px 0;
}

.site-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(23, 105, 170, 0.10);
    color: #0f4c81;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.site-hero__label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30bace;
    box-shadow: 0 0 0 5px rgba(48, 186, 206, 0.18);
}

.site-hero h1 {
    margin: 0;
    max-width: 680px;
    color: #0b2942;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.site-hero p {
    margin: 22px 0 0;
    max-width: 580px;
    color: #496171;
    font-size: 18px;
    line-height: 1.7;
}

.site-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.site-hero__actions .btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-hero__actions .btn-primary {
    background: #0f4c81;
    color: #ffffff;
    border: 1px solid #0f4c81;
    box-shadow: 0 10px 24px rgba(15, 76, 129, 0.22);
}

.site-hero__actions .btn-primary:hover {
    background: #1769aa;
    border-color: #1769aa;
}

.site-hero__actions .btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: #0f4c81;
    border: 1px solid rgba(15, 76, 129, 0.22);
    backdrop-filter: blur(8px);
}

.site-hero__actions .btn-outline:hover {
    background: #ffffff;
    border-color: #0f4c81;
}

/* =========================================================
   HERO CONTEXTS
========================================================= */

.site-hero--home {
    min-height: 560px;
}

.site-hero--zone {
    min-height: 460px;
}

.site-hero--hotel {
    min-height: 430px;
}

.site-hero--zone h1,
.site-hero--hotel h1 {
    font-size: clamp(36px, 4vw, 58px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .site-hero {
        min-height: 500px;
        background-position: center right;
    }

    .site-hero__content {
        max-width: 620px;
        padding: 76px 0;
    }

    .site-hero p {
        font-size: 17px;
    }

}

@media (max-width: 768px) {

    .site-hero {
        min-height: auto;
        background-position: center;
    }

    .site-hero::before {
        width: 300px;
        height: 300px;
        top: -120px;
        right: -140px;
    }

    .site-hero::after {
        width: 260px;
        height: 260px;
        bottom: -130px;
        right: -90px;
    }

    .site-hero__content {
        padding: 64px 0;
        max-width: 100%;
    }

    .site-hero__label {
        font-size: 13px;
        padding: 8px 14px;
    }

    .site-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
    }

    .site-hero p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .site-hero__actions {
        margin-top: 28px;
        gap: 12px;
    }

    .site-hero__actions .btn {
        width: 100%;
        min-height: 52px;
    }

}

@media (max-width: 480px) {

    .site-hero__content {
        padding: 54px 0;
    }

    .site-hero h1 {
        font-size: 34px;
    }

    .site-hero p {
        font-size: 15.5px;
    }

}