.donation-row.address-row {
    align-items: flex-start;
}
.donation-row.address-row .donation-label {
    float: left;
    margin-right: 8px;
}
.donation-row.address-row .donation-value {
    display: inline;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}
.donation-row.address-row .donation-value {
    display: block;
    text-align: left;
    margin-left: 0;
}
/* Donation Card Styles */
.donation-card {
    border: 3px solid #F39200;
    border-radius: 18px;
    background: #fff;
    max-width: 600px;
    margin: 40px auto 0 auto;
    padding: 32px 32px 24px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.donation-row {
    font-size: 1.35rem;
    margin-bottom: 0;
    font-weight: 500;
}
.donation-label {
    color: #6B1B9A;
    font-weight: 700;
    margin-right: 8px;
}
.donation-value {
    color: #222;
    font-weight: 500;
}
/* ====================================
   CONTACT PAGE STYLES - IIR
   ==================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin-bottom: 0;
    overflow: hidden;
}

.contact-hero-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6B1B9A 0%, #9B4DCA 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-hero-text h1 {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}


.contact-hero-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid orange;
}

.contact-hero-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
    margin: 69px auto 0 auto;
}

/* Contact Divider */
.contact-divider {
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        #FF0000 0%,
        #FF7F00 16.66%,
        #FFFF00 33.33%,
        #00FF00 50%,
        #0000FF 66.66%,
        #4B0082 83.33%,
        #9400D3 100%
    );
}

/* Contact Information Section */
.contact-info-section {
    padding: 60px 40px;
    background: #FFFFFF;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #F39200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.contact-detail-text {
    flex: 1;
}

.contact-detail-text h4 {
    color: #6B1B9A;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0 5px 0;
}

.contact-detail-text h4:first-child {
    margin-top: 0;
}

.contact-detail-text p {
    color: #2C2C2C;
    font-size: 1rem;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Get Engaged Section */
.get-engaged-section {
    padding: 80px 40px;
    background: #F5F5F5;
    text-align: center;
}

.get-engaged-title {
    color: #6B1B9A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.get-engaged-subtitle {
    color: #2C2C2C;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.get-engaged-description {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B1B9A;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #6B1B9A;
    color: #FFFFFF;
    padding: 15px 60px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: center;
}

.btn-submit:hover {
    background: #551580;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Support Section */
.support-section {
    padding: 80px 40px;
    background: #FFFFFF;
    text-align: center;
}

.support-title {
    color: #6B1B9A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.support-subtitle {
    color: #2C2C2C;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-description {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 50px;
}

.payment-options {
    max-width: 800px;
    margin: 0 auto;
}

.payment-subtitle {
    color: #6B1B9A;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #6B1B9A;
    background: #F9F5FC;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-method input[type="radio"]:checked + .payment-label {
    color: #6B1B9A;
    font-weight: 600;
}

.payment-label {
    color: #2C2C2C;
    font-size: 1rem;
}

.payment-amount {
    margin-bottom: 40px;
}

.payment-amount label {
    display: block;
    color: #2C2C2C;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.amount-input-wrapper {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.amount-input-wrapper input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: #6B1B9A;
}

.btn-donate {
    background: #F39200;
    color: #FFFFFF;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-donate:hover {
    background: #D17E00;
    transform: translateY(-2px);
}

.btn-donate:active {
    transform: translateY(0);
}

.qr-code-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.qr-code-placeholder {
    width: 150px;
    height: 150px;
    background: #F5F5F5;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B1B9A;
}

/* ====================================
   DARK MODE SUPPORT
   ==================================== */

[data-theme="dark"] .contact-hero-bg {
    background: linear-gradient(90deg, #4B006E 0%, #7C3AED 100%);
}

[data-theme="dark"] .contact-divider {
    opacity: 0.8;
}

[data-theme="dark"] .contact-info-section {
    background: #181828;
}

[data-theme="dark"] .contact-detail-text h4 {
    color: #B98CFF;
}

[data-theme="dark"] .contact-detail-text p {
    color: #E6E6F0;
}

[data-theme="dark"] .get-engaged-section {
    background: #23233A;
}

[data-theme="dark"] .get-engaged-title {
    color: #B98CFF;
}

[data-theme="dark"] .get-engaged-subtitle {
    color: #E6E6F0;
}

[data-theme="dark"] .get-engaged-description {
    color: #BDBDD7;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: #181828;
    border-color: #444;
    color: #E6E6F0;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #B98CFF;
}

[data-theme="dark"] .btn-submit {
    background: #7C3AED;
}

[data-theme="dark"] .btn-submit:hover {
    background: #6B2FD6;
}

[data-theme="dark"] .support-section {
    background: #181828;
}

[data-theme="dark"] .support-title {
    color: #B98CFF;
}

[data-theme="dark"] .support-subtitle {
    color: #E6E6F0;
}

[data-theme="dark"] .support-description {
    color: #BDBDD7;
}

[data-theme="dark"] .payment-subtitle {
    color: #E6E6F0;
}

[data-theme="dark"] .payment-method {
    background: #23233A;
    border-color: #444;
}

[data-theme="dark"] .payment-method:hover {
    border-color: #B98CFF;
    background: #2D2D4A;
}

[data-theme="dark"] .payment-label {
    color: #E6E6F0;
}

[data-theme="dark"] .payment-amount label {
    color: #E6E6F0;
}

[data-theme="dark"] .amount-input-wrapper input {
    background: #23233A;
    border-color: #444;
    color: #E6E6F0;
}

[data-theme="dark"] .amount-input-wrapper input:focus {
    border-color: #B98CFF;
}

[data-theme="dark"] .qr-code-placeholder {
    background: #23233A;
    border-color: #444;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 968px) {
    .contact-hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .contact-hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        min-height: 300px;
    }
    
    .contact-hero-text h1 {
        font-size: 2rem;
    }
    
    .contact-hero-image {
        width: 200px;
        height: 200px;
    }
    
    .contact-info-section,
    .get-engaged-section,
    .support-section {
        padding: 40px 20px;
    }
    
    .get-engaged-title,
    .support-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amount-input-wrapper {
        flex-direction: column;
    }
    
    .btn-donate {
        width: 100%;
    }
}
