/* ===================================
   KNOOZ MINISTRY - MAIN STYLESHEET
   Modern, Clean, Elegant Arabic (RTL) Design
   =================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #B99359;
    --primary-dark: #9A7A47;
    --primary-light: #D4B68C;
    --secondary-color: #212529;
    --accent-color: #F8F9FA;
    --text-dark: #212529;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --gold: #B99359;
    --dark-blue: #1A1F2E;
    --light-gray: #F5F5F5;
    --border-color: #DEE2E6;
    --success: #28A745;
    --danger: #DC3545;
    
    /* Fonts */
    --font-primary: 'Cairo', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
}

/* Extra safety against mobile horizontal overflow */
html, body {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== SECTION SPACING ===== */
section {
    padding: var(--spacing-xl) 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    text-align: center;
    cursor: pointer;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 70px;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
    background: var(--light-gray);
    padding: 0.25rem;
    border-radius: 25px;
}

.lang-btn {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.lang-btn:hover {
    background: rgba(185, 147, 89, 0.1);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Remove top spacing under fixed header for hero slider */
.hero-slider {
    padding-top: 0;
}

[dir="ltr"] .lang-switcher {
    margin-right: 0;
    margin-left: 1rem;
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.75rem 1.5rem;
    transition: var(--transition-fast);
}

.dropdown-menu li:hover {
    background: var(--light-gray);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--primary-color);
}

.slider-btn.prev {
    right: 2rem;
}

.slider-btn.next {
    left: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Hero Glass Panel and Actions */
.glass-panel {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--light-gray);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.video-container iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.video-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.video-link:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    cursor: pointer;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-link:hover .video-thumbnail img {
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(185, 147, 89, 0.95);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.play-button i {
    font-size: 2rem;
}

.video-link:hover .play-button {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(185, 147, 89, 0.5);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
}

.section-title.with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.section-title.with-icon i {
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ===== SERVICE BOXES ===== */
.service-boxes {
    background: var(--white);
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Cards - Clickable */
.service-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 28px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: visible;
    cursor: pointer;
    min-height: 320px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(
        135deg,
        #D4AF37 0%,
        #FFD700 25%,
        #B8935A 50%,
        #D4AF37 75%,
        #C9A961 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: all 0.5s ease;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.service-card:hover::before {
    opacity: 1;
    padding: 4px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    animation: gradientShift 2s ease infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -50px;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -2;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    background: linear-gradient(145deg, #ffffff 0%, #fffef9 100%);
}

.service-card:active {
    transform: translateY(-5px) scale(0.98);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.box-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 
        0 10px 25px rgba(185, 147, 89, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.1),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.1);
}

.box-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent, rgba(255,255,255,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
}

.box-icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .box-icon {
    transform: scale(1.15) translateY(-5px) rotateZ(5deg);
    box-shadow: 
        0 20px 40px rgba(185, 147, 89, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(185, 147, 89, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, var(--primary-color) 100%);
}

.service-card:hover .box-icon::after {
    opacity: 1;
}

.box-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.card-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.service-card:hover .card-arrow {
    gap: 1rem;
    transform: translateX(-5px);
}

/* Ripple Effect for Cards */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(185, 147, 89, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Legacy support for old class name */
.service-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    min-height: 320px;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.box-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.box-link:hover {
    gap: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.1), rgba(185, 147, 89, 0.05));
    text-align: center;
}

.cta-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== QUICK VALUE STRIP ===== */
.value-strip {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.value-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-color) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateX(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(185, 147, 89, 0.15);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.15), rgba(185, 147, 89, 0.05));
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(185, 147, 89, 0.1);
}

.value-item:hover i {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(185, 147, 89, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(185, 147, 89, 0.28), transparent 55%),
        radial-gradient(900px 520px at 10% 10%, rgba(185, 147, 89, 0.18), transparent 60%),
        linear-gradient(180deg, #141A27 0%, var(--dark-blue) 65%, #121726 100%);
    color: var(--white);
    padding: 4rem 0 1.25rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 35%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 1.05fr;
    gap: 2.25rem;
    margin-bottom: 2.25rem;
}

.footer-section {
    min-width: 0;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    letter-spacing: 0.2px;
}

.footer-section h4::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 0.75rem;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary-color), rgba(185, 147, 89, 0.25));
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.footer-logo h3 {
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer a:focus-visible {
    outline: 3px solid rgba(185, 147, 89, 0.8);
    outline-offset: 3px;
    border-radius: 10px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.78);
    transition: var(--transition-normal);
    padding: 0.15rem 0;
    min-width: 0;
}

.footer-links a::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(185, 147, 89, 0.35);
    box-shadow: 0 0 0 3px rgba(185, 147, 89, 0.12);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

.footer-links a:hover::before {
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 147, 89, 0.22);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    min-width: 0;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,0.78);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent),
        linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 25px rgba(185, 147, 89, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(185, 147, 89, 0.3);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i {
    transform: scale(1.2) rotate(10deg);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: unset;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.65);
}

.footer-bottom .footer-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom .footer-meta a {
    color: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
}

.footer-bottom .footer-meta a:hover {
    color: var(--white);
    border-color: rgba(185, 147, 89, 0.55);
    background: rgba(185, 147, 89, 0.16);
}

/* Footer responsiveness */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 3rem 0 1.25rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-gray); }

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-cards {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-card.active { display: block; animation: fadeInUp 0.5s ease; }

.testimonial-card .quote {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    color: var(--text-light);
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn.prev { right: -1.5rem; }
.testimonial-btn.next { left: -1.5rem; }

.testimonial-dots {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
}

.testimonial-dot.active { background: var(--primary-color); width: 22px; border-radius: 6px; }

/* ===== PARTNERS LOGOS STRIP ===== */
.partners { background: var(--white); padding: 2rem 0; }

.logos-strip { overflow: hidden; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 0.75rem 0; }

.logos-track {
    display: flex;
    gap: 2rem;
    animation: scrollX 30s linear infinite;
}

.logos-strip:hover .logos-track,
.logos-strip:focus-within .logos-track { animation-play-state: paused; }

.logo-item {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    background: var(--accent-color);
    min-width: 100px;
    text-align: center;
}

@keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SUPPORT CTA ===== */
.support-cta {
    background: linear-gradient(135deg, rgba(185,147,89,0.08), rgba(33,37,41,0.04));
    padding: 2.5rem 0;
}

.support-cta-content {
    text-align: center;
}

.support-cta-content h3 { margin-bottom: 0.5rem; }
.support-cta-content p { margin-bottom: 1rem; }

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 55px;
    height: 55px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent),
        linear-gradient(135deg, #FFD700 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: 
        0 8px 25px rgba(185, 147, 89, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 5px rgba(255, 255, 255, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    overflow: hidden;
}

.scroll-top::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
    animation: scrollBtnShine 3s linear infinite;
}

@keyframes scrollBtnShine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.scroll-top i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(185, 147, 89, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(185, 147, 89, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-top:active {
    transform: translateY(-5px) scale(1.05);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.9;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-section {
    background: var(--light-gray);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.mission-text h2 {
    margin-bottom: 1.5rem;
}

.mission-list {
    margin-top: 2rem;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.06), transparent);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

.mission-list li:hover {
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.12), rgba(185, 147, 89, 0.05));
    transform: translateX(-5px);
    border-right-color: var(--primary-color);
}

.mission-list i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.15), rgba(185, 147, 89, 0.08));
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(185, 147, 89, 0.12);
    transition: all 0.3s ease;
}

