/* Custom CTA Pledge Button Styles */
.cta-pledge-container {
    text-align: center;
    margin: 20px 0 30px;
    padding: 0;
    position: relative;
    z-index: 100;
}

.cta-pledge-button {
    display: inline-block;
    background: linear-gradient(135deg, #ba1c24 0%, #d91e28 100%);
    color: #ffffff !important;
    font-size: 24px;
    font-weight: bold;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(186, 28, 36, 0.4);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-pledge-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-pledge-button:hover:before {
    left: 100%;
}

.cta-pledge-button:hover {
    background: linear-gradient(135deg, #d91e28 0%, #ba1c24 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(186, 28, 36, 0.6);
    color: #ffffff !important;
}

.cta-pledge-button:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 5px 15px rgba(186, 28, 36, 0.5);
}

.cta-pledge-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 28px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-subtext {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 15px;
    color: #ffffff;
    background-color: rgba(20, 20, 51, 0.85);
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-pledge-button {
        font-size: 20px;
        padding: 15px 35px;
        letter-spacing: 1px;
    }
    
    .cta-pledge-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .cta-pledge-button {
        font-size: 18px;
        padding: 12px 25px;
        letter-spacing: 0.5px;
    }
    
    .cta-pledge-icon {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .cta-subtext {
        font-size: 12px;
        margin-top: 10px;
    }
}
