/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a3a5c;
    --primary-light: #2c5f8a;
    --primary-dark: #0f2440;
    --gold: #c9a84c;
    --gold-light: #e8d08f;
    --cream: #fdf8f0;
    --cream-dark: #f5ead6;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-medium: #555555;
    --text-light: #888888;
    --accent-red: #c0392b;
    --accent-green: #27ae60;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    animation: preloaderPulse 2s ease-in-out infinite;
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.preloader-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 25px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.5s both;
}

.preloader-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.8s both;
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
    animation: fadeInUp 1s ease 1s both;
}

.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    animation: progressLoad 2.5s ease-in-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(201, 168, 76, 0.2); }
}

@keyframes progressLoad {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.08s ease;
}

.custom-cursor.hovering {
    transform: scale(2);
    border-color: var(--gold-light);
    background: rgba(201, 168, 76, 0.1);
}

/* ===== ANIMATED BACKGROUND PARTICLES ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 42px;
    width: 42px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-text span:first-child {
    color: var(--primary);
}

.nav-logo-text span:last-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a {
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 10px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 30px;
}

.nav-donate-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.nav-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

.nav-donate-btn::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 10px;
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, var(--gold) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(15, 36, 64, 0.4) 100%);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 10px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image-main {
    width: 420px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    bottom: 40px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-floating-card.card-2 {
    top: 40px;
    right: -30px;
    text-align: center;
    animation-delay: 2s;
}

.hero-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-card-icon.green {
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-green);
}

.hero-card-icon.gold {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.hero-card-text span {
    display: block;
}

.hero-card-text span:first-child {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.hero-card-text span:last-child {
    font-size: 0.75rem;
    color: var(--text-light);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.3);
}

.btn-dark:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-dark .section-badge {
    background: rgba(201, 168, 76, 0.15);
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== MISSION CARDS ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    color: var(--gold);
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.mission-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== TRACKING / IMPACT SECTION ===== */
.tracking-section {
    background: var(--cream);
    padding: 100px 0;
}

.tracking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tracking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tracking-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.tracking-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    position: relative;
}

.tracking-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed;
    animation: spinSlow 20s linear infinite;
    opacity: 0.3;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tracking-icon.blue {
    background: rgba(26, 58, 92, 0.1);
    color: var(--primary);
}

.tracking-icon.blue::after { border-color: var(--primary); }

.tracking-icon.gold {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.tracking-icon.gold::after { border-color: var(--gold); }

.tracking-icon.green {
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-green);
}

.tracking-icon.green::after { border-color: var(--accent-green); }

.tracking-icon.red {
    background: rgba(192, 57, 43, 0.1);
    color: var(--accent-red);
}

.tracking-icon.red::after { border-color: var(--accent-red); }

.tracking-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.tracking-label {
    color: var(--text-medium);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.tracking-progress {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.tracking-progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease;
    width: 0;
}

.tracking-progress-bar.blue { background: var(--primary); }
.tracking-progress-bar.gold { background: var(--gold); }
.tracking-progress-bar.green { background: var(--accent-green); }
.tracking-progress-bar.red { background: var(--accent-red); }

/* ===== ABOUT / FOUNDER ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-primary {
    width: 80%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-image-primary img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-primary:hover img {
    transform: scale(1.05);
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    z-index: 3;
}

.about-image-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow);
}

.about-experience-badge span:first-child {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.about-experience-badge span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-content .section-badge {
    display: inline-flex;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--cream);
    border-radius: 10px;
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateX(5px);
}

.about-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.about-feature span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.founder-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.founder-info-text span:first-child {
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
}

.founder-info-text span:last-child {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== SCRIPTURE SECTION ===== */
.scripture-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.scripture-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50px;
    font-size: 20rem;
    font-family: 'Playfair Display', serif;
    color: rgba(201, 168, 76, 0.05);
    line-height: 1;
}

.scripture-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.scripture-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.scripture-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.scripture-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.scripture-ref {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.scripture-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.scripture-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.scripture-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 100px 0;
    background: var(--cream);
}

