/* Color Variables - New Design System */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #AA8C2C;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA8C2C 100%);
    --deep-purple: #4A0E2E;
    --purple-gradient: linear-gradient(135deg, #600d29 0%, #31081e 100%);
    --white: #ffffff;
    --text-dark: #1A1A1A;
    --border-radius: 20px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(74, 14, 46, 0.1);
}

/* Open Sans font is now loaded from Google Fonts */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Font Classes */
.bona-nova-regular {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: normal;
}

.bona-nova-bold {
    font-family: "Bona Nova", serif;
    font-weight: 700;
    font-style: normal;
}

.bona-nova-regular-italic {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: italic;
}

.open-sans {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
}

/* Body - Primary Font */
body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    direction: rtl;
    background-color: #fdfbf7;
    background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
}

/* Typography System */
/* Level 2 - Secondary text */
.text-level-2 {
    font-size: 24px;
}

/* Level 3 - Large text */
.text-level-3 {
    font-size: 30px;
}

.text-level-3-large {
    font-size: 48px;
}

/* Hero/Intro text */
.hero-text {
    font-size: 70px;
}

/* Headings - Bona Nova Regular Italic */
h1,
h2,
h3,
.section-title,
.mission-title,
.belief-title,
.belief-statement,
.cta-title,
.hero-title {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: normal;
}

/* Activity text headings - Open Sans Bold */
.activity-text h3 {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
}

/* Standard body text elements - Open Sans */
p,
.activity-text p,
.mission-text,
.contact-subtitle,
.cta-subtitle,
.stat-label,
.form-input,
.form-textarea,
.btn-send {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
}

.nav-link {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Header Section */
.header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--deep-purple);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
    margin-right: 0;
    margin-left: 40px;
}

