/* ==========================================================================
   WESPRZYJ PAGE STYLES
   ========================================================================== */

.page-wesprzyj {
    font-family: 'Inter', sans-serif;
}

/* --- Donation Hero Section --- */
.donation-hero-section {
    background-color: #00016b;
    padding: 80px 240px;
    display: flex;
    justify-content: center;
}

.donation-hero-container {
    max-width: 960px !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.donation-hero-header {
    display: flex;
    gap: 44px;
    align-items: center;
}

.badge-transparent {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
}

.badge-orange {
    background: #f54900;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px; /* high border radius for pill shape */
}

.donation-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

/* Left Column: Form */
.donation-form-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin: 0;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.form-group input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 15.5px 17px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    font-family: 'SF Pro', 'Inter', sans-serif;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Right Column: Payments */
.donation-payment-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-btn {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #00016b;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: left;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00016b;
    border: 2px solid #00016b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.radio-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.consents-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.consent-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.consent-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}

.consent-checkbox input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox p {
    color: #ffffff;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

/* Footer Steps & Submit */
.donation-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 12px; /* to align with grid gap or visual padding */
}

.steps-indicator {
    display: flex;
    align-items: center;
    gap: 32px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60px; /* arbitrary to show line */
}

.step-text {
    font-size: 16px;
    font-weight: 500;
}

.step-text.active {
    color: #ffffff;
}

.step-text.inactive {
    color: rgba(255, 255, 255, 0.35);
}

.step-line {
    height: 2px;
    border-radius: 10px;
    width: 100%;
}

.step-line.active {
    background-color: #ffffff;
}

.step-line.inactive {
    background-color: rgba(255, 255, 255, 0.35); /* fallback */
}

.submit-btn {
    background: #ffffff;
    color: #00016b;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.submit-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


/* --- FAQ Section --- */
.faq-section {
    background-color: #f8f9fc;
    padding: 80px 320px;
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 800px !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.faq-title {
    color: #101828;
    font-size: 44px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    cursor: pointer;
}

.faq-header h3 {
    color: #101828;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    padding-right: 16px;
}

.faq-icon {
    font-size: 20px;
    color: #101828;
}

.faq-body {
    padding: 0 28px 28px 28px;
}

.faq-body p {
    color: #4a5565;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

/* Hide faq body if not open */
.faq-item:not(.open) .faq-body {
    display: none;
}

/* --- Multi-step Logic --- */
.hidden {
    display: none !important;
}

.donation-step-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.donation-step-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 29px;
}

.donation-step-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.donation-step-label {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 25.5px;
}

.donation-options-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.donation-option-btn {
    background: transparent;
    border: none;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.donation-option-btn .radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.donation-option-btn .radio-dot {
    width: 8px;
    height: 8px;
    background: #00016b;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s ease;
}

.donation-option-btn.active .radio-circle {
    background: #ffffff;
    border-color: #ffffff;
}

.donation-option-btn.active .radio-dot {
    opacity: 1;
}

.donation-options-group .divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.donation-footer {
    width: 100%;
}
