/* ===== CSS RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES ===== */
:root {
    --white: #FFFFFF;
    --black: #1A0F0F;
    --burgundy: #722F37;
    --dark-burgundy: #5A2328;
    --cream: #F5F1E6;
    --gold: #C8A97E;
    --light-cream: #FAF8F3;
    --gradient-primary: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #E8D9C0 100%);
    --gradient-dark: linear-gradient(135deg, #2A1A1A 0%, var(--black) 100%);
}

/* ===== BASE TYPOGRAPHY & BODY STYLES ===== */
html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background-color: var(--black);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--cream);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ===== LAYOUT & CONTAINER STYLES ===== */
.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: transparent;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    width: 100%;
    left: 0;
    right: 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    height: 60px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--cream);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 400;
}

.navbar-nav .nav-item {
    margin: 0 0.2rem;
}

.navbar-nav .nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    background: rgba(114, 47, 55, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(200, 169, 126, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.nav-btn-donar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--cream) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.nav-btn-donar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4);
    color: var(--cream) !important;
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--burgundy) 100%);
}

/* ===== HAMBURGER MENU STYLES ===== */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.toggler-bar {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: rgba(245, 241, 230, 0.9);
    border-radius: 1px;
    left: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggler-bar-top {
    top: 0;
    transform-origin: center;
}

.toggler-bar-middle {
    top: 8px;
    transform-origin: center;
}

.toggler-bar-bottom {
    top: 16px;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-top {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-middle {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-bottom {
    transform: rotate(-45deg);
    top: 8px;
}

.navbar-toggler:hover .toggler-bar {
    background: var(--gold);
}

/* ===== NAVBAR SCROLL EFFECTS ===== */
.navbar-scrolled {
    background: rgba(26, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-scroll-hidden {
    transform: translateY(-100%);
}

.navbar-scroll-visible {
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN STYLES ===== */
@media (max-width: 991px) {
    .navbar-toggler {
        border: 1px solid rgba(245, 241, 230, 0.2);
        border-radius: 4px;
        z-index: 1002;
    }
    
    .navbar-toggler:hover {
        background: rgba(245, 241, 230, 0.1);
    }

    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(26, 15, 15, 0.98) !important;
        backdrop-filter: blur(20px);
        padding: 80px 2rem 2rem !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow-y: auto !important;
        border: none !important;
        z-index: 1000 !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-20px);
    }

    .navbar-collapse.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .navbar-collapse.closing {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.closing .nav-item {
        opacity: 0;
        transform: translateY(20px);
    }

    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.4s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.5s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.6s; }
    .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.7s; }

    .navbar-collapse.closing .nav-item:nth-child(1) { transition-delay: 0s; }
    .navbar-collapse.closing .nav-item:nth-child(2) { transition-delay: 0s; }
    .navbar-collapse.closing .nav-item:nth-child(3) { transition-delay: 0s; }
    .navbar-collapse.closing .nav-item:nth-child(4) { transition-delay: 0s; }
    .navbar-collapse.closing .nav-item:nth-child(5) { transition-delay: 0s; }
    .navbar-collapse.closing .nav-item:nth-child(6) { transition-delay: 0s; }

    .navbar-nav .nav-link {
        padding: 1.2rem 1.5rem !important;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 12px;
        margin: 0.2rem 0;
        transition: all 0.3s ease;
        white-space: nowrap;
        background: rgba(245, 241, 230, 0.05);
        border: 1px solid rgba(245, 241, 230, 0.1);
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(200, 169, 126, 0.2);
        transform: translateX(8px);
        border-color: rgba(200, 169, 126, 0.3);
    }
    
    .nav-btn-donar {
        text-align: center;
        margin: 2rem 0 1rem 0;
        display: block;
        padding: 1.2rem 2rem !important;
        font-size: 1.2rem;
        border-radius: 30px;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-collapse.show .nav-btn-donar {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.8s;
    }
    
    .navbar-collapse.closing .nav-btn-donar {
        opacity: 0;
        transform: translateY(20px);
        transition-delay: 0s;
    }
    
    .navbar-nav {
        padding-bottom: 1rem;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(200, 169, 126, 0.25);
        border-left: 4px solid var(--gold);
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 6px;
    }
    
    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(200, 169, 126, 0.1);
        border-radius: 3px;
    }
    
    .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 3px;
    }
}

/* ===== DESKTOP NAVIGATION RESET ===== */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        border: none !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
    }
    
    .navbar-collapse.closing {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .navbar-nav .nav-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .nav-btn-donar {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .navbar-nav .nav-item,
    .nav-btn-donar {
        transition-delay: 0s !important;
    }
}

/* Ensure mobile menu starts closed */
@media (max-width: 991px) {
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-collapse {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .navbar-nav {
        min-height: min-content;
    }
}

/* ===== FOOTER STYLES ===== */
.footer-main {
    background: var(--gradient-dark);
    color: var(--cream);
    padding: 3rem 0 1rem 0;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}

.footer-section h5 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
}

.footer-section p {
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

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

.footer-links a {
    color: var(--cream) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    opacity: 0.9;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold) !important;
    padding-left: 10px;
    opacity: 1;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-contact li {
    color: var(--cream);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-service-times li {
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    opacity: 0.9;
}

.footer-service-times strong {
    color: var(--gold);
    font-weight: 600;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 241, 230, 0.1);
    border-radius: 50%;
    color: var(--cream) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 241, 230, 0.2);
}

.social-links a:hover {
    animation: pulse 0.6s ease;
    background: var(--burgundy);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

.footer-divider {
    border-color: rgba(245, 241, 230, 0.2);
    margin: 2rem 0 1.5rem 0;
    opacity: 0.6;
}

.footer-bottom {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--cream) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold) !important;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1rem 0;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
        display: inline-flex;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2rem 0 1rem 0;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ===== DONATE PAGE ADDITIONAL STYLES ===== */

/* Donate Hero Section */
.donate-hero {
    position: relative;
    min-height: 50vh;
    background: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 15, 15, 0.95) 0%, rgba(114, 47, 55, 0.85) 100%);
    z-index: 1;
}

.donate-hero .container {
    position: relative;
    z-index: 2;
}

.donate-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: expandWidth 1.5s ease;
}