.nav-link {
    color: var(--deep-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.logo {
    display: flex;
    align-items: center;
    order: 1;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 3;
}

.logo-svg {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Buttons - 24px border radius with smooth hover - Uniform size */
.btn-donate-nav,
.btn-donate-hero,
.btn-send,
.btn-read-more,
.btn-back-home,
.btn-submit-prayer,
.btn-back {
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 48px;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-donate-nav {
    background: var(--gold-gradient);
    color: var(--deep-purple);
    border: none;
}

.btn-donate-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 100px);
    min-height: calc(600px - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: 100%;
    min-height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

@media (max-width: 1024px) {
    .hero-video {
        height: calc(100vh - 100px);
        min-height: calc(100vh - 100px);
    }
}

@media (max-width: 768px) {
    .hero-video {
        height: calc(100vh - 100px);
        min-height: calc(100vh - 100px);
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: calc(100vh - 100px);
        min-height: calc(100vh - 100px);
    }
}

.hero-video-active {
    opacity: 1;
    z-index: 1;
}

.hero-video-next {
    opacity: 0;
    z-index: 0;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(rgba(96, 13, 41, 0.85), rgba(96, 13, 41, 0.85)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="potGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%238B4513;stop-opacity:1" /><stop offset="100%" style="stop-color:%23654321;stop-opacity:1" /></linearGradient></defs><rect fill="%234a2c2a" width="1200" height="600"/><ellipse cx="400" cy="300" rx="180" ry="200" fill="url(%23potGrad)"/><ellipse cx="800" cy="320" rx="160" ry="180" fill="url(%23potGrad)"/><rect x="350" y="450" width="100" height="20" fill="%23555" opacity="0.5"/><rect x="750" y="460" width="100" height="20" fill="%23555" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: none;
}

.hero:has(.hero-video:not([src])) .hero-fallback,
.hero .hero-video:not([src])~.hero-fallback {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(96, 13, 41, 0.75);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 60px;
    width: 100%;
    max-width: 100%;
}

.hero-subtitle {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 36px;
    color: #A58449;
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.hero-title-line1,
.hero-title-line2,
.hero-title-line3 {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-donate-hero {
    background: var(--gold-gradient);
    color: var(--deep-purple);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    border: none;
}

.btn-donate-hero:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Mission Section */
.mission {
    background-color: var(--white);
    scroll-margin-top: 100px;
    padding: 80px 0;
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to left, transparent, var(--primary-gold), transparent);
}

.mission-title {
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    color: #A58449;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    padding: 0 80px;
}

.mission-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: right;
    max-width: 550px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-text-content {
    position: relative;
    overflow: hidden;
    max-height: 200px;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
    font-size: 15px;
    font-weight: 600 !important;
    text-align: right;
    width: 100%;
}

.mission-text-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.mission-text.expanded .mission-text-content {
    max-height: 5000px;
}

.mission-text.expanded .mission-text-content::after {
    opacity: 0;
}

.mission-read-more-btn {
    background: var(--gold-gradient);
    color: var(--deep-purple);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 42px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    margin: 30px auto 0;
    width: auto;
    direction: rtl;
}

.mission-read-more-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.mission-read-more-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.mission-text.expanded .mission-read-more-arrow {
    transform: rotate(180deg);
}

.mission-text strong {
    font-weight: 700;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 2rem;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-graphic {
    float: right;
    margin-right: 0;
    margin-left: 15px;
    margin-bottom: 10px;
    margin-top: 0;
    padding-top: 10px;
    shape-outside: margin-box;
}

.mission-ayin {
    width: 90px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Belief Section */
.belief {
    background-color: var(--deep-purple);
    padding: 80px 0;
    scroll-margin-top: 100px;
    color: var(--white);
}

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

.belief-title {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 36px;
    color: #A58449;
    margin-bottom: 30px;
    line-height: 1.4;
}

.belief-statement {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--white);
}

.btn-read-more {
    background: var(--gold-gradient);
    color: var(--deep-purple);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-read-more:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Activities Section */
.activities {
    background-color: var(--white);
    padding: 80px 0;
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: #A58449;
    text-align: center;
    margin-bottom: 60px;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Activity Items - 24px border radius */
.activity-item {
    position: relative;
    overflow: visible;
    border-radius: var(--border-radius);
    background: transparent;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.activity-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.activity-item.image-only {
    min-height: 400px;
}

.activity-item.image-only .activity-image {
    height: 100%;
    width: 100%;
}

.activity-item.text-only {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    min-height: 400px;
}

.activity-item.image-text {
    display: flex;
    flex-direction: column;
    min-height: 350px;
    background: transparent;
}

.activity-item.image-text .activity-image {
    flex: 0 0 65%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.activity-item.image-text .activity-text {
    flex: 0 0 35%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.activity-item .activity-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.activity-item.image-only .activity-image {
    border-radius: var(--border-radius);
}

.activity-item.image-text .activity-image {
    border-radius: var(--border-radius);
}

.activity-item .image-placeholder,
.activity-item .activity-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.activity-item.image-only .image-placeholder,
.activity-item.image-only .activity-img {
    border-radius: var(--border-radius);
}

.activity-item:hover .image-placeholder,
.activity-item:hover .activity-img {
    transform: scale(1.08);
}

.activity-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}

.shopping-card {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}

.food-baskets {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
}

.community-hall {
    background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
}

.financial-aid {
    background: linear-gradient(135deg, #f0f0f0 0%, #d8d8d8 100%);
}

.activity-text {
    flex: 1;
}

.activity-text h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 15px;
}

.activity-text p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Values Statement Section */
.values-statement {
    background-color: #D7B97D;
    padding: 60px 0;
    text-align: center;
}

.values-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--deep-purple);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 80px;
}

.values-emphasis {
    font-size: 24px;
    display: block;
    margin-top: 0;
    line-height: 1.3;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

/* Image Slider Section */
.image-slider-section {
    background-color: var(--white);
    padding: 80px 0;
}

.image-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.slider-track {
    display: flex;
    direction: ltr;
    will-change: transform;
    animation: slideInfinite 40s linear infinite;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-slide {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 300px;
    position: relative;
    margin-right: 20px;
}

.slider-slide:last-child {
    margin-right: 0;
}

.slider-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
}

/* Slider mobile optimizations */
.image-slider {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.image-slider:active {
    cursor: grabbing;
}

.slider-track.dragging {
    animation-play-state: paused;
    cursor: grabbing;
}



/* Donation Options Section */
.donation-options {
    background-color: var(--white);
    padding: 80px 60px 0 60px;
    scroll-margin-top: 100px;
}

.donation-title {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 36px;
    color: #A58449;
    text-align: center;
    margin-bottom: 60px;
}

.donation-cards {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.donation-card {
    flex: 1;
    background: var(--purple-gradient);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.donation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 14, 46, 0.2);
}

.donation-card-header {
    margin-bottom: 15px;
    width: 100%;
}

.donation-card-title {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-gold);
    line-height: 1.4;
    margin: 0;
}

.donation-card-subtitle {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-top: 5px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.donation-card-description {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-gold);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.donation-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
    border-radius: 0;
    overflow: visible;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.donation-img:not([src]),
.donation-card-image:has(img:not([src])) {
    background: transparent;
}

.donation-card-price {
    background: var(--gold-gradient);
    border-radius: var(--border-radius);
    height: 42px;
    padding: 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    align-self: center;
    margin-top: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: none;
}

.donation-card-price:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.price-amount {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-purple);
}

.price-currency {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-purple);
}

/* Donation Banner Section */
.donation-banner-spacing-top {
    background-color: var(--white);
    height: 30px;
}

.donation-banner-wrapper {
    background-color: var(--white);
    padding: 0 60px 0 60px;
    overflow: visible;
    position: relative;
}

.donation-banner {
    background: var(--purple-gradient);
    border-radius: var(--border-radius);
    padding: 20px 40px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.donation-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.donation-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
}

.donation-banner-label {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-gold);
    text-align: center;
    margin: 0;
    align-self: center;
}

.donation-banner-title {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.donation-banner-button {
    background-color: var(--primary-gold);
    color: var(--deep-purple);
    border-radius: var(--border-radius);
    height: 42px;
    padding: 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    align-self: center;
    margin-top: 20px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-banner-button:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.donation-banner-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    transform: translateY(-50%);
}

.donation-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Prayer Names Text Section */
.prayer-names-text {
    background-color: var(--white);
    padding: 40px 0;
}

.prayer-names-text-content {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* White spacing section after banner */
.donation-banner-spacing {
    background-color: var(--white);
    padding: 60px 0;
}

/* Donation Details Section */
.donation-details {
    background-color: var(--deep-purple);
    padding: 80px 60px;
}

.donation-details-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 40px;
}

.donation-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    direction: rtl;
}

.donation-method-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.donation-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 14, 46, 0.15);
}

.method-card-header {
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.method-card-title {
    font-family: "Bona Nova", serif;
    font-size: 24px;
    color: var(--deep-purple);
    margin: 0;
    font-weight: 700;
}

/* Bank Accounts inside Card */
.bank-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.2s ease;
}

.bank-account-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
}

.bank-details-text {
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
}

.bank-details-text strong {
    color: var(--deep-purple);
    font-size: 16px;
}

.bank-details-text span {
    color: #555;
    font-size: 14px;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--primary-gold);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--deep-purple);
}

.btn-copy.success {
    color: #28a745;
}

/* QR Code details inside Card */
.qr-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.qr-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.qr-instructions {
    font-family: "Open Sans", sans-serif;
    color: var(--text-dark);
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.donate-button-section {
    background-color: var(--white);
    padding: 60px 0 0 0;
    text-align: center;
}

.donation-details-button {
    text-align: center;
}

.donation-tax-info-styled {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.donation-tax-info-styled p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 0;
}

/* CTA Section */
.cta {
    background-color: var(--primary-gold);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--deep-purple);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--deep-purple);
    font-weight: 400;
}

/* Statistics Section */
.statistics {
    background-color: var(--white);
    padding: 80px 60px;
}

.statistics .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    text-align: right;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 20px;
}

.stat-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.stat-currency {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-purple);
    line-height: 1;
}

