/* Refined Donation Form Styling (Fitwize Brand) */

:root {
    --fitwize-red: #f64046;
    --fitwize-yellow: #fff71f;
    --fitwize-dark-red: #f82953;
    --fitwize-grey-bg: #f3f3f3;
    --fitwize-border-grey: #d6d5d5;
}

.fitwize_multi_step_donation {
    font-family: 'Inter', sans-serif;
}

.fitwize_multi_step_donation .fredoka-bold {
    font-family: "Fredoka bold", sans-serif;
}

/* Left Column Styling */
.cause_info_card {
    border: 4px solid var(--fitwize-red);
    border-radius: 35px;
    background-color: #fff;
    box-shadow: 0px 23px 45px 0px rgba(246, 64, 70, 0.24);
    overflow: hidden;
    height: 100%;
}

.cause_image img {
    width: 100%;
    height: 400px; /* Increased for better visual impact */
    object-fit: cover;
    border-bottom: 4px solid var(--fitwize-red);
}

.cause_content {
    padding: 30px;
}

.cause_content h3 {
    color: var(--fitwize-red);
    font-size: 24px;
    margin-bottom: 15px;
}

.cause_content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Right Column: Form Container */
.donation_form_container {
    border: 4px solid var(--fitwize-red);
    border-radius: 35px;
    background-color: #fff;
    box-shadow: 0px 23px 45px 0px rgba(246, 64, 70, 0.24);
    min-height: 600px;
    position: relative;
}

/* Step Header */
.step_header_wrapper {
    background: var(--fitwize-grey-bg);
    border-bottom: 2px solid var(--fitwize-border-grey);
    padding: 20px 30px;
}

.step_header_wrapper .step_title {
    font-size: 20px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.step_header_wrapper .step_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--fitwize-red);
    border-radius: 2px;
}

/* Progress Bar */
.progress_bar_wrapper {
    background: #e9ecef;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.progress_bar_inner {
    background: var(--fitwize-red);
    height: 100%;
    transition: width 0.4s ease;
}

/* Step Content */
.donation_step_content {
    padding: 30px;
}

/* Amount Buttons */
.btn_amount_choice {
    border: 2px solid #eee;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    color: #333;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn_amount_choice:hover {
    border-color: var(--fitwize-red);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(246, 64, 70, 0.1);
}

.btn_amount_choice.active {
    background: var(--fitwize-red) !important;
    border-color: var(--fitwize-red) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(246, 64, 70, 0.3);
}

/* Custom Amount */
.custom_amount_wrapper input {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 15px 15px 35px;
    font-weight: bold;
    font-size: 1.1rem;
}

.custom_amount_wrapper input:focus {
    border-color: var(--fitwize-red);
    box-shadow: none;
}

/* Buttons */
.btn_fitwize_primary {
    padding: 12px 30px;
    background-color: var(--fitwize-yellow);
    border-radius: 30px;
    border: 4px solid var(--fitwize-dark-red);
    color: #000;
    font-size: 18px;
    transition: all 0.4s ease;
}

.btn_fitwize_primary:hover {
    background-color: var(--fitwize-dark-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0px 10px 20px rgba(248, 41, 83, 0.3);
}

.btn_fitwize_outline {
    background: none;
    border: 2px solid var(--fitwize-red);
    color: var(--fitwize-red);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn_fitwize_outline:hover {
    background: var(--fitwize-red);
    color: #fff;
}

/* Form Controls */
.fitwize_multi_step_donation .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
}

.fitwize_multi_step_donation .form-control:focus {
    border-color: var(--fitwize-red);
    box-shadow: 0 0 0 0.2rem rgba(246, 64, 70, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.donation_step.active {
    animation: fadeInUp 0.4s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .cause_image img {
        height: 250px;
    }
    .donation_form_container {
        min-height: auto;
    }
}

/* Changing Lives Content Section */
.fitwize_changing_lives_section .blob_bg {
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.fitwize_changing_lives_section .main_img_container {
    z-index: 1;
}

.fitwize_changing_lives_section .main_img_container img {
    border: 8px solid #fff;
}

.changing_lives_list {
    counter-reset: lives-counter;
    list-style: none;
}

.changing_lives_list li {
    counter-increment: lives-counter;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.changing_lives_list li::before {
    content: counter(lives-counter) ". ";
    font-weight: bold;
    position: absolute;
    left: 0;
    color: #333;
}

.donate_time_box {
    border-left: 4px solid var(--fitwize-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.donate_time_box a {
    color: var(--fitwize-red);
    text-decoration: underline;
    font-weight: bold;
}
