/* ── DONATION PAGE WIDGET ── */

.vd-donation-page-wrapper {
    font-family: 'Baloo Bhai 2', sans-serif;
    color: #333;
    background-color: #faf8f5; /* Light warm background for the whole page */
    padding-bottom: 60px;
}
.vd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ── HERO SECTION ── */
.vd-dp-hero {
    position: relative;
    padding: 200px 0 80px; /* Increased offset for the sticky header to push text lower */
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 460px; /* Matched About Us height */
    display: flex;
    align-items: center;
    justify-content: center;
}
.vd-dp-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(122, 25, 26, 0.4), rgba(0, 0, 0, 0.6));
}
.vd-dp-hero-content {
    position: relative;
    z-index: 2;
}
.vd-dp-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.vd-dp-hero-desc {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.vd-dp-breadcrumb {
    margin-top: 25px;
    display: inline-block;
    background: #fff;
    color: #7A191A;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.vd-dp-breadcrumb a {
    color: #7A191A;
    text-decoration: none;
}
.vd-dp-breadcrumb a:hover {
    color: #E9B855;
}

/* ── INTRO SECTION ── */
.vd-dp-intro {
    padding: 60px 0 40px;
    text-align: center;
}
.vd-dp-intro-title {
    font-size: 24px;
    font-weight: 700;
    color: #7A191A;
    margin-bottom: 20px;
}
.vd-dp-intro-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ── ORNAMENTS & TITLES ── */
.vd-dp-section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.vd-dp-section-title {
    font-size: 28px;
    color: #7A191A;
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.vd-dp-section-title::before, .vd-dp-section-title::after {
    content: '\f100'; /* double arrows */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    color: #E9B855;
}
.vd-dp-section-title::after {
    content: '\f101';
}

/* ── MAIN DONATION CARDS ── */
.vd-dp-main-donation {
    padding: 0 0 50px;
}
.vd-dp-donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.vd-dp-donate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
}
.vd-dp-donate-icon {
    width: 60px;
    height: 60px;
    background: #7A191A;
    color: #E9B855;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -70px auto 20px;
    box-shadow: 0 5px 15px rgba(122, 25, 26, 0.3);
    border: 3px solid #fff;
}
.vd-dp-donate-title {
    font-size: 20px;
    background: #7A191A;
    color: #fff;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 30px;
    margin-bottom: 15px;
}
.vd-dp-donate-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

/* Scan Box */
.vd-dp-scan-box {
    border: 1px solid #7A191A;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    text-align: center;
}
.vd-dp-scan-box h4 {
    color: #555;
    font-size: 14px;
    margin: 0 0 10px;
    font-weight: 600;
}
.vd-dp-scan-box p {
    color: #7A191A;
    font-size: 10px;
    margin: 0;
    font-weight: bold;
}

/* Accordions */
.vd-dp-payment-options {
    text-align: left;
}
.vd-dp-accordion {
    border: 1px solid #d9c5a7;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.vd-dp-accordion-header {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 700;
    color: #7A191A;
    display: flex;
    align-items: center;
    background: #fff;
    transition: all 0.3s;
    font-size: 15px;
}
.vd-dp-accordion-header .arrow {
    margin-left: auto;
    font-size: 12px;
    color: #7A191A;
    transition: transform 0.3s;
}
.vd-dp-accordion.active .vd-dp-accordion-header {
    background: #fcf9f2;
}
.vd-dp-accordion.active .arrow {
    transform: rotate(180deg);
}
.vd-dp-accordion-content {
    display: none;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    background: #fdfbf7;
    border-top: 1px solid #d9c5a7;
}
.vd-dp-accordion.active .vd-dp-accordion-content {
    display: block;
}
.vd-dp-qr-img {
    max-width: 250px;
    border: 2px solid #7A191A;
    padding: 5px;
    margin-bottom: 10px;
    background: #fff;
}
.vd-dp-qr-merchant {
    font-size: 10px;
    color: #7A191A;
    font-weight: bold;
}

/* ── ACCOUNT DETAILS SECTION ── */
.vd-dp-account-section {
    padding: 20px 0 50px;
}
.vd-dp-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.vd-dp-account-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.vd-dp-account-header {
    font-size: 18px;
    font-weight: 700;
    color: #7A191A;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.vd-dp-account-header i {
    background: #7A191A;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.vd-dp-account-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vd-dp-account-list li {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
    color: #555;
}
.vd-dp-account-list li:last-child {
    border-bottom: none;
}
.vd-dp-account-list li i {
    color: #E9B855;
    margin-right: 15px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}
.vd-dp-account-list li strong {
    color: #333;
    width: 150px;
    flex-shrink: 0;
}
.vd-dp-account-list li span {
    flex: 1;
}

/* ── ALERTS SECTION ── */
.vd-dp-alerts-section {
    padding: 0 0 50px;
}
.vd-dp-notice-box {
    background: #fff9e6;
    border: 1px solid #f2e2c0;
    border-radius: 8px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.vd-dp-notice-icon {
    color: #E9B855;
    font-size: 30px;
}
.vd-dp-notice-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}
.vd-dp-contact-box {
    text-align: center;
    background: #fdfbf7;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    font-size: 18px;
    color: #7A191A;
}
.vd-dp-contact-box strong {
    color: #7A191A;
    font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .vd-dp-donation-grid, .vd-dp-account-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .vd-dp-hero-title {
        font-size: 40px;
    }
    .vd-dp-hero-desc {
        font-size: 16px;
    }
    .vd-dp-account-list li {
        flex-direction: column;
        gap: 5px;
    }
    .vd-dp-account-list li strong {
        width: 100%;
    }
    .vd-dp-notice-box {
        flex-direction: column;
        text-align: center;
    }
}