.stat-prefix {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-purple);
    line-height: 1;
}

.stat-number {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-purple);
    line-height: 1;
}

.stat-label {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: var(--deep-purple);
    line-height: 1.4;
    text-align: center;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

.stat-quarter-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background-color: var(--primary-gold);
    border-radius: 0 0 0 100%;
    z-index: 1;
    opacity: 0.3;
}

.stat-divider {
    width: 1px;
    background-color: var(--deep-purple);
    position: relative;
    margin: 0 20px;
}

.stat-divider::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 8px;
    height: 8px;
    background-color: var(--deep-purple);
    border-radius: 50%;
}

/* Alternate dot positions for dividers */
.stat-divider:nth-of-type(2)::before {
    top: 0;
}

.stat-divider:nth-of-type(4)::before {
    bottom: 0;
    top: auto;
}

.stat-divider:nth-of-type(6)::before {
    top: 0;
}

/* Contact Section */
.contact {
    background-color: var(--white);
    padding: 80px 60px;
    scroll-margin-top: 100px;
}

.contact-title {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 36px;
    color: #A58449;
    text-align: center;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    direction: rtl;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
}

.contact-details-wrapper {
    display: flex;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details-card {
    background: var(--purple-gradient);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(74, 14, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-details-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

.contact-details-title {
    font-family: "Bona Nova", serif;
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.contact-details-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: var(--primary-gold);
    margin-bottom: 2px;
}

.contact-text span {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: white;
}

.form-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: var(--deep-purple);
    text-align: right;
    direction: rtl;
}

/* Form inputs - 24px border radius */
.form-input,
.form-textarea {
    padding: 12px 18px;
    border: 1px solid rgba(74, 14, 46, 0.2);
    border-radius: var(--border-radius);
    font-size: 14px;
    direction: rtl;
    transition: all 0.3s ease;
    background-color: var(--white);
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    color: var(--deep-purple);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(96, 13, 41, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(96, 13, 41, 0.5);
    font-family: "Open Sans", sans-serif;
}

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

.form-textarea[readonly] {
    background-color: var(--white);
    cursor: default;
}

.btn-send {
    background: var(--purple-gradient);
    color: var(--white);
    align-self: center;
    margin-top: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(74, 14, 46, 0.2);
}

.btn-send:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 14, 46, 0.4);
}

.btn-send:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 10px rgba(74, 14, 46, 0.2);
}

