/* CTA V2 - Deep Red Impact */

.premium-cta-section {
    padding: 100px 0;
    background: #fff;
    /* Reset main section bg */
}

.membership-box.full-cta-card {
    /* Deep Red Gradient Background */
    background: linear-gradient(135deg, #8B0000 0%, #5a0000 100%);
    border-radius: 16px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.3);
    /* Red glow shadow */
    border: none;
    color: #fff;
}

/* Eagle Watermark Pattern */
.membership-box.full-cta-card::before {
    content: '\f6f1';
    /* FontAwesome Eagle/Bird icon if available, or just abstract */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
}

.cta-icon-top {
    font-size: 3.5rem;
    color: #FFD700;
    /* Bright Gold */
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.box-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.box-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* White/Gold Button */
.btn-gold {
    background: #fff;
    color: #8B0000;
    /* Deep Red Text */
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    background: #FFD700;
    /* Gold Hover */
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}