/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #6b0f1a;
    --burgundy-dark: #4a0a12;
    --gold: #c9a961;
    --gold-light: #d4b36a;
    --dark: #1a0a0e;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #2c1810;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

body.rtl {
    font-family: 'Amiri', serif;
    direction: rtl;
}

html {
    scroll-behavior: smooth;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.98);
    padding: 5px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

body.rtl .lang-switcher {
    right: auto;
    left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    text-decoration: none;
}

.lang-btn.active {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(107, 15, 26, 0.3);
}

.lang-btn:hover:not(.active) {
    background: var(--cream);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy) 0%, #8b1728 50%, var(--burgundy-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 7px solid var(--gold);
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

body.rtl .hero-title {
    font-size: 4rem;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 20px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.6);
    background: var(--gold-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.scroll-indicator svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
    opacity: 0.8;
}

/* Services Logos Section */
.services-logos {
    background: var(--cream);
    padding: 100px 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 60px auto 0;
    align-items: center;
}

.service-item {
    transition: transform 0.3s ease;
}

.service-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    transition: all 0.3s ease;
    border-radius: 15px;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item:hover .service-logo {
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.18));
}

/* Section Styles */
section {
    padding: 110px 20px;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--burgundy);
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto 80px;
    line-height: 1.9;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 20px;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--burgundy);
    font-weight: 700;
}

.about-text p {
    font-size: 1.18rem;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Schedule Section */
.schedule {
    background: var(--cream);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.schedule-card {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-top: 6px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.schedule-card:hover::before {
    opacity: 0.05;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.schedule-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.schedule-day {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
}

.schedule-topic {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, var(--dark) 0%, var(--burgundy) 100%);
    color: var(--white);
}

.social-media .section-title {
    color: var(--white);
}

.social-media .section-title::after {
    background: var(--gold);
}

.social-media .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.social-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s ease;
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.social-card:hover {
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3);
}

.social-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-handle {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Video Section */
.video {
    background: var(--white);
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Support Section */
.support {
    background: var(--cream);
}

.support-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    font-size: 1.25rem;
    line-height: 2.1;
    color: var(--text-dark);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.impact-card {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    font-size: 4.5rem;
    margin-bottom: 30px;
}

.impact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--burgundy);
}

.impact-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contribution-section {
    margin: 70px 0;
}

.contribution-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    text-align: center;
    color: var(--burgundy);
    margin-bottom: 40px;
    font-weight: 700;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-grid.monthly {
    max-width: 400px;
}

.donation-button {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px 40px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--burgundy);
}

.donation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.donation-button:hover::before {
    left: 100%;
}

.donation-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(107, 15, 26, 0.25);
    border-color: var(--gold);
    background: var(--cream);
}

.donation-button.stripe-monthly {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
}

.donation-button.stripe-monthly:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
}

.payment-logo {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: none;
}

.donation-button.stripe-monthly .payment-logo {
    filter: none;
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    border-radius: 8px;
}

.patreon-icon {
    background: #FF424D;
    color: white;
}

.bank-details {
    background: var(--white);
    padding: 55px;
    border-radius: 25px;
    max-width: 800px;
    margin: 70px auto 0;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.bank-details h3 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    margin-bottom: 35px;
    font-size: 2rem;
}

.bank-details p {
    margin: 18px 0;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.scripture {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 0;
    padding: 45px;
    background: var(--white);
    border-left: 7px solid var(--gold);
    border-radius: 18px;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.25rem;
    line-height: 2.2;
    box-shadow: var(--shadow-md);
}

body.rtl .scripture {
    border-left: none;
    border-right: 7px solid var(--gold);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
    opacity: 0.9;
    font-size: 1.05rem;
}

.footer-contact {
    margin: 20px 0 !important;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-contact a:hover {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.developer {
    margin-top: 25px;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.15rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 15, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    width: 100%;
    background: var(--burgundy);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 15, 26, 0.3);
}

.contact-submit:hover {
    background: #8b1728;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 15, 26, 0.4);
}

.alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Quick Navigation */
.quick-nav {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

body.rtl .quick-nav {
    right: auto;
    left: 30px;
}

.quick-nav-btn {
    width: 55px;
    height: 55px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(107, 15, 26, 0.3);
    transition: all 0.3s ease;
}

.quick-nav-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.quick-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Payment Popup */
.payment-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.payment-popup.active {
    opacity: 1;
}

.payment-card {
    background: var(--white);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.payment-popup.active .payment-card {
    transform: scale(1) translateY(0);
}

.payment-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    background: var(--white);
    color: var(--text-dark);
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

body.rtl .payment-close {
    right: auto;
    left: 20px;
}

.payment-close:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: rotate(90deg);
    border-color: var(--burgundy);
}

.payment-header {
    padding: 60px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 25px 25px 0 0;
}

.payment-card-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.payment-body {
    padding: 40px;
}

.payment-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 30px;
    text-align: center;
}

.payment-body ol {
    margin: 30px 0;
    padding-left: 30px;
    counter-reset: payment-counter;
    list-style: none;
}

body.rtl .payment-body ol {
    padding-left: 0;
    padding-right: 30px;
}

.payment-body li {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: var(--text-dark);
    counter-increment: payment-counter;
    position: relative;
    padding-left: 15px;
}

body.rtl .payment-body li {
    padding-left: 0;
    padding-right: 15px;
}

.payment-body li::before {
    content: counter(payment-counter) ".";
    position: absolute;
    left: -30px;
    color: var(--burgundy);
    font-weight: 700;
    font-size: 1.2rem;
}

body.rtl .payment-body li::before {
    left: auto;
    right: -30px;
}

.payment-body p {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 30px;
    color: var(--text-dark);
    line-height: 1.8;
}

.payment-body strong {
    color: var(--burgundy);
    font-weight: 700;
}

.qr-code-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
}

.qr-code {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.username {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-top: 15px;
    margin-bottom: 0;
}

#stripe-button-container {
    margin: 30px 0;
    text-align: center;
}

stripe-buy-button {
    display: block;
    margin: 0 auto;
}

.stripe-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: left;
}

