/* ====================================
   Payment Gateway Styles
   ==================================== */

/* === Donation Hero Section === */
.donation-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #046A58 0%, #0a9177 100%);
    position: relative;
    overflow: hidden;
}

.donation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10a5 5 0 100 10 5 5 0 000-10z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.donation-hero__content {
    position: relative;
    z-index: 1;
}

.donation-icon-wrapper {
    margin-bottom: 30px;
}

.donation-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.donation-hero__title {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.donation-hero__subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* === Donation Form Section === */
.donation-form-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.donation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.donation-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.donation-card__title {
    color: #046A58;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.donation-card__description {
    color: #666;
    font-size: 16px;
}

/* === Form Styles === */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.form-select-custom,
.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-select-custom:focus,
.form-control-custom:focus {
    border-color: #046A58;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(4, 106, 88, 0.1);
    outline: none;
}

.form-select-custom:hover,
.form-control-custom:hover {
    border-color: #0a9177;
}

/* === Member Info Section === */
.member-info-section {
    background: linear-gradient(135deg, #f0f9f7 0%, #e6f7f4 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    border: 2px solid #d0f0ea;
}

.member-info__title {
    color: #046A58;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.info-card {
    background: white;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card__label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.info-card__value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    word-break: break-word;
}

/* === Amount Input === */
.amount-input-wrapper {
    position: relative;
}

.amount-prefix {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #046A58;
    z-index: 1;
}

.amount-input {
    padding-left: 40px !important;
    font-size: 18px;
    font-weight: 600;
    color: #046A58;
}

/* === Tax Benefit Card === */
.tax-benefit-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d4 100%);
    border: 2px solid #ffd966;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.tax-benefit-card__icon {
    font-size: 32px;
    color: #f39c12;
    flex-shrink: 0;
}