.mission-list li:hover i {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(185, 147, 89, 0.3);
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 75px;
    height: 75px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent),
        linear-gradient(135deg, #FFD700, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 25px rgba(185, 147, 89, 0.4),
        0 4px 12px rgba(0,0,0,0.15),
        inset 0 2px 5px rgba(255, 255, 255, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.timeline-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 12px 35px rgba(185, 147, 89, 0.5),
        0 6px 18px rgba(0,0,0,0.2),
        0 0 30px rgba(185, 147, 89, 0.3);
}

.timeline-item:hover .timeline-icon::before {
    opacity: 1;
}

.timeline-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* ===== LEADERS PAGE ===== */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(185, 147, 89, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-overlay .social-links {
    justify-content: center;
}

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

.leader-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.join-team-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.join-team-content h2 {
    color: var(--white);
}

.join-team-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== VISION PAGE ===== */
.bible-verse-section {
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.1), rgba(185, 147, 89, 0.05));
}

.vision-modern {
    position: relative;
}

.vision-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(800px 300px at 80% 0%, rgba(185,147,89,0.09), transparent 60%),
      radial-gradient(600px 240px at 10% 100%, rgba(26,31,46,0.06), transparent 55%);
    pointer-events: none;
}

.verse-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(125deg, rgba(255,255,255,0.65), rgba(255,255,255,0.45));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.2rem 3rem;
    border-radius: 26px;
    box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.verse-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 1.8rem;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 70%),
        linear-gradient(135deg, #FFD700 0%, var(--primary-light) 30%, var(--primary-color) 70%, var(--primary-dark) 100%);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--white);
    box-shadow: 
        0 10px 30px rgba(185, 147, 89, 0.4),
        0 5px 15px rgba(0,0,0,0.15),
        inset 0 2px 5px rgba(255, 255, 255, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: iconPulse 3s ease-in-out infinite;
}

.verse-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.4) 90deg,
        transparent 180deg
    );
    animation: iconRotate 4s linear infinite;
}

