/* ===============================================
   CTA Section - Premium Design 2026
   =============================================== */

.cta {
    padding: 80px 0;
    background-color: white;
}

/* Common Card Styles */
.cta-donate,
.cta-transparency {
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-donate:hover,
.cta-transparency:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* --- Donation Card (Gradient) --- */
.cta-donate {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border: none;
}

/* Background Pattern/Texture */
.cta-donate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.cta-donate i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.cta-donate:hover i {
    transform: scale(1.1) rotate(10deg);
}

.cta-donate h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-donate p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 400px;
    line-height: 1.6;
}

/* Donation Button */
.cta-donate .btn-light {
    background: white;
    color: #e91e63;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: auto;
    /* Push to bottom */
}

.cta-donate .btn-light:hover {
    background: #fce4ec;
    color: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --- Transparency Card (Clean White) --- */
.cta-transparency {
    background: white;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    /* Removed border for cleaner look */
    border: 1px solid #e0e0e0;
}

.cta-transparency i {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2196f3, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(13, 71, 161, 0.2));
}

.cta-transparency:hover i {
    transform: scale(1.1);
}

.cta-transparency h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-transparency p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 400px;
    line-height: 1.6;
}

/* Transparency Button */
.cta-transparency .btn-primary {
    background: linear-gradient(135deg, #2196f3, #0d47a1);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
}

.cta-transparency .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .cta-donate,
    .cta-transparency {
        padding: 40px 25px;
        height: auto;
        /* Allow auto height on mobile if needed */
    }

    .cta-donate h3,
    .cta-transparency h3 {
        font-size: 1.8rem;
    }
}