/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7e2b57;
    --primary-dark: #5f1f40;
    --primary-light: #9d4670;
    --secondary-color: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --accent-gold: #d4af37;
    --success-green: #28a745;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(126, 43, 87, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

/* Modern Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(126, 43, 87, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo:hover img {
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover span {
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.donate-btn-nav {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(126, 43, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.donate-btn-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
}

.donate-btn-nav:hover::before {
}

.donate-btn-nav:hover {
    box-shadow: 0 8px 25px rgba(126, 43, 87, 0.4);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 15px;
}

.lang-toggle:hover {
    background: var(--primary-dark);
}

.lang-toggle i {
    font-size: 1.1rem;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/main.jpg') right center/cover;
    opacity: 1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(126, 43, 87, 0.95) 0%, rgba(126, 43, 87, 0.85) 50%, rgba(126, 43, 87, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
    margin: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Nexa Heavy', 'Nexa Bold', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.stat-item:nth-child(2) i {
}

.stat-item:nth-child(3) i {
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}



/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.btn:hover::before {
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 30px;
}

.btn-secondary:hover::after {
}

.btn-secondary:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 43, 87, 0.3);
}

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

.btn-download:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.section-header.visible h2::before {
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header.visible .divider {
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlight-box {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(126, 43, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}



.highlight-box:hover {
    box-shadow: 0 20px 60px rgba(126, 43, 87, 0.5);
}

.highlight-box h3 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.highlight-box h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(126, 43, 87, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.value-item:hover::before {
}

.value-item:hover {
    background: rgba(126, 43, 87, 0.02);
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
}

.about-image:hover img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--text-light);
}

.image-caption i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.profile-cta {
    margin-top: 30px;
    padding: 22px 24px;
    background: rgba(126, 43, 87, 0.04);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.profile-cta p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.profile-cta .btn {
    margin-top: 5px;
}

/* ===================================
   PDF Profile Modal
   =================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content {
    position: relative;
    width: 92%;
    max-width: 960px;
    height: 88vh;
    background: var(--secondary-color);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(24px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.visible .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--bg-gray);
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 18px 18px 0 0;
}

.modal-header h3 {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
}

.modal-close-btn {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 1.8rem;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
}

.modal-close-btn:hover {
    transform: rotate(90deg) scale(1.08);
    background: var(--primary-dark);
}

.pdf-viewer {
    flex: 1;
    padding: 10px 14px 16px;
    background: var(--bg-gray);
    border-radius: 0 0 18px 18px;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(126, 43, 87, 0.1), transparent);
    transform: translateX(-100%);
}

.service-card:hover::after {
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(126, 43, 87, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(126, 43, 87, 0.4));
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.service-card.coming-soon {
    position: relative;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   Schedule Section
   =================================== */
.schedule-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.schedule-card {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 50px rgba(126, 43, 87, 0.4);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.schedule-card:hover {
    box-shadow: 0 25px 80px rgba(126, 43, 87, 0.6);
}

.schedule-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.schedule-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.schedule-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.schedule-features {
    list-style: none;
}

.schedule-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.schedule-features i {
    color: var(--accent-gold);
}

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

.pdf-preview {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pdf-preview:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.pdf-preview i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
}

.pdf-preview p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--secondary-color);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(126, 43, 87, 0.1) 0%, transparent 70%);
    opacity: 0;
}

.team-member:hover::before {
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(126, 43, 87, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    position: relative;
    box-shadow: 0 5px 20px rgba(126, 43, 87, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), 0 0 0 8px rgba(126, 43, 87, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(126, 43, 87, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-gold);
}

.faq-question:hover::before {
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Donate Section
   =================================== */
.donate-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.donate-card {
    background: var(--secondary-color);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.donate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(126, 43, 87, 0.03) 0%, transparent 70%);
}

.donate-card:hover {
}

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

.donate-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.donate-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.donate-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.donation-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.impact-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.impact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.bank-details {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.bank-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 43, 87, 0.05), transparent);
}

.bank-details:hover::before {
}

.bank-details:hover {
    box-shadow: -5px 0 20px rgba(126, 43, 87, 0.1);
}

.bank-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bank-details p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.account-info {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(126, 43, 87, 0.1);
}

.account-info p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.account-info p:last-child {
    margin-bottom: 0;
}

.account-note {
    font-style: italic;
    margin-bottom: 15px;
}

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

.donate-visual {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 3rem;
    color: var(--primary-color);
}

.donate-visual i {
    filter: drop-shadow(0 5px 20px rgba(126, 43, 87, 0.4));
}

.donate-visual i:hover {
}

.donate-visual i:nth-child(2) {
    animation-delay: 0.3s;
}

.donate-visual i:nth-child(3) {
    animation-delay: 0.6s;
}



.donate-action h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.donate-action p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(126, 43, 87, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.contact-card:hover::before {
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(126, 43, 87, 0.2);
    background: var(--secondary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(126, 43, 87, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(126, 43, 87, 0.5), 0 0 0 10px rgba(126, 43, 87, 0.1);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-tagline {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-tagline p {
    margin-bottom: 5px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-col ul li a {
    color: var(--text-white);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(126, 43, 87, 0.4);
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(126, 43, 87, 0.6), 0 0 0 8px rgba(126, 43, 87, 0.1);
}

/* ===================================
   Responsive Design - Mobile First
   =================================== */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .lang-toggle {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1000;
        box-shadow: var(--shadow-lg);
    }

    .logo span {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 50px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item i {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Schedule */
    .schedule-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .schedule-text h2 {
        font-size: 1.8rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    /* Donate */
    .donate-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .donation-impact {
        grid-template-columns: 1fr;
    }

    .donate-header h2 {
        font-size: 1.8rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Scroll to top */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    /* General spacing adjustments */
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .schedule-card {
        padding: 25px;
    }

    .donate-card {
        padding: 25px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Accessibility & UX Improvements
   =================================== */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===================================
   Modern Keyframe Animations
   =================================== */




/* ===================================
   Glassmorphism Effects
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(126, 43, 87, 0.15);
}
