body.rtl .stripe-notice {
    border-left: none;
    border-right: 4px solid var(--gold);
    text-align: right;
}

.payment-footer {
    padding: 30px 40px 40px;
    display: flex;
    gap: 15px;
    background: var(--cream);
    border-radius: 0 0 25px 25px;
}

.payment-continue {
    flex: 1;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(107, 15, 26, 0.3);
}

.payment-continue:hover {
    background: #8b1728;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 15, 26, 0.4);
}

.payment-cancel {
    background: var(--white);
    color: var(--text-dark);
    padding: 20px 35px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.15rem;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-cancel:hover {
    background: var(--white);
    border-color: var(--burgundy);
    color: var(--burgundy);
}


/* Payment Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    z-index: 1;
}

body.rtl .modal-close {
    right: auto;
    left: 20px;
}

.modal-close:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 2px solid var(--cream);
}

.modal-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--burgundy);
    margin: 0;
}

.modal-body {
    padding: 30px 40px 40px;
}

.modal-body > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.modal-instructions {
    margin: 25px 0;
}

.instruction-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.step-number {
    background: var(--burgundy);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.modal-info-box {
    background: var(--cream);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

.modal-info-box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--burgundy);
    font-size: 1.1rem;
}

.zelle-email {
    font-family: monospace;
    font-size: 1.2rem;
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    color: var(--burgundy);
    font-weight: 600;
}

.copy-button {
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.copy-button:hover {
    background: var(--gold);
    color: var(--dark);
}

.modal-qr-placeholder {
    background: var(--cream);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 25px 0;
}

.modal-qr-placeholder svg {
    color: var(--burgundy);
    margin-bottom: 15px;
}

.modal-qr-placeholder p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
}

.patreon-benefits {
    background: var(--cream);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
}

.patreon-benefits h4 {
    color: var(--burgundy);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.patreon-benefits ul {
    list-style: none;
    padding: 0;
}

.patreon-benefits li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.stripe-embed {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--cream);
}

.stripe-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.modal-button {
    display: block;
    width: 100%;
    background: var(--burgundy);
    color: var(--white);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(107, 15, 26, 0.3);
}

.modal-button:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.donation-button {
    cursor: pointer;
    border: 2px solid var(--burgundy);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    body.rtl .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    body.rtl .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-photo {
        width: 180px;
        height: 180px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .video-container iframe {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .service-logo {
        max-width: 120px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
    }
    
    .lang-switcher {
        top: 15px;
        right: 15px;
    }
    
    body.rtl .lang-switcher {
        right: auto;
        left: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quick-nav {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    
    body.rtl .quick-nav {
        right: auto;
        left: 15px;
    }
    
    .quick-nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .modal-content {
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-logo {
        height: 45px;
    }
    
    .instruction-step {
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    body.rtl .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .service-logo {
        max-width: 100px;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .modal-header {
        padding: 25px 15px 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Payment Popup Mobile Styles */
@media (max-width: 768px) {
    .payment-card {
        max-height: 95vh;
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .payment-header {
        padding: 50px 25px 25px;
    }
    
    .payment-card-logo {
        max-width: 160px;
    }
    
    .payment-body {
        padding: 30px 25px;
    }
    
    .payment-body h3 {
        font-size: 1.6rem;
    }
    
    .payment-body li {
        font-size: 1.05rem;
    }
    
    .payment-footer {
        padding: 25px;
        flex-direction: column;
    }
    
    .payment-continue,
    .payment-cancel {
        width: 100%;
    }
}


/* MOBILE FIX - Force 2 icons per row on all mobile devices */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    
    .service-logo {
        max-width: 140px !important;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    .service-logo {
        max-width: 110px !important;
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    
    .service-logo {
        max-width: 95px !important;
        margin: 0 auto;
    }
}