.tax-benefit-card__title {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.tax-benefit-card__text {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* === Donation Button === */
.btn-donation {
    background: linear-gradient(135deg, #046A58 0%, #0a9177 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 106, 88, 0.3);
}

.btn-donation:hover {
    background: linear-gradient(135deg, #055950 0%, #088968 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 106, 88, 0.4);
    color: white;
}

.btn-donation:active {
    transform: translateY(0);
}

/* === Impact Cards === */
.why-donate-section h5 {
    color: #046A58;
    font-weight: 700;
    font-size: 24px;
}

.impact-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
}

.impact-card:hover {
    border-color: #046A58;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 106, 88, 0.15);
}

.impact-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #046A58 0%, #0a9177 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.impact-card__title {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.impact-card__text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* === Billing Section === */
.billing-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

/* === Progress Indicator === */
.payment-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress-step__circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.progress-step.completed .progress-step__circle {
    background: #046A58;
    color: white;
}

.progress-step.active .progress-step__circle {
    background: #046A58;
    color: white;
    box-shadow: 0 0 0 4px rgba(4, 106, 88, 0.2);
    animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(4, 106, 88, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(4, 106, 88, 0.1);
    }
}

.progress-step__label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-align: center;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 10px;
}

.progress-line.completed {
    background: #046A58;
}

/* === Order Summary Card === */
.order-summary-card {
    background: linear-gradient(135deg, #046A58 0%, #0a9177 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(4, 106, 88, 0.3);
}

.order-summary-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.order-summary-card__title {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 18px;
}

.order-summary-card__body {
    padding: 24px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item__label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.order-item__value {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 8px;
}

.order-total__label {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.order-total__value {
    color: white;
    font-size: 24px;
    font-weight: 800;
}

/* === Billing Card === */
.billing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.billing-card__header {
    margin-bottom: 30px;
}

.billing-card__title {
    color: #046A58;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.billing-card__description {
    color: #666;
    font-size: 15px;
}

/* === Security Info Card === */
.security-info-card {
    background: linear-gradient(135deg, #e8f5f3 0%, #d4ede8 100%);
    border: 2px solid #b8e0d8;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.security-info-card__icon {
    font-size: 28px;
    color: #046A58;
    flex-shrink: 0;
}

.security-info-card__title {
    color: #046A58;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
}

.security-info-card__text {
    color: #555;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* === Billing Actions === */
.billing-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.billing-actions .btn {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === Payment Result Section === */
.payment-result-section {
    padding: 80px 0 100px;
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.payment-result-card {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

/* === Result Icons === */
.result-icon-wrapper {
    margin-bottom: 32px;
}

.result-icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.success-icon .result-icon-circle {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation: scale-in 0.5s ease-out;
}

.error-icon .result-icon-circle {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.cancel-icon .result-icon-circle {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

@keyframes scale-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pulse-animation {
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
}

/* === Checkmark Animation === */
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: white;
    stroke-miterlimit: 10;
    margin: 20px auto;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: white;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* === Result Titles === */
.result-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.success-title {
    color: #10b981;
}

.error-title {
    color: #ef4444;
}

.cancel-title {
    color: #f59e0b;
}

.result-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* === Result Details === */
.result-details {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #888;
    font-size: 14px;
    font-weight: 600;
}

.detail-value {
    color: #333;
    font-weight: 700;
    font-size: 15px;
}

.detail-value.amount {
    color: #046A58;
    font-size: 20px;
}

/* === Receipt Info === */
.receipt-info {
    background: linear-gradient(135deg, #e8f5f3 0%, #d4ede8 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.receipt-icon {
    font-size: 32px;
    color: #046A58;
    flex-shrink: 0;
}

.receipt-text {
    color: #555;
    font-size: 14px;
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

/* === Error Message Box === */
.error-message-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    color: #991b1b;
    font-weight: 600;
}

/* === Help Section === */
.help-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.help-title {
    color: #046A58;
    font-weight: 700;
    margin-bottom: 12px;
}

.help-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #046A58;
    font-weight: 600;
    font-size: 14px;
}

.contact-item i {
    font-size: 18px;
}

/* === Info Box === */
.info-box {
    background: #fef3c7;
    border: 2px solid #fde68a;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

/* === Result Actions === */
.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.result-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
}

.info-box i {
    font-size: 24px;
    color: #d97706;
    flex-shrink: 0;
}

.info-box__title {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-box__text {
    color: #78350f;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* === Continue Section === */
.continue-section {
    background: linear-gradient(135deg, #e8f5f3 0%, #d4ede8 100%);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.continue-title {
    color: #046A58;
    font-weight: 700;
    margin-bottom: 12px;
}

.continue-text {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* === Result Actions === */
.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* === Impact/Reassurance Messages === */
.impact-message,
.reassurance-message,
.alternatives-section {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.impact-icon,
.reassurance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #046A58 0%, #0a9177 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.reassurance-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.impact-title,
.reassurance-title,
.alternatives-title {
    color: #046A58;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
}

.impact-text,
.reassurance-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* === Alternatives Section === */
.alternative-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.alternative-card:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.alternative-icon {
    width: 50px;
    height: 50px;
    background: #046A58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.alternative-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
}

.alternative-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.alternative-link {
    color: #046A58;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.alternative-link:hover {
    gap: 6px;
}

/* === Confetti Canvas === */
.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 1s ease;
}

/* === Animations === */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .donation-hero__title {
        font-size: 32px;
    }

    .donation-card,
    .billing-card {
        padding: 24px;
    }

    .payment-progress {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        width: 3px;
        height: 40px;
    }

    .billing-actions {
        flex-direction: column;
    }

    .billing-actions .btn {
        width: 100%;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
    }
}

/* ====================================
   Membership-Specific Styles
   ==================================== */

/* === Membership Hero === */
.membership-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.membership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10a5 5 0 100 10 5 5 0 000-10z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.membership-hero__content {
    position: relative;
    z-index: 1;
}

.membership-icon-wrapper {
    margin-bottom: 30px;
}

.membership-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse-membership 2s ease-in-out infinite;
}

@keyframes pulse-membership {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.membership-hero__title {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.membership-hero__subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* === Membership Form Section === */
.membership-form-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.membership-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.membership-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.membership-card__title {
    color: #8b5cf6;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.membership-card__description {
    color: #666;
    font-size: 16px;
}

/* === Benefits Info Card === */
.benefits-info-card {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 2px solid #ddd6fe;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.benefits-info-card__icon {
    font-size: 32px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.benefits-info-card__title {
    color: #6b21a8;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.benefits-info-card__text {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* === Membership Button === */
.btn-membership {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-membership:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-membership:active {
    transform: translateY(0);
}

/* === Why Membership Section === */
.why-membership-section h5 {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 24px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
}

.benefit-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.benefit-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.benefit-card__title {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.benefit-card__text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* === Membership Order Summary Override === */
.membership-card+.order-summary-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* === Responsive Membership === */
@media (max-width: 768px) {
    .membership-hero__title {
        font-size: 32px;
    }

    .membership-card {
        padding: 24px;
    }
}

/* ====================================
   Advertisement-Specific Styles
   ==================================== */

/* === Advertisement Hero === */
.advertisement-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.advertisement-hero::before {
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10a5 5 0 100 10 5 5 0 000-10z" fill="rgba(255,255,255,0.05)"/></svg>');
}

/* === Advertisement Header === */
.advertisement-header i {
    color: #ea580c;
    background: rgba(234, 88, 12, 0.1);
}

/* === Advertisement Button === */
.btn-advertisement {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-advertisement:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    color: white;
}

.btn-advertisement:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* === Advertisement Summary === */
.advertisement-summary {
    background: #fff7ed;
    border: 1px solid #ffedd5;
}

.advertisement-summary .total-amount {
    color: #ea580c;
}

/* === Orange Header Theme === */
.header-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

/* === Duration Options === */
.duration-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.duration-option input {
    display: none;
}

.duration-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #495057;
    display: block;
}

.duration-option input:checked+.duration-btn {
    background: #fff7ed;
    border-color: #ea580c;
    color: #ea580c;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.1);
}

/* === Date Feedback === */
.date-feedback {
    margin-top: 10px;
    font-size: 14px;
    color: #ea580c;
    background: #fff7ed;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

/* === Upload Area === */
.upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-area:hover,
.upload-area.highlight {
    border-color: #ea580c;
    background: #fff7ed;
}

.upload-icon {
    font-size: 40px;
    color: #94a3b8;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.upload-area:hover .upload-icon {
    color: #ea580c;
}

.upload-content h5 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 5px;
}

.upload-content p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.upload-preview {
    position: relative;
    max-width: 100%;
}

.upload-preview img {
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.remove-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.remove-btn:hover {
    transform: scale(1.1);
}

.file-info {
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
}

.image-preview-mini img {
    max-height: 100px;
    object-fit: contain;
    background: #f8f9fa;
}

/* === Option Cards Selection Color === */
.donation-option-card:has(input:checked) {
    border-color: #ea580c;
    background: #fff7ed;
}

.donation-option-card:has(input:checked) .check-circle {
    background: #ea580c;
    border-color: #ea580c;
}

.donation-option-card:has(input:checked) .option-icon {
    background: #fee2e2;
    color: #ea580c;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
    .duration-options {
        flex-direction: column;
        gap: 8px;
    }

    .duration-btn {
        text-align: center;
    }
}

/* ====================================
   Membership Status Section Styles
   ==================================== */

/* Membership Status Section */
.membership-status-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #046a58;
    animation: fade-in-up 0.4s ease-out;
}

.status-title {
    color: #046a58;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.status-card {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-badge-wrapper {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.status-badge.active {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
}

.status-badge.expired,
.status-badge.inactive {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
}

.status-badge.none {
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    color: #383d41;
    border: 2px solid #6c757d;
}

.status-badge i {
    font-size: 0.75rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.status-detail-item {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.status-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.status-value {
    font-size: 0.9375rem;
    color: #212529;
    font-weight: 600;
}

/* Update membership button color */
.btn-membership {
    background: linear-gradient(135deg, #046a58 0%, #035a4a 100%);
    border-color: #046a58;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(4, 106, 88, 0.2);
}

.btn-membership:hover {
    background: linear-gradient(135deg, #035a4a 0%, #024438 100%);
    border-color: #035a4a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 106, 88, 0.3);
}

.btn-membership:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(4, 106, 88, 0.2);
}

/* Animation for fading in sections */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.4s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .membership-status-section {
        padding: 1rem;
    }

    .status-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .status-detail-item {
        margin-bottom: 0.5rem;
    }
}

/* ====================================
   Member Information Section Styles
   ==================================== */

.member-info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: fade-in-up 0.4s ease-out;
}

.member-info__title {
    color: #046a58;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.info-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card__label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-card__value {
    font-size: 0.9375rem;
    color: #212529;
    font-weight: 500;
    display: block;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .member-info-section {
        padding: 1rem;
    }

    .info-card {
        margin-bottom: 0.75rem;
    }
}

/* ==========================================
   Advertisement Styles (Simple Design)
   ========================================== */

.ad-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.ad-card:hover {
    border-color: #046a58;
    box-shadow: 0 4px 12px rgba(4, 106, 88, 0.15);
    transform: translateY(-2px);
}

.ad-card.active {
    border-color: #046a58;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(4, 106, 88, 0.05) 0%, rgba(4, 106, 88, 0.02) 100%);
    box-shadow: 0 6px 16px rgba(4, 106, 88, 0.2);
}

.ad-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #046a58 0%, #034b42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ad-card-icon i {
    font-size: 28px;
    color: white;
}

.ad-card.active .ad-card-icon {
    transform: scale(1.1);
}

.ad-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.ad-card-place {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.ad-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #046a58;
}

.ad-card-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6c757d;
}

/* Form Section Card */
.form-section-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
}

.form-section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-bottom: 2px solid #046a58;
}

.form-section-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #046a58;
}

.form-section-body {
    padding: 1.5rem;
}

.form-label-custom {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Upload Area Modern */
.upload-area-modern {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area-modern:hover {
    border-color: #046a58;
    background: rgba(4, 106, 88, 0.05);
}

.upload-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #046a58 0%, #034b42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.upload-icon-modern i {
    font-size: 36px;
    color: white;
}

.upload-label-modern {
    display: block;
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.upload-hint-modern {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0;
}

.upload-input-hidden {
    display: none;
}

/* Preview Container */
.preview-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preview-image {
    max-width: 100%;
    max-height: 300px;
    display: block;
    border-radius: 12px;
}

.preview-remove-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: #dc3545;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.preview-remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.preview-remove-btn i {
    font-size: 20px;
}

/* Summary Card Modern */
.summary-card-modern {
    background: white;
    border: 2px solid #046a58;
    border-radius: 12px;
    overflow: hidden;
}

.summary-header {
    background: linear-gradient(135deg, #046a58 0%, #034b42 100%);
    padding: 1rem 1.5rem;
}

.summary-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.summary-body {
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.summary-row:last-of-type {
    margin-bottom: 0;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.summary-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: #dee2e6;
    margin: 1rem 0;
}

.summary-total {
    padding-top: 0.5rem;
    border-top: 2px dashed #dee2e6;
}

.summary-label-total {
    font-size: 1.1rem;
    color: #212529;
    font-weight: 700;
}

.summary-value-total {
    font-size: 1.75rem;
    color: #046a58;
    font-weight: 700;
}

/* Proceed Button */
.btn-proceed {
    background: linear-gradient(135deg, #046a58 0%, #034b42 100%);
    border: none;
    font-weight: 600;
    padding: 1rem;
    transition: all 0.3s ease;
}

.btn-proceed:hover {
    background: linear-gradient(135deg, #034b42 0%, #023a2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 106, 88, 0.3);
}