/* --------------------------------------------------------------
# POPUP PROMO SECTION (iznad footer-a)
-------------------------------------------------------------- */

    .popup-promo-section {
        width: 100%;
        padding: 100px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    .popup-promo-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        /* blago zatamnjenje radi čitljivosti dugmeta */
    }

    .popup-promo-content {
        position: relative;
        z-index: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* centrira dugme */
    }

    .popup-promo-title {
        color: #fff;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
    }

    .popup-promo-subtitle {
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
    }

    .popup-promo-text {
        color: #fff;
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto 35px auto;
        text-align: center;
        line-height: 1.6;
    }

    .popup-promo-text2 {
        color: #fff;
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto 35px auto;
        text-align: center;
        line-height: 1.6;
    }

    .popup-promo-btn {
        display: inline-block;
        padding: 18px 50px;
        font-size: 22px;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .popup-promo-btn:hover {
        background: var(--hover-color);
        transform: translateY(-3px);
    }