.contact-footer-message {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--deep-purple);
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--purple-gradient);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
    border-top: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
}

.footer p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 50px;
    }

    .hero {
        height: calc(100vh - 100px);
        min-height: calc(500px - 100px);
    }

    .hero-video,
    .hero-fallback,
    .hero-overlay {
        height: 100%;
        min-height: 100%;
    }

    .hero-title {
        font-size: 54px;
        line-height: 0.85;
    }

    .hero-subtitle {
        font-size: 30px;
        color: #A58449;
    }

    .mission-title {
        font-size: 30px;
        color: #A58449;
    }

    .belief-title {
        font-size: 30px;
        color: #A58449;
    }

    .section-title {
        font-size: 30px;
        color: #A58449;
    }

    .donation-title {
        font-size: 30px;
        color: #A58449;
    }

    .donation-details-title {
        font-size: 30px;
        color: var(--primary-gold);
    }

    .contact-title {
        font-size: 30px;
        color: #A58449;
    }

    .statistics {
        padding: 60px 40px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
        padding: 0 15px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-currency {
        font-size: 16px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-quarter-circle {
        width: 70px;
        height: 70px;
    }

    .stat-content {
        min-height: 130px;
    }

    .activity-item {
        padding: 15px;
    }

    .donation-options {
        padding: 60px 40px;
    }

    .donation-title {
        font-size: 32px;
        margin-bottom: 50px;
        color: #A58449;
    }

    .donation-cards {
        gap: 25px;
    }

    .donation-card {
        min-height: 480px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 60px;
    }

    .nav-links {
        margin-left: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }

    .nav-left {
        order: 2;
    }

    .logo {
        order: 1;
        flex: 1;
        justify-content: center;
    }

    .logo-svg {
        height: 60px;
        max-width: 250px;
    }

    .nav-links {
        margin-left: 30px;
    }

    .nav-left .btn-donate-nav {
        height: 38px;
        padding: 0 25px;
        font-size: 14px;
    }

    .nav-links {
        order: 3;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #fdfbf7;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(96, 13, 41, 0.1);
        width: 100%;
        text-align: center;
        color: var(--deep-purple);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero {
        height: calc(100vh - 100px);
        min-height: calc(400px - 100px);
    }

    .hero-video,
    .hero-fallback,
    .hero-overlay {
        height: 100%;
        min-height: 100%;
    }

    .hero-subtitle {
        font-size: 32px;
        color: #A58449;
    }

    .hero-title {
        font-size: 40px;
        font-weight: 700;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 0px;
        line-height: 0.85;
    }

    .section-title {
        font-size: 28px;
    }

    .mission {
        padding: 60px 0;
    }

    .activities {
        padding: 60px 0;
    }

    .statistics {
        padding: 60px 0;
    }

    .image-slider-section {
        padding: 50px 0;
    }

    .values-statement {
        padding: 50px 0;
    }

    .donation-options {
        padding: 60px 20px 0 20px;
    }

    .cta {
        padding: 50px 0;
    }

    .donation-card-title {
        font-size: 20px;
    }

    .donation-card-subtitle {
        font-size: 24px;
    }

    .donation-card-description {
        font-size: 20px;
    }

    .hero-title-line1,
    .hero-title-line2,
    .hero-title-line3 {
        font-family: "Open Sans", sans-serif;
        font-style: normal;
    }

    .hero-subtitle {
        margin-bottom: 5px;
    }

    .btn-donate-hero {
        padding: 15px 40px;
        font-size: 16px;
    }

    .mission {
        padding: 60px 0;
    }

    .mission-title {
        font-size: 30px;
        margin-bottom: 2rem;
        padding: 0 40px;
        color: #A58449;
    }

    .mission-content {
        align-items: flex-start;
        justify-content: center;
    }

    .mission-text {
        font-size: 12px;
        max-width: 100%;
        font-weight: 400;
        text-align: right;
    }

    .mission-text strong {
        font-weight: 700;
    }

    .mission-graphic {
        float: right;
        margin-right: 0;
        margin-left: 10px;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .mission-ayin {
        width: 80px;
    }

    .belief {
        padding: 60px 0;
    }

    .belief-title {
        font-size: 30px;
        padding: 0 30px;
        color: #A58449;
    }

    .belief-statement {
        font-size: 22px;
        padding: 0 30px;
        line-height: 1.2;
    }

    .activities {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
        color: #A58449;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    /* Reorder items in mobile: pair image-text together */
    /* Current order: img1, text1, text2, img2, img3, text3, text4, img4 */
    /* Desired order: img1, text1, img2, text2, img3, text3, img4, text4 */
    .activity-item.image-only:nth-child(1) {
        order: 1;
    }

    .activity-item.text-only:nth-child(2) {
        order: 2;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .activity-item.text-only:nth-child(3) {
        order: 4;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .activity-item.image-only:nth-child(4) {
        order: 3;
    }

    .activity-item.image-only:nth-child(5) {
        order: 5;
    }

    .activity-item.text-only:nth-child(6) {
        order: 6;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .activity-item.text-only:nth-child(7) {
        order: 8;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .activity-item.image-only:nth-child(8) {
        order: 7;
    }

    .activity-item.image-only {
        min-height: 300px;
        margin-bottom: 0;
    }

    .activity-item.text-only {
        min-height: 250px;
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .activity-item.text-only .activity-text {
        width: 100%;
        max-width: 100%;
    }

    .activity-item.image-text {
        min-height: 300px;
    }

    .activity-text h3 {
        font-size: 24px;
    }

    .activity-text p {
        font-size: 16px;
    }

    .values-statement {
        padding: 40px 0;
    }

    .values-text {
        font-size: 16px;
        padding: 0 40px;
        line-height: 1.4;
    }

    .values-emphasis {
        font-size: 20px;
        margin-top: 0;
        line-height: 1.3;
    }

    .donation-options {
        padding: 60px 40px 0 40px;
    }

    .donation-title {
        font-size: 30px;
        margin-bottom: 40px;
        color: #A58449;
    }

    .donation-cards {
        flex-direction: column;
        gap: 25px;
    }

    .donation-card {
        min-height: 450px;
        padding: 25px;
    }

    .donation-card-title {
        font-size: 16px;
        color: var(--primary-gold);
        font-weight: 400;
    }

    .donation-card-subtitle {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        max-width: 85%;
    }

    .donation-card-description {
        font-size: 16px;
        color: var(--primary-gold);
    }

    .donation-card-image {
        height: 180px;
        margin-bottom: 35px;
        border: none;
        background-color: transparent;
    }

    .donation-card-price {
        height: 38px;
        padding: 0 25px;
        font-size: 14px;
    }

    .price-amount {
        font-size: 14px;
    }

    .price-currency {
        font-size: 14px;
    }

    .donation-banner-spacing-top {
        height: 25px;
    }

    .donation-banner-wrapper {
        padding: 0 40px 0 40px;
    }

    .donation-banner {
        padding: 8px 30px;
    }

    .prayer-names-text {
        padding: 35px 0;
    }

    .prayer-names-text-content {
        font-size: 16px;
    }

    .donation-banner-spacing {
        padding: 50px 0;
    }

    .donation-banner-content {
        gap: 25px;
    }

    .donation-banner-label {
        font-size: 17px;
    }

    .donation-banner-title {
        font-size: 16px;
    }

    .donation-banner-button {
        height: 40px;
        padding: 0 30px;
        font-size: 15px;
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .donation-banner-icon {
        right: 25px;
        width: 150px;
        height: 200px;
    }

    .donation-details {
        padding: 60px 40px;
    }

    .donation-details-title {
        font-size: 30px;
        margin-bottom: 35px;
        color: #A58449;
    }

    .donation-methods {
        gap: 30px;
        margin-bottom: 30px;
        align-items: center;
    }

    .donation-method {
        max-width: 450px;
    }

    .donation-tax-text {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-gold);
    }

    .donation-method-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .donation-asterisk {
        font-size: 24px;
        font-weight: 700;
    }

    .donation-method-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .donation-field {
        font-size: 18px;
        padding: 0;
        margin-bottom: 6px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 30px;
        padding: 0 40px;
    }

    .cta-subtitle {
        font-size: 16px;
        padding: 0 40px;
    }

    .statistics {
        padding: 60px 40px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
        padding: 0 15px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-currency {
        font-size: 16px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-quarter-circle {
        width: 70px;
        height: 70px;
    }

    .contact {
        padding: 60px 40px;
    }

    .contact-title {
        font-size: 30px;
        margin-bottom: 25px;
        color: #A58449;
    }

    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-form {
        max-width: 600px;
        gap: 10px;
        padding: 30px;
    }

    .contact-subtitle {
        margin-bottom: 15px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 16px;
    }

    .btn-send {
        height: 38px;
        padding: 0 25px;
        font-size: 14px;
    }

    .contact-footer-message {
        font-size: 16px;
    }
}

/* Image Slider Mobile */
@media (max-width: 768px) {
    .image-slider-section {
        padding: 50px 0;
    }

    .slider-slide {
        min-width: 250px;
        max-width: 250px;
        margin-right: 15px;
    }

    .slider-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .image-slider-section {
        padding: 40px 0;
    }

    .slider-slide {
        min-width: 200px;
        max-width: 200px;
        margin-right: 12px;
    }

    .slider-image {
        height: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero {
        height: calc(100vh - 100px);
        min-height: calc(350px - 100px);
    }

    .hero-video,
    .hero-fallback,
    .hero-overlay {
        height: 100%;
        min-height: 100%;
    }

    .hero-subtitle {
        font-size: 24px;
        color: #A58449;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 0px;
        line-height: 0.85;
    }

    .hero-title-line1,
    .hero-title-line2,
    .hero-title-line3 {
        font-family: "Open Sans", sans-serif;
        font-style: normal;
    }

    .btn-donate-hero {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
        color: #A58449;
    }

    .statistics {
        padding: 50px 20px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 100%;
        padding: 0 5px;
    }

    .stat-divider {
        display: block;
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }

    .stat-divider::before {
        right: 0;
        transform: translateX(50%);
    }

    /* Dot positions for mobile - divider 4 should be at bottom */
    .stat-divider:nth-of-type(4)::before {
        bottom: 0;
        top: auto;
    }

    /* Other dividers at top in mobile */
    .stat-divider:nth-of-type(2)::before {
        top: 0;
    }

    .stat-divider:nth-of-type(6)::before {
        top: 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-currency {
        font-size: 14px;
    }

    .stat-prefix {
        font-size: 14px;
    }

    .stat-label {
        font-size: 13px;
        padding: 0 10px;
    }

    .stat-content {
        min-height: 55px;
        padding: 0;
    }

    .values-statement {
        padding: 30px 0;
    }

    .values-text {
        font-size: 14px;
        padding: 0 30px;
        line-height: 1.4;
    }

    .values-emphasis {
        font-size: 18px;
        margin-top: 0;
        line-height: 1.3;
    }

    .cta-title {
        font-size: 24px;
        padding: 0 30px;
    }

    .cta-subtitle {
        font-size: 14px;
        padding: 0 30px;
    }

    .donation-options {
        padding: 60px 0 0 0;
    }

    .donation-title {
        font-size: 24px;
        margin-bottom: 25px;
        color: #A58449;
    }

    .donation-cards {
        flex-direction: column;
        gap: 20px;
    }

    .donation-card {
        min-height: 380px;
        padding: 20px;
    }

    .donation-card-title {
        font-size: 14px;
        color: var(--primary-gold);
        font-weight: 400;
    }

    .donation-card-subtitle {
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        max-width: 85%;
    }

    .donation-card-description {
        font-size: 14px;
        color: var(--primary-gold);
    }

    .donation-card-image {
        height: 130px;
        margin-bottom: 30px;
        border: none;
        background-color: transparent;
    }

    .donation-card-price {
        height: 36px;
        padding: 0 20px;
        font-size: 13px;
    }

    .price-amount {
        font-size: 13px;
    }

    .price-currency {
        font-size: 13px;
    }

    .donation-banner-spacing-top {
        height: 20px;
    }

    .donation-banner-wrapper {
        padding: 0;
    }

    .donation-banner {
        padding: 6px 20px;
    }

    .prayer-names-text {
        padding: 30px 0;
    }

    .prayer-names-text-content {
        font-size: 16px;
    }

    .donation-banner-spacing {
        padding: 40px 0;
    }

    .donation-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .donation-banner-text {
        align-items: center;
        width: 100%;
    }

    .donation-banner-label {
        align-self: center;
        text-align: center;
        font-size: 18px;
    }

    .donation-banner-title {
        font-size: 16px;
        text-align: center;
        line-height: 1.4;
    }

    .donation-banner-button {
        align-self: center;
        height: 38px;
        padding: 0 25px;
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .donation-banner-icon {
        display: none;
    }

    .donation-details {
        padding: 60px 20px;
    }

    .donation-details-title {
        font-size: 28px;
        margin-bottom: 20px;
        color: var(--primary-gold);
    }

    .donation-methods {
        gap: 20px;
        margin-bottom: 20px;
        align-items: center;
    }

    .donation-method {
        max-width: 100%;
    }

    .donation-tax-text {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary-gold);
    }

    .donation-method-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .donation-asterisk {
        font-size: 22px;
        font-weight: 700;
    }

    .donation-method-subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .donation-field {
        font-size: 16px;
        padding: 0;
        margin-bottom: 5px;
    }

    .belief-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding: 0 15px;
        color: #A58449;
    }

    .belief-statement {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0 15px;
        line-height: 1.2;
    }

    .activities-grid {
        gap: 0;
    }

    /* Override padding from 768px media query - remove all spacing between image and text */
    .activity-item.image-only {
        padding: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        box-shadow: none !important;
    }

    .activity-item.text-only {
        min-height: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
        box-shadow: none !important;
    }

    /* Card 1: img1 (DOM:1) + text1 (DOM:2) */
    .activity-item.image-only:nth-child(1) {
        background-color: var(--white);
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        overflow: hidden;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: none;
        padding: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .activity-item.image-only:nth-child(1) .activity-image,
    .activity-item.image-only:nth-child(1) .activity-img,
    .activity-item.image-only:nth-child(1) .image-placeholder {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .activity-item.text-only:nth-child(2) {
        background-color: var(--white);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
        padding: 0 20px 20px 20px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    /* Card 2: img2 (DOM:4) + text2 (DOM:3) */
    .activity-item.image-only:nth-child(4) {
        background-color: var(--white);
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        overflow: hidden;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: none;
        padding: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .activity-item.image-only:nth-child(4) .activity-image,
    .activity-item.image-only:nth-child(4) .activity-img,
    .activity-item.image-only:nth-child(4) .image-placeholder {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .activity-item.text-only:nth-child(3) {
        background-color: var(--white);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
        padding: 0 20px 20px 20px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    /* Card 3: img3 (DOM:5) + text3 (DOM:6) */
    .activity-item.image-only:nth-child(5) {
        background-color: var(--white);
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        overflow: hidden;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: none;
        padding: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .activity-item.image-only:nth-child(5) .activity-image,
    .activity-item.image-only:nth-child(5) .activity-img,
    .activity-item.image-only:nth-child(5) .image-placeholder {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .activity-item.text-only:nth-child(6) {
        background-color: var(--white);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
        padding: 0 20px 20px 20px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    /* Card 4: img4 (DOM:8) + text4 (DOM:7) */
    .activity-item.image-only:nth-child(8) {
        background-color: var(--white);
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        overflow: hidden;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: none;
        padding: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .activity-item.image-only:nth-child(8) .activity-image,
    .activity-item.image-only:nth-child(8) .activity-img,
    .activity-item.image-only:nth-child(8) .image-placeholder {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .activity-item.text-only:nth-child(7) {
        background-color: var(--white);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
        padding: 0 20px 20px 20px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .activity-text h3 {
        font-size: 20px;
    }

    .activity-text p {
        font-size: 14px;
    }

    .mission-title {
        font-size: 24px;
        color: #A58449;
    }

    .mission-text {
        font-size: 11px;
        text-align: right;
    }

    .container {
        padding: 0 15px;
    }

    .contact {
        padding: 50px 20px;
    }

    .contact-title {
        font-size: 24px;
        margin-bottom: 20px;
        color: #A58449;
    }

    .contact-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .contact-form {
        max-width: 100%;
        gap: 10px;
        padding: 25px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input,
    .form-textarea {
        font-size: 13px;
        padding: 10px 14px;
    }

    .btn-send {
        height: 36px;
        padding: 0 20px;
        font-size: 13px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-footer-message {
        font-size: 12px;
    }

    .stat-label {
        font-size: 14px;
    }

    .mission-title {
        padding: 0 20px;
    }

    .values-text {
        padding: 0 20px;
    }

    .cta-title {
        padding: 0 20px;
    }

    .cta-subtitle {
        padding: 0 20px;
    }

    .belief {
        padding: 50px 0;
    }

    .belief-title {
        padding: 0 15px;
    }

    .belief-statement {
        padding: 0 15px;
    }

    .donation-details {
        padding: 50px 20px;
    }
}

/* Donation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--deep-purple);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-title {
    font-family: "Bona Nova", serif;
    font-size: 28px;
    color: var(--deep-purple);
    margin-bottom: 5px;
}

.modal-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: var(--text-dark);
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--deep-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.modal-option:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-option-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.modal-option-price {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-purple);
}