.verse-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(185, 147, 89, 0.4),
            0 5px 15px rgba(0,0,0,0.15);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(185, 147, 89, 0.5),
            0 8px 20px rgba(0,0,0,0.2),
            0 0 30px rgba(185, 147, 89, 0.3);
    }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.verse-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.8rem;
    letter-spacing: .5px;
}

.verse-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.4rem;
    position: relative;
}

.verse-reference {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .8px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vision-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2.6rem 2.4rem;
    border-radius: 24px;
    box-shadow: 0 10px 34px -10px rgba(0,0,0,0.18);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px -12px rgba(0,0,0,0.22);
}

.vision-card.full-width {
    grid-column: 1 / -1;
}

.card-icon {
    width: 85px;
    height: 85px;
    background: 
        linear-gradient(145deg, #FFD700 0%, var(--primary-color) 40%, var(--primary-dark) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.6rem;
    box-shadow: 
        0 10px 25px rgba(185, 147, 89, 0.3),
        0 5px 12px rgba(0,0,0,0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 15px 35px rgba(185, 147, 89, 0.4),
        0 8px 18px rgba(0,0,0,0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(185, 147, 89, 0.2);
}

.vision-card:hover .card-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.card-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.vision-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.3rem;
    margin: 2.2rem 0 1.4rem;
}

.aspect {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 1.5rem 1.2rem;
    background: linear-gradient(145deg, #FFFFFF, var(--accent-color));
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.aspect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.aspect:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(185, 147, 89, 0.4),
        0 6px 18px rgba(0,0,0,0.2);
    border-color: transparent;
}

.aspect:hover::before {
    opacity: 1;
}

.aspect i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.12), rgba(185, 147, 89, 0.05));
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(185, 147, 89, 0.15);
    position: relative;
    z-index: 1;
}

