/* Donate Page Styles */
:root {
    --primary-color: #0d9488;
    --primary-light: #0fb9a9;
    --primary-dark: #0a6b63;
    --secondary-color: #0ea5e9;
    --secondary-light: #38bdf8;
    --secondary-dark: #0284c7;
    --dark-color: #020617;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --lighter-gray: #f1f5f9;
    --white: #ffffff;
    --black: #000000;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    background-color: var(--lighter-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--white);
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:focus, .btn:active {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.25);
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}

.btn-outline-light:hover {
    color: var(--primary-color);
    background-color: var(--white);
    border-color: var(--white);
}

.btn-light {
    color: var(--dark-color);
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.btn-light:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--dark-color);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 4px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-right: 0.5rem;
}

/* Form Elements */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    color: var(--dark-color);
    background-color: var(--white);
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.25);
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 2.25rem 0.75rem 1rem;
    -moz-padding-start: calc(1rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select:focus {
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.25);
}

.form-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--gray-color);
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid var(--light-gray);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    float: left;
    margin-left: -1.5em;
    border-radius: 0.25em;
    transition: var(--transition);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.25);
}

.form-check-label {
    color: var(--dark-color);
    cursor: pointer;
    margin-bottom: 0;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--light-color);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
    justify-content: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--light-color);
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/* Donation Hero */
.donation-hero {
    padding: 5rem 0;
    position: relative;
}

.donation-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

.donation-hero-text {
    padding-right: 2rem;
}

.donation-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.donation-hero-text p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stat-item i {
    font-size: 1.75rem;
    color: var(--primary-color);
    background: rgba(13, 148, 136, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
    line-height: 1.2;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-color);
    box-shadow: var(--box-shadow);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Donation Form */
.donation-form-container {
    position: relative;
    z-index: 2;
}

.donation-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-xl);
    overflow: hidden;
    transition: var(--transition);
}

.donation-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

.donation-form {
    padding: 2rem;
}

.donation-amounts {
    margin-bottom: 1.5rem;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-amount-radio {
    display: none;
}

.amount-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    background: var(--lighter-gray);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.amount-option:hover {
    border-color: var(--primary-light);
    background: var(--white);
}

.donation-amount-radio:checked + .amount-option {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.amount-option .currency {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 2px;
}

.amount-option .amount {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.amount-option.custom-amount {
    background: var(--white);
    border-style: dashed;
}

.donation-amount-radio:checked + .amount-option .currency,
.donation-amount-radio:checked + .amount-option .amount,
.donation-amount-radio:checked + .amount-option .custom-text {
    color: var(--white);
}

.custom-amount-input {
    display: none;
    margin-top: 1rem;
}

.donation-amount-radio#amount6:checked ~ .custom-amount-input {
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--dark-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--light-color);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
}

.donation-frequency {
    margin-bottom: 1.5rem;
}

.donation-frequency h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.frequency-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.frequency-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: var(--lighter-gray);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.frequency-option i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.frequency-option:hover {
    border-color: var(--primary-light);
    background: var(--white);
}

input[type="radio"]:checked + .frequency-option {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

input[type="radio"]:checked + .frequency-option i {
    color: var(--white);
}

.donation-designation,
.donation-message,
.donation-tribute,
.donation-anonymous {
    margin-bottom: 1.5rem;
}

.donation-designation h4,
.donation-message h4,
.donation-tribute h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.donation-designation h4 small,
.donation-message h4 small {
    font-weight: 400;
    color: var(--gray-color);
}

.donation-message textarea {
    min-height: 100px;
}

.tribute-details {
    background: var(--lighter-gray);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.9375rem;
}

.matching-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.matching-banner i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.matching-banner h5 {
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.matching-banner p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--gray-color);
}

.donation-total {
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.payment-methods i {
    font-size: 1.75rem;
    color: var(--gray-color);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods i:hover {
    opacity: 1;
    color: var(--primary-color);
}

.donation-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.secure-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.secure-info i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Impact Section */
.impact-section {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.impact-card:hover .impact-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.impact-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.impact-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.impact-amounts {
    margin-top: auto;
}

/* Donation Methods */
.donation-methods {
    background-color: var(--lighter-gray);
}

.methods-tabs {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--light-gray);
    padding: 0 1.5rem;
    background: var(--lighter-gray);
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--white);
}

.tabs-content {
    padding: 2.5rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.method-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.method-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.bank-details,
.stock-details {
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--light-gray);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-color);
    min-width: 140px;
}

.detail-value {
    color: var(--gray-color);
    flex-grow: 1;
}

.note {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--warning-color);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.note p {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.9375rem;
}

.note p:not(:last-child) {
    margin-bottom: 0.5rem;
}

.mailing-address {
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: normal;
}

.mailing-address p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.7;
}

.crypto-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.crypto-option {
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.crypto-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crypto-details {
    flex-grow: 1;
}

.crypto-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.wallet-address {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-copy:hover {
    background: rgba(13, 148, 136, 0.1);
}

.qr-code {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.qr-code img {
    max-width: 150px;
    height: auto;
}

.corporate-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.corporate-option {
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.corporate-option h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.matching-search {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.matching-search .form-control {
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/testimonial-bg.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section .section-header {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    z-index: 2;
    margin: 0 -15px;
    padding: 1rem 0 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    font-size: 1.125rem;
    margin: 0 0 0.25rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--primary-light);
    display: block;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:not(:last-child) {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--lighter-gray);
}

.faq-question i {
    transition: var(--transition);
    font-size: 0.875rem;
    color: var(--gray-color);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--lighter-gray);
}

.faq-answer p, 
.faq-answer ol, 
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--gray-color);
    line-height: 1.7;
}

.faq-answer p:first-child {
    padding-top: 1.5rem;
}

.faq-answer ol, 
.faq-answer ul {
    padding-left: 3rem;
    margin-bottom: 1rem;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding-top: 5rem;
    position: relative;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-widget h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-logo .logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-links a:hover::before {
    width: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    min-width: 20px;
}

.newsletter h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.25);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--white);
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.modal-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--success-color);
    font-size: 2.5rem;
}

.modal-body h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.modal-body p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.donation-summary {
    background: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--light-gray);
}

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item span:first-child {
    color: var(--gray-color);
}

.summary-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.next-steps ul {
    padding-left: 1.5rem;
    margin: 0;
    color: var(--gray-color);
    line-height: 1.7;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions .btn {
    min-width: 180px;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .donation-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .donation-hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .impact-stats {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crypto-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .donation-hero-text h2 {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .tabs-header {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .donation-hero-text h2 {
        font-size: 1.75rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .amount-options {
        grid-template-columns: 1fr 1fr;
    }
    
    .frequency-options {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-lighter {
    background-color: var(--lighter-gray) !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* Print Styles */
@media print {
    .no-print,
    .back-to-top,
    .modal,
    .modal-backdrop {
        display: none !important;
    }
    
    body {
        color: var(--dark-color);
        background: var(--white);
    }
    
    .container {
        max-width: 100%;
    }
    
    .donation-form-wrapper {
        box-shadow: none !important;
        border: 1px solid var(--light-gray);
    }
    
    .btn {
        display: none !important;
    }
    
    .form-header {
        background: var(--primary-color) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .donation-summary {
        break-inside: avoid;
    }
}
