/* =========================================================
   CTA.CSS — Call to action banner section
   ========================================================= */

.pn-cta {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.pn-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pn-cta .pn-container { position: relative; z-index: 2; }

.pn-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pn-cta-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.pn-cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.pn-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Decorative circles */
.cta-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }

.cta-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.cta-deco-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.cta-deco-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -80px;
}