.aspect:hover i {
    color: var(--white);
    transform: scale(1.15) rotate(-10deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.aspect span {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.vision-goal {
    margin-top: 1.6rem;
    padding: 1.35rem 1.4rem;
    background: linear-gradient(120deg, var(--accent-color), #fff);
    border-radius: 18px;
    border-right: 5px solid var(--primary-color);
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    background: var(--light-gray);
}

.journey-steps {
    max-width: 900px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    gap: 1.9rem;
    align-items: center;
    margin-bottom: 1.8rem;
    padding: 1.85rem 1.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border-radius: 24px;
    box-shadow: 0 8px 30px -10px rgba(0,0,0,0.16);
    transition: var(--transition-normal);
    position: relative;
}

.journey-step:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 42px -12px rgba(0,0,0,0.22);
}

.step-number {
    width: 75px;
    height: 75px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent),
        linear-gradient(145deg, #FFD700 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 
        0 10px 28px rgba(185, 147, 89, 0.4),
        0 5px 14px rgba(0,0,0,0.18),
        inset 0 2px 6px rgba(255, 255, 255, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
}

.journey-step:hover .step-number {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 
        0 15px 38px rgba(185, 147, 89, 0.5),
        0 8px 20px rgba(0,0,0,0.22),
        0 0 30px rgba(185, 147, 89, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.impact-image img {
    border-radius: 26px;
    box-shadow: 0 14px 46px -14px rgba(0,0,0,0.28);
    filter: saturate(1.05) contrast(1.02);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-stats .stat {
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.impact-stats h4 {
    font-size: 2.3rem;
    color: var(--primary-dark);
    letter-spacing: .5px;
}

/* ===== VALUES PAGE ===== */
.values-list {
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.value-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-xl);
}

.value-number {
    width: 85px;
    height: 85px;
    background: 
        linear-gradient(135deg, #FFD700 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(185, 147, 89, 0.35),
        0 4px 12px rgba(0,0,0,0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.25),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: valueShine 3s linear infinite;
}

@keyframes valueShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.value-item:hover .value-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 12px 35px rgba(185, 147, 89, 0.45),
        0 6px 18px rgba(0,0,0,0.2),
        0 0 30px rgba(185, 147, 89, 0.25);
}

.value-content {
    flex: 1;
}

.value-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, 
        rgba(185, 147, 89, 0.1) 0%, 
        rgba(185, 147, 89, 0.05) 100%);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    box-shadow: 
        0 6px 20px rgba(185, 147, 89, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(185, 147, 89, 0.1);
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.value-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-content:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 10px 30px rgba(185, 147, 89, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.value-content:hover .value-icon::before {
    opacity: 1;
}

.value-content:hover .value-icon i {
    color: var(--white);
}

.value-content h3 {
    margin-bottom: 1rem;
}

.core-beliefs-section {
    background: var(--light-gray);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.belief-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.belief-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.belief-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: 
        linear-gradient(135deg, #FFD700 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 
        0 10px 30px rgba(185, 147, 89, 0.35),
        0 5px 15px rgba(0,0,0,0.12),
        inset 0 2px 8px rgba(255, 255, 255, 0.25),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.belief-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 24px;
    opacity: 0.3;
}

.belief-icon::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
    border-radius: 20px;
}

.belief-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}

.belief-card:hover .belief-icon {
    transform: scale(1.15) translateY(-8px) rotate(-5deg);
    box-shadow: 
        0 15px 40px rgba(185, 147, 89, 0.45),
        0 8px 20px rgba(0,0,0,0.18),
        0 0 35px rgba(185, 147, 89, 0.3);
}

.commitment-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.commitment-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.commitment-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem;
    background: 
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent),
        linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: 
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent),
        linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.feature i {
    font-size: 1.8rem;
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.feature span {
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    background: var(--light-gray);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-overview-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-overview-card .card-icon {
    margin: 0 auto 1.5rem;
}

.card-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Children Services */
.children-services,
.women-services,
.servants-services {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.service-detail.reverse .service-content {
    grid-template-columns: 1.5fr 1fr;
}

.service-detail.reverse .service-image {
    order: 2;
}

.service-detail.reverse .service-text {
    order: 1;
}

.service-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}

.service-text h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-text h3 i {
    color: var(--primary-color);
}

.sub-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
}

.sub-service h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-list {
    margin: 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-list li:hover {
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.06), transparent);
    transform: translateX(-5px);
}

.service-list i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.12), rgba(185, 147, 89, 0.06));
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(185, 147, 89, 0.1);
}

.service-list li:hover i {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(185, 147, 89, 0.25);
}

.service-note {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 1.8rem;
    background: 
        linear-gradient(135deg, rgba(185, 147, 89, 0.12) 0%, rgba(185, 147, 89, 0.06) 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(185, 147, 89, 0.15);
    position: relative;
    overflow: hidden;
}

.service-note::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(185, 147, 89, 0.15), transparent 70%);
    border-radius: 50%;
}

.service-note i {
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.2), rgba(185, 147, 89, 0.1));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(185, 147, 89, 0.2);
    position: relative;
    z-index: 1;
}

