﻿.joinus-cta-section {
    padding: 90px 0;
    background: #ffffff;
}

.joinus-cta-wrapper {
    background: linear-gradient( 135deg, #0f172a, #1e293b );
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

    .joinus-cta-wrapper:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -120px;
        top: -120px;
        border-radius: 50%;
        background: rgba(255,153,51,.15);
    }

    .joinus-cta-wrapper:after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        left: -80px;
        bottom: -80px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
    }

.cta-badge {
    display: inline-block;
    background: #ff9933;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-description {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-join-now {
    background: #ff9933;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-join-now:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }

.btn-volunteer {
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    padding: 15px 25px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-volunteer:hover {
        color: #0f172a;
        transform: translateY(-2px);
    }

@media (max-width: 991px) {

    .joinus-cta-wrapper {
        padding: 40px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-buttons {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .joinus-cta-section {
        padding: 60px 0;
    }

    .joinus-cta-wrapper {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: .95rem;
    }

    .btn-join-now,
    .btn-volunteer {
        width: 100%;
    }
}
