
    /* Give Hero Section */
.give-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../images/give.png') center center/cover no-repeat;
    margin-top: 0;
    padding-top: 100px; /* adjust based on navbar height */
}

.give-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .80);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.give-hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.give-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 70%);
    animation: float-give 15s infinite ease-in-out;
}

.give-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.give-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

@keyframes float-give {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.give-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.give-hero-icon {
    font-size: 5rem;
    color: #f4d03f;
    margin-bottom: 1.5rem;
    animation: pulse-give 2s infinite;
}

@keyframes pulse-give {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.give-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.give-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Scripture Section */
.give-scripture {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.scripture-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #f4d03f;
    text-align: center;
}

.scripture-icon,
.scripture-icon-right {
    font-size: 3rem;
    color: rgba(244, 208, 63, 0.2);
    position: absolute;
}

.scripture-icon {
    top: 2rem;
    left: 2rem;
}

.scripture-icon-right {
    bottom: 2rem;
    right: 2rem;
}

.scripture-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.scripture-reference {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f4d03f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.scripture-dash {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Why Give Section */
.why-give-section {
    padding: 5rem 2rem;
    background: white;
}

.section-label {
    display: inline-block;
    background: #f4d03f;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: #f8f8f8;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.impact-card:hover {
    background: white;
    border-color: #f4d03f;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4d03f 0%, #e0bf2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
}

/* Giving Options Section */
.giving-options-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.giving-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.giving-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.giving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #f4d03f;
}

.giving-card-body {
    padding: 2rem;
}

.giving-method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.giving-method-header i {
    font-size: 2rem;
    color: #f4d03f;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 12px;
}

.giving-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.giving-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.giving-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    position: relative;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    word-break: break-all;
}

.btn-copy-simple {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.btn-copy-simple:hover {
    background: #f4d03f;
    border-color: #f4d03f;
    color: #000;
    transform: scale(1.1);
}

.btn-copy-simple i {
    font-size: 0.9rem;
}

/* QR Section Simplified */
.qr-section-simple {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.qr-container-simple {
    width: 180px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-container-simple:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.qr-container-simple img {
    width: 100%;
    height: auto;
    display: block;
}

.qr-hint-simple {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.giving-instructions-simple {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.giving-instructions-simple p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Empty State */
.empty-giving-state {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.empty-giving-state i {
    font-size: 6rem;
    color: #f4d03f;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.empty-giving-state p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-giving-state span {
    font-size: 1.1rem;
    color: #666;
}

/* Ways to Give Section */
.giving-ways-section {
    padding: 5rem 2rem;
    background: white;
}

.giving-ways-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.ways-left h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 2rem;
}

.ways-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ways-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: white;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ways-list li i {
    color: #f4d03f;
    font-size: 1.5rem;
    width: 30px;
}

.ways-icon-large {
    text-align: center;
}

.ways-icon-large i {
    font-size: 10rem;
    color: rgba(244, 208, 63, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #f4d03f;
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f4d03f;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.give-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.give-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #f4d03f;
    margin-bottom: 1rem;
}

.give-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #f4d03f;
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f4d03f;
}

.btn-cta:hover {
    background: transparent;
    color: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .giving-grid {
        grid-template-columns: 1fr;
    }
    
    .giving-ways-card {
        grid-template-columns: 1fr;
    }
    
    .ways-icon-large {
        display: none;
    }
}

/* --- Responsive Design Fix for Mobile Full Width --- */
@media (max-width: 768px) {
    /* Remove side spacing and make sections full-width */
    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    section,
    .give-hero,
    .scripture-card,
    .giving-card,
    .impact-card,
    .giving-ways-card,
    .faq-card {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    /* Adjust internal paddings for breathing space */
    .scripture-card {
        padding: 3rem 1.5rem;
    }

    .giving-card-body,
    .impact-card,
    .faq-card {
        padding: 1.5rem;
    }
    
    .giving-method-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .giving-detail-item {
        padding: 0.875rem;
    }

    .give-hero-icon {
        font-size: 3.5rem;
    }

    .scripture-icon,
    .scripture-icon-right {
        font-size: 2rem;
    }

    .giving-grid {
        grid-template-columns: 1fr;
    }
    
    .giving-card-body {
        padding: 1.25rem;
    }
    
    .giving-method-header i {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
    
    .giving-title {
        font-size: 1.2rem;
    }
    
    .qr-container-simple {
        width: 150px;
    }

    .impact-card {
        padding: 2rem 1.5rem;
    }
}


@media (max-width: 576px) {
    .give-hero-icon {
        font-size: 3.5rem;
    }
    
    .scripture-icon,
    .scripture-icon-right {
        font-size: 2rem;
    }
    
    .scripture-card {
        padding: 2rem 1.5rem;
    }
    
    .giving-grid {
        grid-template-columns: 1fr;
    }
    
    .giving-card-body {
        padding: 1.5rem;
    }
    
    .qr-container-simple {
        width: 160px;
    }
    
    .impact-card {
        padding: 2rem 1.5rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Copy Animation */
@keyframes copied {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-copy-simple.copied {
    animation: copied 0.3s ease;
}
/* QR Modal Styles */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-modal.active {
    opacity: 1;
}

.qr-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.qr-modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.qr-modal.active .qr-modal-content {
    transform: scale(1);
}

.qr-modal-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.qr-modal-content p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.qr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f4d03f;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
    line-height: 1;
}

.qr-modal-close:hover {
    background: #e0bf2f;
    transform: rotate(90deg);
}

/* Print Styles */
@media print {
    .give-hero,
    .why-give-section,
    .giving-ways-section,
    .faq-section,
    .give-cta-section {
        display: none;
    }
    
    .giving-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .btn-copy-simple {
        display: none;
    }
}

/* Accessibility */
.giving-card:focus-within {
    outline: 3px solid #f4d03f;
    outline-offset: 3px;
}

/* Loading Animation for QR Code */
.qr-container.loading {
    background: #f0f0f0;
    position: relative;
}

.qr-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f4d03f;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid #f4d03f;
    outline-offset: 2px;
}