.service-note p {
    margin: 0;
    color: var(--text-dark);
}

/* Women Services */
.women-cards {
    display: grid;
    gap: 3rem;
}

.women-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.women-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.women-card .card-image {
    height: 300px;
    overflow: hidden;
}

.women-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.women-card:hover .card-image img {
    transform: scale(1.1);
}

.women-card .card-content {
    padding: 2.5rem;
}

.women-card .card-content h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.women-card .card-content h3 i {
    color: var(--primary-color);
}

/* Servants Services */
.servants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.servant-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.servant-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.servant-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 70%),
        linear-gradient(135deg, #FFD700 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 
        0 10px 30px rgba(185, 147, 89, 0.4),
        0 5px 15px rgba(0,0,0,0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.25),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.servant-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 255, 255, 0.4) 60deg,
        transparent 120deg
    );
    animation: servantIconRotate 3s linear infinite;
    opacity: 0.5;
}

@keyframes servantIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.servant-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.servant-card:hover .servant-icon {
    transform: scale(1.15) translateY(-5px) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(185, 147, 89, 0.5),
        0 8px 20px rgba(0,0,0,0.2),
        0 0 35px rgba(185, 147, 89, 0.35);
}

.servant-content ul {
    margin: 1.5rem 0;
}

.servant-content ul li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.servant-content ul i {
    color: var(--primary-color);
    margin-top: 3px;
}

.servant-content .note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
    font-style: italic;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.info-items {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent),
        linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5),
        inset 0 -1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.5s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.info-item:hover .info-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.info-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.social-media h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.12), rgba(185, 147, 89, 0.06));
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(185, 147, 89, 0.1);
    transition: all 0.3s ease;
}

.form-group.focused label i,
.form-group:hover label i {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(185, 147, 89, 0.25);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button[type="submit"] {
    width: 100%;
}

.form-success {
    display: none;
    padding: 2rem;
    background: var(--success);
    color: var(--white);
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Donation Section */
.donation-section {
    background: var(--light-gray);
}

.donation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.donation-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.donation-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 1.5rem;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent),
        linear-gradient(135deg, #FFD700 0%, var(--primary-color) 40%, var(--primary-dark) 100%);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: var(--white);
    box-shadow: 
        0 12px 35px rgba(185, 147, 89, 0.4),
        0 6px 18px rgba(0,0,0,0.15),
        inset 0 3px 10px rgba(255, 255, 255, 0.25),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: donationPulse 2s ease-in-out infinite;
}

.donation-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent 90deg,
        transparent 180deg,
        rgba(255, 255, 255, 0.2),
        transparent 270deg
    );
    animation: donationRotate 4s linear infinite;
}

@keyframes donationPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 12px 35px rgba(185, 147, 89, 0.4),
            0 6px 18px rgba(0,0,0,0.15);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 16px 45px rgba(185, 147, 89, 0.5),
            0 8px 24px rgba(0,0,0,0.2),
            0 0 40px rgba(185, 147, 89, 0.35);
    }
}

