/* =====================================================================
   Bottom CTA Block — countrypage
   ===================================================================== */

.cp-cta {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image */
.cp-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay for readability */
.cp-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 18, 20, 0.32);
}

/* Content layer */
.cp-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 52px 40px;
    max-width: 860px;
    margin: 0 auto;
}

/* Main heading */
.cp-cta__title {
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: #EDE3D5;
    margin: 0 0 28px;
    text-transform: uppercase;
}

/* CTA button */
.cp-cta__btn {
    display: inline-block;
    padding: 14px 44px;
    background: #111214;
    color: #EDE3D5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(237, 227, 213, 0.25);
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    line-height: 1;
}

.cp-cta__btn:hover,
.cp-cta__btn:focus-visible {
    background: #FF6A00;
    color: #111214;
    border-color: #FF6A00;
    outline: none;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .cp-cta {
        min-height: 200px;
    }

    .cp-cta__inner {
        padding: 40px 24px;
    }

    .cp-cta__btn {
        padding: 13px 32px;
    }
}
