/* ===== Get Involved Section ===== */

.get-involved-section {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
    overflow: hidden;
}

.get-involved-section h2 {
    font-size: 32px;
    color: #b11226;
    margin-bottom: 10px;
    position: relative;
}

.get-involved-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b11226;
    margin: 10px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.get-involved-section h2.visible::after {
    transform: scaleX(1);
}

.get-involved-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 50px;
}


/* ===== Cards ===== */

.involve-card {
    background: #fff;
    padding: 30px 20px;
    margin: 20px auto;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.involve-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.involve-card:hover {
    transform: translateY(-10px) rotateZ(-1deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.involve-card h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
}

.involve-card p {
    font-size: 15px;
    margin-bottom: 20px;
}


/* ===== Forms ===== */

.involve-card form input,
.involve-card form select,
.involve-card form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.involve-card form input:focus,
.involve-card form select:focus,
.involve-card form textarea:focus {
    border-color: #b11226;
    box-shadow: 0 0 8px rgba(177, 18, 38, 0.3);
}

.involve-card form textarea {
    min-height: 100px;
    resize: vertical;
}


/* ===== Buttons ===== */

.paecho-btn {
    background: #b11226;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paecho-btn:hover {
    background: #7a0c18;
    transform: scale(1.05);
}


/* ===== Donate ===== */

.donate-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.donate-btn {
    background: #fff;
    color: #b11226;
    border: 2px solid #b11226;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #b11226;
    color: #fff;
    transform: scale(1.1);
}

.success-message {
    color: green;
    margin-top: 10px;
    font-weight: bold;
}


/* ===== Responsive ===== */

@media screen and (max-width: 1024px) {
    .get-involved-section h2 {
        font-size: 28px;
    }
    .involve-card {
        padding: 25px 18px;
    }
}

@media screen and (max-width: 768px) {
    .get-involved-section h2 {
        font-size: 26px;
    }
    .involve-card {
        padding: 20px 15px;
    }
    .involve-card h3 {
        font-size: 20px;
    }
    .donate-options {
        flex-direction: column;
        gap: 10px;
    }
}