@keyframes donationRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.donation-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.donation-card:hover .donation-icon {
    transform: scale(1.15) translateY(-8px);
    animation: none;
    box-shadow: 
        0 18px 50px rgba(185, 147, 89, 0.55),
        0 10px 28px rgba(0,0,0,0.25),
        0 0 50px rgba(185, 147, 89, 0.4);
}

.donation-details {
    margin-top: 1.5rem;
}

.donation-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donation-note {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.donation-info {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.2rem;
    background: 
        linear-gradient(135deg, rgba(185, 147, 89, 0.12) 0%, rgba(185, 147, 89, 0.06) 100%);
    border-radius: 18px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(185, 147, 89, 0.15);
    position: relative;
    overflow: hidden;
}

.donation-info::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(185, 147, 89, 0.2), transparent 70%);
    border-radius: 50%;
}

.donation-info i {
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.2), rgba(185, 147, 89, 0.1));
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(185, 147, 89, 0.2);
    position: relative;
    z-index: 1;
    animation: infoIconPulse 2s ease-in-out infinite;
}

@keyframes infoIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.donation-info p {
    margin: 0;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Map Section */
.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.12), rgba(185, 147, 89, 0.06));
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(185, 147, 89, 0.15);
}

.faq-item:hover .faq-question i {
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.2), rgba(185, 147, 89, 0.1));
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(185, 147, 89, 0.25);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg) scale(1.05);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 
        0 5px 15px rgba(185, 147, 89, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    /* Fix mobile header layout */
    .navbar {
        padding: 0.5rem 0;
        min-height: 60px;
    }
    
    .logo img {
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        color: var(--text-dark);
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: 0;
        width: 280px;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0;
        transform: translateX(100%);
        visibility: hidden;
        will-change: transform;
        max-width: 100vw;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-right: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    /* Language switcher mobile */
    .lang-switcher {
        margin: 1rem 0;
        justify-content: center;
    }
    
    /* Hero slider mobile adjustment */
    .hero-slider {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }
    
    .modern-hero {
        margin-top: 60px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .mission-content,
    .impact-content,
    .service-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse .service-image,
    .service-detail.reverse .service-text {
        order: 0;
    }
    
    .servants-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        position: static;
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-item {
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .boxes-grid,
    .about-boxes,
    .leaders-grid,
    .vision-aspects,
    .beliefs-grid,
    .services-cards,
    .donation-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-btn.prev {
        right: 1rem;
    }
    
    .slider-btn.next {
        left: 1rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item,
    .journey-step {
        flex-direction: column;
        text-align: center;
    }
    
    .scroll-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .mobile-menu-btn,
    .slider-btn,
    .slider-dots,
    .scroll-top,
    .social-links {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Journey timeline responsive layout */
.journey-timeline { margin-top: 0.5rem; }

@media (min-width: 992px) {
    .journey-timeline {
        position: relative;
        padding: 2rem 0;
    }
    .journey-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 2px;
        background: var(--border-color);
    }
    .journey-timeline .journey-step {
        width: 48%;
    }
    .journey-timeline .journey-step:nth-child(odd) {
        margin-left: auto; /* align to right side */
    }
    .journey-timeline .journey-step:nth-child(even) {
        margin-right: auto; /* align to left side */
    }
    .journey-timeline .journey-step::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--primary-color);
        border: 3px solid var(--white);
        box-shadow: 0 0 0 3px rgba(185,147,89,0.15);
    }
    .journey-timeline .journey-step:nth-child(odd)::after {
        left: -7px; /* connect to center line */
    }
    .journey-timeline .journey-step:nth-child(even)::after {
        right: -7px; /* connect to center line */
    }
}

/* ===== MODERN PAGES DESIGN ===== */

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hero uses a subtle dark overlay over a relevant background image */
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 100%),
        url('../media/womans.jpg') center/cover no-repeat;
    overflow: hidden;
    margin-top: 70px;
}

.modern-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(185,147,89,0.25) 0%, rgba(26,31,46,0.15) 100%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-text {
    text-align: center;
    color: var(--white);
    /* Glass card for better readability */
    max-width: 880px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Decorative wave at the bottom of hero */
.modern-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,64L80,53.3C160,43,320,21,480,26.7C640,32,800,64,960,69.3C1120,75,1280,53,1360,42.7L1440,32L1440,80L1360,80C1280,80,1120,80,960,80C800,80,640,80,480,80C320,80,160,80,80,80L0,80Z"/></svg>') center/cover no-repeat;
}

/* Modern Services Section */
.modern-services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card-modern {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(185, 147, 89, 0.1);
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(185, 147, 89, 0.2);
    border-color: var(--primary-color);
}

.service-card-modern:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 147, 89, 0.8), rgba(154, 122, 71, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card-modern:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.service-card-modern:hover .card-icon {
    transform: scale(1);
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.card-body {
    padding: 2rem;
    background: linear-gradient(180deg, var(--white) 0%, rgba(248, 249, 250, 0.5) 100%);
}

.card-body h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card-modern:hover .card-body h3 {
    color: var(--primary-color);
}

.card-body p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Modern CTA Section */
.modern-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.modern-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.modern-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.modern-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
    font-size: 2rem;
    color: var(--white);
}

.modern-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modern-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.modern-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modern-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.modern-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.modern-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.modern-cta .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.modern-cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 40vh;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-text {
        padding: 1rem 1.25rem;
        border-radius: 16px;
        background: rgba(255,255,255,0.06);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .modern-services {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-image-wrapper {
        height: 220px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .modern-cta {
        padding: 3rem 0;
    }
    
    .modern-cta h2 {
        font-size: 2rem;
    }
    
    .modern-cta p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .modern-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .modern-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
    
    .modern-cta h2 {
        font-size: 1.75rem;
    }
    
    .modern-cta p {
        font-size: 1rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
}

/* ===== LTR (ENGLISH) LANGUAGE SUPPORT ===== */
[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

/* Navigation */
[dir="ltr"] .navbar {
    flex-direction: row;
}

[dir="ltr"] .logo {
    margin-right: auto;
    margin-left: 0;
}

[dir="ltr"] .nav-menu {
    direction: ltr;
}

[dir="ltr"] .nav-menu a::after {
    right: auto;
    left: 0;
}

[dir="ltr"] .dropdown-menu {
    right: auto;
    left: 0;
}

[dir="ltr"] .lang-switcher {
    margin-right: 0;
    margin-left: 1rem;
}

/* Mobile Menu LTR */
[dir="ltr"] .nav-menu.active {
    right: auto;
    left: 0;
}

@media (max-width: 992px) {
    [dir="ltr"] .nav-menu {
        right: auto;
        left: 0;
        transform: translateX(-110%);
    }
    
    [dir="ltr"] .nav-menu.active {
        transform: translateX(0);
    }
}

/* Slider Buttons LTR */
[dir="ltr"] .slider-btn.prev {
    right: auto;
    left: 2rem;
}

[dir="ltr"] .slider-btn.next {
    left: auto;
    right: 2rem;
}

[dir="ltr"] .testimonial-btn.prev {
    right: auto;
    left: -1.5rem;
}

[dir="ltr"] .testimonial-btn.next {
    left: auto;
    right: -1.5rem;
}

/* Section Title */
[dir="ltr"] .section-title::after {
    right: auto;
    left: 50%;
}

/* Value Items and Lists */
[dir="ltr"] .value-item::before {
    left: auto;
    right: 0;
}

[dir="ltr"] .value-item:hover {
    transform: translateX(5px);
}

[dir="ltr"] .mission-list li {
    border-right: none;
    border-left: 3px solid transparent;
}

[dir="ltr"] .mission-list li:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

[dir="ltr"] .service-list li:hover {
    transform: translateX(5px);
}

/* Footer Links */
[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

/* Scroll Top Button */
[dir="ltr"] .scroll-top {
    left: auto;
    right: 2rem;
}

@media (max-width: 480px) {
    [dir="ltr"] .scroll-top {
        left: auto;
        right: 1rem;
    }
}

/* Timeline */
[dir="ltr"] .timeline::before {
    right: auto;
    left: 50%;
}

[dir="ltr"] .timeline-item {
    flex-direction: row;
}

@media (max-width: 992px) {
    [dir="ltr"] .timeline::before {
        right: auto;
        left: 30px;
    }
    
    [dir="ltr"] .timeline-item {
        padding-right: 0;
        padding-left: 60px;
    }
}

/* Sub Service */
[dir="ltr"] .sub-service {
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

[dir="ltr"] .servant-content .note {
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

/* Vision Goal */
[dir="ltr"] .vision-goal {
    border-right: none;
    border-left: 5px solid var(--primary-color);
}

/* Donation Dropdown Menu */
[dir="ltr"] .dropdown-menu {
    text-align: left;
}

/* Card Arrow */
[dir="ltr"] .card-arrow,
[dir="ltr"] .box-link {
    flex-direction: row-reverse;
}

[dir="ltr"] .service-card:hover .card-arrow {
    transform: translateX(5px);
}

[dir="ltr"] .box-link:hover {
    gap: 1rem;
}

/* Alignment Fixes */
[dir="ltr"] .section-header,
[dir="ltr"] .cta-section,
[dir="ltr"] .support-cta,
[dir="ltr"] .hero-text,
[dir="ltr"] .modern-cta .cta-content {
    text-align: center;
}

[dir="ltr"] .service-card,
[dir="ltr"] .about-box,
[dir="ltr"] .leader-info,
[dir="ltr"] .belief-card,
[dir="ltr"] .commitment-section,
[dir="ltr"] .servant-card,
[dir="ltr"] .donation-card {
    text-align: center;
}

[dir="ltr"] .service-text,
[dir="ltr"] .mission-text,
[dir="ltr"] .impact-text,
[dir="ltr"] .value-content,
[dir="ltr"] .step-content,
[dir="ltr"] .about-intro {
    text-align: left;
}

/* Journey Steps */
[dir="ltr"] .journey-step:hover {
    transform: translateX(8px);
}

/* FAQ */
[dir="ltr"] .faq-question {
    flex-direction: row;
}

/* Contact Info */
[dir="ltr"] .info-item {
    flex-direction: row;
}

/* Footer Logo */
[dir="ltr"] .footer-logo {
    flex-direction: row;
}

/* Social Links */
[dir="ltr"] .social-links {
    flex-direction: row;
}

/* Phone Number Direction */
[dir="ltr"] .footer-contact span[dir="ltr"] {
    direction: ltr;
}

/* Service Note */
[dir="ltr"] .service-note {
    flex-direction: row;
}

[dir="ltr"] .donation-info {
    flex-direction: row;
}

/* Value Strip Items */
[dir="ltr"] .value-item {
    flex-direction: row;
}

[dir="ltr"] .feature {
    flex-direction: row;
}

/* Dropdown Menu in Mobile */
@media (max-width: 992px) {
    [dir="ltr"] .dropdown-menu {
        padding-right: 0;
        padding-left: 1rem;
    }
}

/* Hero Actions */
[dir="ltr"] .hero-actions {
    flex-direction: row;
}

/* CTA Buttons */
[dir="ltr"] .cta-buttons {
    flex-direction: row;
}

@media (max-width: 768px) {
    [dir="ltr"] .cta-buttons {
        flex-direction: column;
    }
}

/* Slider Dots Position */
[dir="ltr"] .slider-dots {
    right: auto;
    left: 50%;
}