.video-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.video-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.video-scroll-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.video-card {
    min-width: 350px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.82rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
}

.service-card-body {
    padding: 35px 25px 25px;
}

.service-card-body h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-card-body p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== ARTICLE SECTION ===== */
.article-section {
    padding: 80px 0;
    background: var(--cream);
}

.article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 40px;
}

.article-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-content .section-badge {
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.article-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.03);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 20px 0;
    line-height: 1.8;
}

.footer-brand .nav-logo {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-text span:first-child {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.footer-contact-text span:last-child,
.footer-contact-text a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-contact-text a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom p i {
    color: var(--accent-red);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(26, 58, 92, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ===== PAGE HEADERS ===== */
.page-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.88rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== CHURCH PAGE ===== */
.church-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.church-service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.church-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.church-service-time {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.church-service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.church-service-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ===== COUNSELING PAGE ===== */
.counseling-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.counseling-card {
    display: flex;
    gap: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.counseling-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.counseling-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.counseling-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.counseling-card p {
    color: var(--text-medium);
    font-size: 0.88rem;
}

/* ===== CHARITY PAGE ===== */
.charity-programs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.charity-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.charity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.charity-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.charity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.charity-card:hover .charity-card-image img {
    transform: scale(1.1);
}

.charity-card-body {
    padding: 25px;
}

.charity-card-body h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.charity-card-body p {
    color: var(--text-medium);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.charity-progress {
    margin-bottom: 15px;
}

.charity-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: var(--text-medium);
}

.charity-progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.charity-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    transition: width 2s ease;
}

/* ===== SUPPORT PAGE ===== */
.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.support-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.support-card.featured {
    border-color: var(--gold);
    position: relative;
}

.support-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.support-amount span {
    font-size: 1rem;
    color: var(--text-light);
}

.support-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.support-features {
    text-align: left;
    margin: 25px 0;
}

.support-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-medium);
}

.support-features li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--cream);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-3px);
}

.contact-info-card i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-medium);
    font-size: 0.88rem;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 25px;
}

.team-card-body h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-card-body p {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ===== 3D CARD TILT ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-container { gap: 40px; }
    .hero-image-main { width: 350px; height: 430px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .charity-programs { grid-template-columns: repeat(2, 1fr); }
    .support-options { grid-template-columns: repeat(2, 1fr); }
    .church-services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text-dark) !important;
        font-size: 1rem;
        padding: 12px 30px;
        width: 100%;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero h1 { font-size: 2.5rem; }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-image-main {
        width: 300px;
        height: 370px;
    }

    .hero-floating-card.card-1 { left: 10px; bottom: 20px; }
    .hero-floating-card.card-2 { right: 10px; top: 20px; }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 { font-size: 2.2rem; }

    .mission-grid,
    .services-grid,
    .tracking-grid,
    .charity-programs,
    .support-options,
    .church-services-grid,
    .counseling-types,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .tracking-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .timeline::before { left: 20px; }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot { left: 20px; }

    .cta-content h2 { font-size: 2rem; }

    .page-header h1 { font-size: 2.2rem; }

    .form-row { grid-template-columns: 1fr; }

    .about-features { grid-template-columns: 1fr; }

    .video-card { min-width: 280px; }

    .custom-cursor, .custom-cursor-dot { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-image-main { width: 250px; height: 310px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-floating-card { display: none; }
    .section { padding: 70px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .tracking-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 25px; font-size: 0.85rem; }
    .nav-logo-text span:first-child { font-size: 1rem; }
    .nav-logo img { height: 40px; width: 40px; }
}

/* ===== LOADING STATES ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.page-transition.active {
    transform: scaleY(1);
    transform-origin: top;
}

/* ===== DONATION FORM ===== */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.donation-amount-btn {
    padding: 12px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.donation-amount-btn:hover,
.donation-amount-btn.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info span:first-child {
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
}

.testimonial-author-info span:last-child {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 92, 0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(26, 58, 92, 0.3);
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .donation-amounts { grid-template-columns: repeat(2, 1fr); }
}

/* ===== NEWSLETTER ===== */
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
}