.donate-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Bible Verse Section */
.bible-verse-section {
    padding: 60px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.bible-verse-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.verse-container {
    background: rgba(245, 241, 230, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.verse-quote {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.verse-text {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.verse-reference {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.verse-decoration {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.decoration-cross {
    font-size: 2rem;
    color: var(--burgundy);
    animation: pulse 2s infinite;
}

/* Donation Options Section */
.donation-options {
    padding: 80px 0;
    background: var(--black);
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

/* Amount Grid - Updated for better text wrapping */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.amount-btn {
    background: rgba(245, 241, 230, 0.05);
    border: 2px solid rgba(200, 169, 126, 0.3);
    color: var(--cream);
    padding: 1rem 0.5rem;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

.amount-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
}

.amount-btn.active {
    background: var(--gradient-primary);
    border-color: var(--gold);
    transform: scale(1.05);
}

.custom-amount {
    background: rgba(200, 169, 126, 0.1);
    border: 2px dashed var(--gold);
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.custom-amount i {
    margin-right: 0;
    font-size: 1rem;
    display: block;
}

.custom-amount-input {
    max-width: 400px;
    margin: 2rem auto 0;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group-text {
    background: var(--gradient-primary);
    color: var(--cream);
    border: 1px solid var(--gold);
    padding: 0.75rem 1rem;
    border-radius: 10px 0 0 10px;
}

.custom-amount-input .form-control {
    background: rgba(245, 241, 230, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.3);
    color: var(--cream);
    padding: 0.75rem;
    border-radius: 0;
}

.custom-amount-input .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200, 169, 126, 0.2);
}

.btn-apply {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--burgundy);
    color: var(--cream);
}

/* Payment Cards */
.payment-card {
    background: rgba(245, 241, 230, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.payment-card:hover::before {
    transform: translateX(0);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.paypal-card .payment-icon {
    background: linear-gradient(135deg, #003087, #009cde);
    color: white;
}

.cashapp-card .payment-icon {
    background: linear-gradient(135deg, #00d64f, #00b140);
    color: white;
}

.bank-card .payment-icon {
    background: var(--gradient-primary);
    color: var(--cream);
}

.payment-card:hover .payment-icon {
    transform: rotateY(360deg);
}

.payment-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.payment-card p {
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.payment-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.payment-note {
    color: var(--cream);
    opacity: 0.7;
    display: block;
    margin-bottom: 0.3rem;
}

.payment-email, .payment-cashtag {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    word-break: break-all;
}

/* QR Code */
.qr-container {
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qr-code i {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.qr-placeholder {
    font-size: 0.8rem;
    color: var(--black);
    font-weight: 600;
}

.qr-instruction {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Bank Details */
.bank-details {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.2);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--cream);
    opacity: 0.7;
}

.detail-value {
    color: var(--gold);
    font-weight: 500;
}

/* Payment Buttons */
.btn-payment {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.paypal-btn {
    background: linear-gradient(135deg, #003087, #009cde);
    color: white;
}

.cashapp-btn {
    background: linear-gradient(135deg, #00d64f, #00b140);
    color: white;
}

.bank-btn {
    background: var(--gradient-primary);
    color: var(--cream);
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

/* Monthly Giving Section */
.monthly-giving {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.monthly-content {
    padding-right: 2rem;
}

.monthly-text {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.monthly-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--cream);
}

.monthly-amounts h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.monthly-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.monthly-btn {
    background: rgba(245, 241, 230, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.3);
    color: var(--cream);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.monthly-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.monthly-btn.active {
    background: var(--gradient-primary);
    border-color: var(--gold);
}

.monthly-custom {
    border: 2px dashed var(--gold);
}

.btn-monthly {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-monthly:hover {
    background: var(--burgundy);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
}

.monthly-image {
    height: 500px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monthly-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(200, 169, 126, 0.1) 20px,
        rgba(200, 169, 126, 0.1) 40px
    );
    animation: moveBackground 20s linear infinite;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    padding: 2rem;
}

.image-content i {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: heartbeat 1.5s ease infinite;
}

.image-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.image-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--black);
}

.impact-card {
    background: rgba(245, 241, 230, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.impact-card:hover::before {
    transform: translateX(0);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--cream);
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: rotateY(360deg);
}

.impact-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-card p {
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.impact-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* Testimonials Section */
.donor-testimonials {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.donor-testimonials .testimonial-card {
    background: rgba(245, 241, 230, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.donor-testimonials .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--cream);
}

.testimonial-text {
    color: var(--cream);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.donor-testimonials .testimonial-card h4 {
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes moveBackground {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(10%, 10%);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .donate-hero .hero-title {
        font-size: 3rem;
    }
    
    .verse-text {
        font-size: 1.5rem;
    }
    
    .monthly-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .monthly-buttons {
        justify-content: center;
    }
    
    .monthly-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .donate-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .verse-text {
        font-size: 1.3rem;
    }
    
    .verse-container {
        padding: 2rem;
    }
    
    .amount-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .amount-btn {
        font-size: 1.1rem;
        padding: 0.8rem 0.3rem;
        min-height: 60px;
    }
    
    .custom-amount {
        font-size: 0.95rem;
    }
    
    .custom-amount i {
        font-size: 0.9rem;
    }
    
    .bank-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
}

@media (max-width: 576px) {
    .donate-hero .hero-title {
        font-size: 2rem;
    }
    
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .amount-btn {
        font-size: 1rem;
        padding: 0.7rem 0.2rem;
        min-height: 55px;
    }
    
    .custom-amount {
        font-size: 0.85rem;
        grid-column: span 2;
    }
    
    .custom-amount i {
        font-size: 0.8rem;
    }
    
    .monthly-buttons {
        flex-direction: column;
    }
    
    .monthly-btn {
        width: 100%;
    }
    
    .btn-monthly {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .amount-btn {
        font-size: 0.9rem;
        padding: 0.6rem 0.1rem;
    }
    
    .custom-amount {
        font-size: 0.8rem;
    }
}