/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */
   
   :root {
    /* Color Palette - Dark Mode Default */
    --primary: #4169E1; /* Royal Blue */
    --primary-hover: #3152B3;
    --secondary: #ffffff;
    --bg-base: #0a0a0a;
    --bg-surface: #121212;
    --bg-elevated: #1e1e1e;
    --text-primary: #f8f9fa;
    --text-secondary: #a0aab2;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), #86a8e7);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(65, 105, 225, 0.4));
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Helpers */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] {
    --bg-base: #f8f9fc;
    --bg-surface: #ffffff;
    --bg-elevated: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-color: rgba(0, 0, 0, 0.08);
    
    --gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(65, 105, 225, 0.1));
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(65, 105, 225, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* ==========================================================================
   Language Switcher & RTL Support
   ========================================================================== */

html[lang="en"] .lang-ar { display: none !important; }
html[lang="ar"] .lang-en { display: none !important; }

html[lang="ar"] {
    direction: rtl;
}

html[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3, 
html[lang="ar"] h4, 
html[lang="ar"] h5, 
html[lang="ar"] h6,
html[lang="ar"] .btn {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

html[lang="ar"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[lang="ar"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

html[lang="ar"] .logo-ar,
html[lang="ar"] .logo-en {
    display: block !important;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; }

.bg-secondary { background-color: var(--bg-surface); }
.bg-primary { background-color: var(--primary); color: white; }
.text-white, .text-white * { color: white !important; }
.lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Typography & Titles
   ========================================================================== */
   
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(65, 105, 225, 0.4);
    color: white;
}

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

[data-theme="dark"] .btn-outline {
    color: white;
    border-color: white;
}

[data-theme="dark"] .btn-outline:hover {
    background: white;
    color: var(--bg-base);
}

.btn-donate-sm {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
}

.btn-donate-sm:hover {
    background: var(--primary-hover);
    color: white;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-base);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--bg-surface);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-ar {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.logo-en {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-donate-sm):hover {
    color: var(--primary);
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    background: var(--bg-elevated);
    color: var(--primary);
    border-color: var(--primary);
}

.theme-toggle:hover {
    color: var(--primary);
    background: var(--bg-elevated);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(65,105,225,0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.9))
            drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8))
            drop-shadow(0px 0px 25px rgba(255, 255, 255, 0.5));
}

[data-theme="light"] .hero-logo {
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-title .lang-ar,
.hero-title .lang-en {
    display: inline-block;
    padding-bottom: 5px;
    background: linear-gradient(-45deg, #ffffff, #86a8e7, #ffffff, #4169E1);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animated-gradient 6s ease infinite alternate;
    text-shadow: 0 5px 25px rgba(65, 105, 225, 0.4);
}

[data-theme="light"] .hero-title .lang-ar,
[data-theme="light"] .hero-title .lang-en {
    background: linear-gradient(-45deg, #111827, #4169E1, #1a365d, #4169E1);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(65, 105, 225, 0.15);
}

@keyframes animated-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */

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

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    padding: 1.5rem;
    background: var(--bg-surface);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.mv-card i {
    color: var(--primary);
    margin-bottom: 1rem;
}

.mv-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-elevated);
    border-radius: var(--border-radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    text-align: center;
    color: var(--text-secondary);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.value-item {
    background: var(--bg-surface);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-item span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

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

.service-card {
    background: var(--bg-base);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(65, 105, 225, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.project-img-placeholder {
    height: 200px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.project-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
    pointer-events: none;
}

.project-card:hover .project-img-placeholder::after {
    opacity: 0.2;
}

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

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
    border-top: 1px solid var(--border-color);
}

.project-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Impact Section
   ========================================================================== */

.impact {
    position: relative;
    overflow: hidden;
}

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

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-stat span {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    display: block;
}

/* ==========================================================================
   Donate Section
   ========================================================================== */

.donate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donate-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.donate-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.qr-placeholder {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--primary);
}

.qr-placeholder i {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Donate Card styling starts */
.donate-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.donate-card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donate-card-header h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.donate-card-body {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: none;
    flex-grow: 1;
}

.detail-group {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-group .value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    word-break: break-all;
    display: flex;
    align-items: center;
}

.detail-group .value.highlight {
    color: var(--primary);
    font-weight: 600;
}

.copy-value {
    background: var(--bg-elevated);
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem !important;
    border: 1px solid var(--border-color);
}

.cursor-pointer {
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition-fast);
}

.cursor-pointer:hover {
    color: var(--primary-hover);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(65, 105, 225, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item a, .contact-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-base);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--bg-elevated);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.back-to-top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.back-to-top i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.back-to-top:hover {
    color: var(--primary);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: var(--bg-surface);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 992px) {
    .section-padding { padding: 4rem 0; }
    
    .about-grid, .donate-wrapper, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title { font-size: 2.8rem; }
    .en-title { font-size: 1.6rem; }
    
    .about-image-wrapper { min-height: 300px; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links.active { left: 0; }
    
    html[lang="ar"] .nav-links {
        left: auto;
        right: -100%;
    }
    
    html[lang="ar"] .nav-links.active {
        left: auto;
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-links a { font-size: 1.2rem; }
    
    .hero-title { font-size: 2.2rem; }
    .en-title { font-size: 1.3rem; }
    
    .mission-vision { grid-template-columns: 1fr; }
    
    /* Make mobile sticky CTA visible */
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 70px; } /* Space for sticky cta */
}

@media (max-width: 576px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .stat-number { font-size: 2.5rem; }
    .contact-form { padding: 1.5rem; }
}

