/*
Theme Name: AlWahaab For Umrah
Description: A beautiful and elegant theme for AlWahaab Islamic Charity organization focused on enabling sacred journeys through Umrah and Hajj. Features modern design, smooth animations, and responsive layout.
Author: AlWahaab
Version: 1.0.0
Text Domain: alwahaab
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0a0f;
    --secondary: #d4af37;
    --accent: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --exquisite-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    --exquisite-purple: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
    --exquisite-rose: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ec4899 100%);
    --exquisite-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    --exquisite-emerald: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --shadow-exquisite: 0 25px 100px rgba(0,0,0,0.15);
    --shadow-luxury: 0 40px 120px rgba(0,0,0,0.2);
    --shadow-premium: 0 60px 150px rgba(0,0,0,0.25);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.15);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.2);
    --border-radius: 20px;
    --border-radius-luxury: 32px;
    --border-radius-exquisite: 40px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-exquisite: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-luxury: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.8;
    color: var(--primary);
    overflow-x: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%);
    scroll-behavior: smooth;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    transition: var(--transition-luxury);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-exquisite);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(50px) saturate(200%);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    height: 70px;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    animation: fadeInDown 1.2s ease;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-exquisite);
    background: transparent;
    filter: brightness(0) invert(1) saturate(0);
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) saturate(0);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 4rem;
    animation: fadeInDown 1s ease 0.2s backwards;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

nav a:hover {
    color: white;
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.75) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(10, 10, 15, 0.8) 100%),
                url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    animation: slowZoom 30s ease-in-out infinite alternate;
    filter: brightness(0.9) contrast(1.1);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 26, 46, 0.4) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.2;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
    animation: fadeInUp 1.2s ease 0.4s backwards;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 8px 40px rgba(0,0,0,0.4);
    position: relative;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero h1 strong {
    font-weight: 600;
    background: var(--exquisite-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
}

.hero h1 strong::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--exquisite-gold);
    border-radius: 3px;
    opacity: 0.8;
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease 0.6s backwards;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--exquisite-gold);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-luxury);
    animation: fadeInUp 1.2s ease 0.8s backwards;
    box-shadow: var(--shadow-premium);
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.2);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

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

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: var(--shadow-premium), 0 0 60px rgba(212, 175, 55, 0.6);
    border-color: rgba(255,255,255,0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #ffd700 100%);
}

.btn span {
    position: relative;
    z-index: 1;
}

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

.scroll-indicator::before {
    content: '';
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    display: block;
    margin: 0 auto 10px;
}

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

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

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

/* Mission Section */
.mission {
    padding: 8rem 3rem;
    background: linear-gradient(180deg, var(--white) 0%, #fafbfc 100%);
    position: relative;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-image {
    position: relative;
    height: 650px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.mission-image:hover img {
    transform: scale(1.08);
}

.mission-text {
    text-align: center;
}

.mission-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.mission-text h2 strong {
    font-weight: 600;
    background: var(--exquisite-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.mission-text h2 strong::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--exquisite-gold);
    border-radius: 2px;
    opacity: 0.7;
}

.mission-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.mission-text .highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    background: var(--exquisite-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255,255,255,0.5) 100%);
    border-left: 4px solid var(--secondary);
    border-radius: var(--border-radius-luxury);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.mission-text .highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
}

/* Services Section */
.services {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    color: var(--primary);
    margin-bottom: 4rem;
}

.services h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    padding: 0;
    border-radius: var(--border-radius-exquisite);
    overflow: hidden;
    box-shadow: var(--shadow-exquisite);
    transition: var(--transition-luxury);
    border: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--exquisite-gold);
    opacity: 0;
    transition: var(--transition-luxury);
    z-index: 1;
    border-radius: var(--border-radius-exquisite);
}

.service-card:hover {
    transform: translateY(-25px) scale(1.03);
    box-shadow: var(--shadow-premium);
    border-color: var(--secondary);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 3.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 2;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Impact Section */
.impact {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.impact-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.impact h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

.impact h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.stat:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    background: var(--exquisite-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: block;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--exquisite-gold);
    border-radius: 2px;
    opacity: 0.6;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    opacity: 0.98;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gallery Section */
.gallery {
    padding: 6rem 3rem;
    background: var(--white);
}

.gallery-content {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery h2 {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    color: var(--primary);
    margin-bottom: 4rem;
}

.gallery h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Donate Section */
.donate {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
}

.donate-content {
    max-width: 900px;
    margin: 0 auto;
}

.donate h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.donate h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.donate p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.9;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    background: transparent;
    filter: brightness(0) invert(1) saturate(0);
}

footer p {
    opacity: 0.7;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Videos Section */
.videos {
    padding: 10rem 3rem;
    background: var(--white);
}

.videos-content {
    max-width: 1400px;
    margin: 0 auto;
}

.videos h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    color: var(--primary);
    margin-bottom: 6rem;
}

.videos h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 2rem;
}

.video-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.video-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Merchandise Section */
.merchandise {
    padding: 10rem 3rem;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.merchandise-content {
    max-width: 1400px;
    margin: 0 auto;
}

.merchandise h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    color: var(--primary);
    margin-bottom: 6rem;
}

.merchandise h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    max-width: 450px;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-strong);
    border-color: var(--secondary);
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 2rem;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.product-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.add-to-cart {
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.add-to-cart:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Donate Section */
.donate-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    justify-content: center;
    justify-items: center;
}

.donate-option {
    background: var(--white);
    padding: 3.5rem 3rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 450px;
    width: 100%;
    max-width: 450px;
}

.donate-option:hover {
    border-color: var(--secondary);
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255,255,255,1) 100%);
}

.donate-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-option p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 8rem 3rem;
    background: var(--primary);
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact h2 strong {
    font-weight: 700;
    color: var(--secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    opacity: 0.8;
    font-size: 1.05rem;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.15);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 5.5rem;
    }
    
    .logo img {
        height: 45px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 2rem;
    }

    .donate-options {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(30px);
        width: 70%;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 3rem 2rem;
        transition: right 0.4s ease;
        gap: 2rem;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: var(--shadow-strong);
    }

    nav ul.active {
        right: 0;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .donate-options {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

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

    .mission-text h2,
    .services h2,
    .impact h2,
    .gallery h2,
    .donate h2 {
        font-size: 2.2rem;
    }

    .mission-image {
        height: 400px;
    }
}
