﻿/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #7A1F2B;
    --primary-light: #9B2335;
    --primary-dark: #5C1720;
    --accent: #C0C0C0;
    --accent-gold: #B8960C;
    --dark: #1A1A1A;
    --light: #F7F7F7;
    --text: #1A1A1A;
    --text-light: #555555;
    --white: #FFFFFF;
    --border: #E8E8E8;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 6px;
    --transition: all 0.25s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; }
.btn-ghost { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-ghost:hover { background: var(--primary); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text { color: var(--primary); font-size: 1.15rem; font-weight: 800; letter-spacing: -0.3px; }
.logo-sub { color: var(--text-light); font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.nav-actions { display: flex; gap: 10px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--dark); margin: 5px 0;
    transition: var(--transition);
}

/* ===== ALERTS ===== */
.alert { padding: 14px 24px; text-align: center; font-weight: 500; font-size: 0.9rem; }
.alert-success { background: #f0faf4; color: #1a7a40; border-bottom: 1px solid #c3e6cb; }
.alert-error { background: #fff5f5; color: #9b2335; border-bottom: 1px solid #f5c6cb; }
.alert-info { background: #f0f4ff; color: #1a3a7a; border-bottom: 1px solid #b8d4f5; }

/* ===== FOOTER ===== */
.footer { background: #111111; color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.85rem;
}
.social-links a:hover { border-color: var(--primary); color: var(--white); background: var(--primary); }
.footer-links h4, .footer-contact h4 {
    color: var(--white); margin-bottom: 18px;
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 600;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); }
.footer-contact i { color: var(--primary); width: 14px; }
.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    max-width: 100%;
}

/* ===== LOGIN PAGE ===== */
.login-container {
    min-height: 80vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 40px 20px;
    background: var(--light);
}
.login-container h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.login-container form {
    background: var(--white); padding: 40px;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    width: 100%; max-width: 420px;
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 24px;
}
.login-container input {
    padding: 12px 16px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 0.95rem;
    outline: none; transition: var(--transition); font-family: inherit;
}
.login-container input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(122,31,43,0.08); }
.login-container button {
    padding: 13px; background: var(--primary); color: var(--white);
    border: none; border-radius: var(--radius); font-size: 0.95rem;
    font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.login-container button:hover { background: var(--primary-dark); }
.error { color: var(--primary); font-size: 0.88rem; text-align: center; }

/* ===== HERO ===== */
.hero {
    min-height: 88vh;
    background: #0d0d0d;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 55%;
    height: 100%;
    background: #111;
    z-index: 0;
}
.hero-content {
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 1;
    color: var(--white);
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(122,31,43,0.25);
    border: 1px solid rgba(122,31,43,0.5);
    color: #e8a0a8;
    padding: 6px 14px; border-radius: 4px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-content h1 {
    font-size: 3.4rem; font-weight: 800;
    line-height: 1.15; margin-bottom: 24px;
    letter-spacing: -1px; color: var(--white);
}
.highlight { color: var(--primary); }
.hero-content p {
    font-size: 1.05rem; line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 520px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
    height: 88vh;
    background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=800') center/cover no-repeat;
    position: relative;
}
.hero-image::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, #0d0d0d 0%, transparent 40%);
}
.hero-badge {
    position: absolute; bottom: 40px; left: -30px;
    background: var(--white); padding: 20px 24px;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero-badge h4 { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.hero-badge p { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* ===== STATS ===== */
.stats { background: var(--primary); padding: 0; }
.stats-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 36px 24px; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item h2 { font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ===== SECTION SHARED ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-tag {
    display: inline-block;
    color: var(--primary); font-size: 0.78rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 12px;
    padding-left: 0;
}
.section-header h2 { font-size: 2.1rem; color: var(--dark); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.5px; }
.section-header p { color: var(--text-light); font-size: 1rem; max-width: 560px; line-height: 1.7; }
.section-header.centered p { margin: 0 auto; }

/* ===== MISSION ===== */
.mission { padding: 96px 20px; background: var(--white); }
.mission .section-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.mission-text .section-tag { display: block; }
.mission-text h2 { font-size: 2rem; color: var(--dark); margin-bottom: 18px; }
.mission-text p { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; }
.mission-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card {
    background: var(--light); padding: 22px;
    border-radius: var(--radius); border-left: 3px solid var(--primary);
}
.value-card i { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; display: block; }
.value-card h4 { font-size: 0.9rem; margin-bottom: 6px; color: var(--dark); font-weight: 600; }
.value-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROGRAMS ===== */
.programs-section { padding: 96px 20px; background: var(--light); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
    background: var(--white); padding: 32px;
    border-radius: var(--radius); border: 1px solid var(--border);
    transition: var(--transition); position: relative; overflow: hidden;
}
.program-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary); transform: scaleX(0);
    transition: var(--transition); transform-origin: left;
}
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.program-icon {
    width: 48px; height: 48px; background: rgba(122,31,43,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.program-icon i { color: var(--primary); font-size: 1.2rem; }
.program-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--dark); font-weight: 600; }
.program-card p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.7; }

/* ===== NEWS ===== */
.news-section { padding: 96px 20px; background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.news-card-body { padding: 24px; }
.news-date { font-size: 0.78rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.news-card h3 { font-size: 0.98rem; margin-bottom: 10px; color: var(--dark); line-height: 1.5; font-weight: 600; }
.news-card p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.read-more { color: var(--primary); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ===== CTA ===== */
.cta-section { padding: 96px 20px; background: var(--primary); }
.cta-container { max-width: 680px; margin: 0 auto; text-align: center; color: var(--white); }
.cta-container h2 { font-size: 2.2rem; margin-bottom: 16px; font-weight: 700; letter-spacing: -0.5px; }
.cta-container p { opacity: 0.8; margin-bottom: 40px; font-size: 1.05rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header { background: var(--dark); padding: 80px 20px; text-align: center; color: white; }
.page-header-content { max-width: 680px; margin: 0 auto; }
.page-header .section-tag { color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.page-header h1 { font-size: 2.6rem; margin: 0 0 14px; font-weight: 700; letter-spacing: -0.5px; }
.page-header p { font-size: 1rem; opacity: 0.65; line-height: 1.7; }

/* ===== ABOUT STORY ===== */
.about-story { padding: 96px 20px; background: white; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-text .section-tag { display: block; }
.story-text h2 { font-size: 2rem; color: var(--dark); margin: 12px 0 20px; font-weight: 700; }
.story-text p { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; font-size: 0.95rem; }
.highlight-card {
    background: var(--light); padding: 24px; border-radius: var(--radius);
    margin-bottom: 16px; border-left: 3px solid var(--primary);
}
.highlight-card i { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; display: block; }
.highlight-card h3 { font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; font-weight: 600; }
.highlight-card p { color: var(--text-light); font-size: 0.86rem; line-height: 1.7; }

/* ===== VALUES ===== */
.values-section { padding: 96px 20px; background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-item {
    background: white; padding: 32px; border-radius: var(--radius);
    border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-icon {
    width: 56px; height: 56px; background: rgba(122,31,43,0.08);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.value-icon i { color: var(--primary); font-size: 1.3rem; }
.value-item h3 { font-size: 0.95rem; color: var(--dark); margin-bottom: 10px; font-weight: 600; }
.value-item p { color: var(--text-light); font-size: 0.86rem; line-height: 1.7; }

/* ===== IMPACT ===== */
.impact-section { padding: 96px 20px; background: white; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.impact-card {
    background: var(--light); padding: 40px 20px;
    border-radius: var(--radius); border: 1px solid var(--border);
}
.impact-card h2 { font-size: 2.6rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.impact-card p { color: var(--text-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ===== TEAM ===== */
.team-section { padding: 96px 20px; background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-photo { width: 100%; height: 220px; object-fit: cover; }
.team-photo-placeholder {
    width: 100%; height: 220px; background: var(--light);
    display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder i { font-size: 3.5rem; color: var(--accent); }
.team-info { padding: 20px; text-align: center; }
.team-info h3 { font-size: 0.98rem; color: var(--dark); margin-bottom: 5px; font-weight: 600; }
.team-role { color: var(--primary); font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.team-info p { color: var(--text-light); font-size: 0.83rem; line-height: 1.6; margin-bottom: 14px; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a {
    width: 30px; height: 30px; border: 1px solid var(--border);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.78rem; transition: var(--transition);
}
.team-social a:hover { border-color: var(--primary); color: var(--primary); }
.join-team-section { padding: 96px 20px; background: white; text-align: center; }

/* ===== STORIES ===== */
.stories-section { padding: 96px 20px; background: var(--light); }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card {
    background: white; padding: 32px; border-radius: var(--radius);
    border: 1px solid var(--border); transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-lg); }
.story-quote { color: var(--primary); font-size: 1.8rem; margin-bottom: 14px; opacity: 0.4; }
.story-text { color: var(--text-light); font-size: 0.92rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.story-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.story-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.story-avatar-placeholder {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(122,31,43,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.story-avatar-placeholder i { color: var(--primary); font-size: 1rem; }
.story-author h4 { font-size: 0.88rem; color: var(--dark); margin-bottom: 2px; font-weight: 600; }
.story-author span { font-size: 0.78rem; color: var(--primary); font-weight: 500; }

/* ===== GALLERY ===== */
.gallery-section { padding: 96px 20px; background: var(--light); }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-btn {
    padding: 8px 20px; border: 1px solid var(--border);
    background: var(--white); color: var(--text-light);
    border-radius: 4px; font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(26,26,26,0.75);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); padding: 20px; text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: white; font-size: 0.9rem; margin-bottom: 8px; }
.gallery-category {
    background: var(--primary); color: white; padding: 4px 12px;
    border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}
.gallery-empty { text-align: center; padding: 80px 20px; color: var(--text-light); }
.gallery-empty i { font-size: 3.5rem; color: var(--accent); margin-bottom: 20px; display: block; }
.gallery-empty h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; }

/* ===== NEWS PAGE ===== */
.news-page-section { padding: 96px 20px; background: var(--light); }
.news-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-page-card {
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
}
.news-page-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.news-page-image { width: 100%; height: 200px; object-fit: cover; }
.news-page-image-placeholder {
    width: 100%; height: 200px; background: var(--light);
    display: flex; align-items: center; justify-content: center;
}
.news-page-image-placeholder i { font-size: 2.5rem; color: var(--accent); }
.news-page-content { padding: 24px; }
.news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.news-date { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.news-tag {
    background: rgba(122,31,43,0.08); color: var(--primary);
    padding: 3px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}
.news-page-content h3 { font-size: 1rem; color: var(--dark); margin-bottom: 10px; line-height: 1.5; font-weight: 600; }
.news-page-content p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

/* ===== ARTICLE ===== */
.article-section { padding: 96px 20px; background: var(--light); }
.article-container { max-width: 780px; margin: 0 auto; background: white; border-radius: var(--radius); border: 1px solid var(--border); padding: 52px; }
.article-hero-image { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 28px; }
.article-meta { display: flex; gap: 12px; margin-bottom: 28px; }
.article-body { font-size: 0.98rem; line-height: 1.9; color: var(--text); }
.article-body p { margin-bottom: 16px; }

/* ===== APPLY ===== */
.apply-section { padding: 96px 20px; background: var(--light); }
.apply-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.apply-info h2 { font-size: 1.7rem; color: var(--dark); margin-bottom: 16px; font-weight: 700; }
.apply-info > p { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; font-size: 0.93rem; }
.apply-type-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: white; padding: 18px; border-radius: var(--radius);
    border: 1px solid var(--border); margin-bottom: 12px;
}
.apply-type-icon {
    width: 40px; height: 40px; background: rgba(122,31,43,0.08);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.apply-type-icon i { color: var(--primary); font-size: 0.95rem; }
.apply-type-card h4 { color: var(--dark); margin-bottom: 4px; font-size: 0.9rem; font-weight: 600; }
.apply-type-card p { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; }
.apply-note {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(122,31,43,0.05); padding: 14px;
    border-radius: var(--radius); margin-top: 16px; border: 1px solid rgba(122,31,43,0.12);
}
.apply-note i { color: var(--primary); margin-top: 2px; flex-shrink: 0; font-size: 0.88rem; }
.apply-note p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }
.apply-form-container { background: white; padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.apply-form-container h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 28px; font-weight: 700; }
.apply-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 0.92rem;
    font-family: inherit; outline: none; transition: var(--transition); background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(122,31,43,0.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== CONTACT ===== */
.contact-section { padding: 96px 20px; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.7rem; color: var(--dark); margin-bottom: 16px; font-weight: 700; }
.contact-info > p { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; font-size: 0.93rem; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon {
    width: 40px; height: 40px; background: rgba(122,31,43,0.08);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.contact-icon i { color: var(--primary); font-size: 0.9rem; }
.contact-item h4 { color: var(--dark); margin-bottom: 3px; font-size: 0.88rem; font-weight: 600; }
.contact-item p { color: var(--text-light); font-size: 0.88rem; }
.contact-social { margin-top: 28px; }
.contact-social h4 { color: var(--dark); margin-bottom: 14px; font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-form-container { background: white; padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-form-container h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 28px; font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-content { padding: 80px 40px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content { padding: 60px 24px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .mission .section-container { grid-template-columns: 1fr; gap: 40px; }
    .programs-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
    .story-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .news-page-grid { grid-template-columns: 1fr; }
    .apply-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .article-container { padding: 24px; }
    .page-header h1 { font-size: 2rem; }
}

/* Remove left border from value cards */
.value-card { border-left: none !important; }

/* Remove left border from highlight cards */
.highlight-card { border-left: none !important; }

/* ===== HERO SLIDESHOW ===== */
.hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 80px 80px;
    max-width: 680px;
}
.hero-badge {
    position: absolute;
    bottom: 40px;
    right: 60px;
    background: white;
    padding: 20px 28px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-badge h4 { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-badge p { font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.slide-dots {
    position: absolute;
    bottom: 28px;
    left: 80px;
    display: flex;
    gap: 8px;
    z-index: 3;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Remove hero badge */
.hero-badge { display: none !important; }

/* Logo with image */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo div { display: flex; flex-direction: column; line-height: 1.2; }

/* Fix logo alignment */
.nav-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}
.nav-logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* ===== MOBILE FIXES ===== */
* { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== NAVBAR MOBILE ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 60px;
    }
    .nav-logo img {
        height: 36px;
        width: 36px;
    }
    .logo-text { font-size: 0.95rem; }
    .logo-sub { font-size: 0.62rem; }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0; right: 0;
        background: white;
        padding: 20px;
        gap: 16px;
        z-index: 999;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .nav-links.open a { color: var(--text); font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
    .nav-links.open li:last-child a { border-bottom: none; }

    /* ===== HERO MOBILE ===== */
    .hero {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .hero-slideshow { position: fixed; }
    .hero-content {
        padding: 40px 20px 60px;
        width: 100%;
        max-width: 100%;
    }
    .hero-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
        margin-bottom: 16px;
    }
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
        line-height: 1.2;
        word-break: break-word;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    .slide-dots {
        left: 20px;
        bottom: 20px;
    }
    .hero-image { display: none; }

    /* ===== STATS MOBILE ===== */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0;
    }
    .stat-item {
        padding: 24px 16px;
        border-right: 1px solid rgba(255,255,255,0.12);
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .stat-item h2 { font-size: 2rem; }
    .stat-item p { font-size: 0.72rem; }

    /* ===== MISSION MOBILE ===== */
    .mission { padding: 48px 16px; }
    .mission .section-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mission-values {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .value-card { padding: 16px; }
    .value-card h4 { font-size: 0.85rem; }
    .value-card p { font-size: 0.78rem; }

    /* ===== PROGRAMS MOBILE ===== */
    .programs-section { padding: 48px 16px; }
    .programs-grid { grid-template-columns: 1fr; gap: 16px; }
    .program-card { padding: 20px; }

    /* ===== NEWS MOBILE ===== */
    .news-section { padding: 48px 16px; }
    .news-grid { grid-template-columns: 1fr; gap: 16px; }

    /* ===== CTA MOBILE ===== */
    .cta-section { padding: 48px 16px; }
    .cta-container h2 { font-size: 1.6rem; }
    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    .cta-actions .btn { width: 100%; text-align: center; }

    /* ===== PAGE HEADER MOBILE ===== */
    .page-header { padding: 48px 16px; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p { font-size: 0.88rem; }

    /* ===== ABOUT MOBILE ===== */
    .about-story { padding: 48px 16px; }
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .story-text h2 { font-size: 1.6rem; }
    .values-section { padding: 48px 16px; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .value-item { padding: 20px 16px; }
    .impact-section { padding: 48px 16px; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .impact-card { padding: 24px 12px; }
    .impact-card h2 { font-size: 2rem; }

    /* ===== TEAM MOBILE ===== */
    .team-section { padding: 48px 16px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .team-photo, .team-photo-placeholder { height: 160px; }

    /* ===== STORIES MOBILE ===== */
    .stories-section { padding: 48px 16px; }
    .stories-grid { grid-template-columns: 1fr; gap: 16px; }

    /* ===== GALLERY MOBILE ===== */
    .gallery-section { padding: 48px 16px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-filters { gap: 8px; }
    .filter-btn { padding: 6px 14px; font-size: 0.8rem; }

    /* ===== NEWS PAGE MOBILE ===== */
    .news-page-section { padding: 48px 16px; }
    .news-page-grid { grid-template-columns: 1fr; gap: 16px; }

    /* ===== ARTICLE MOBILE ===== */
    .article-section { padding: 48px 16px; }
    .article-container { padding: 20px 16px; }
    .article-hero-image { height: 220px; }

    /* ===== APPLY MOBILE ===== */
    .apply-section { padding: 48px 16px; }
    .apply-grid { grid-template-columns: 1fr; gap: 24px; }
    .apply-form-container { padding: 24px 16px; }
    .form-row { grid-template-columns: 1fr; }

    /* ===== CONTACT MOBILE ===== */
    .contact-section { padding: 48px 16px; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-container { padding: 24px 16px; }

    /* ===== FOOTER MOBILE ===== */
    .footer { padding: 40px 0 0; }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 16px;
    }
    .footer-bottom { padding: 16px; font-size: 0.78rem; }

    /* ===== SECTION CONTAINERS MOBILE ===== */
    .section-container { padding: 0 16px; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.6rem; }
}

/* ===== SMALL PHONES (< 380px) ===== */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 1.7rem; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .mission-values { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 768px) {
    .nav-links.open {
        position: fixed;
        top: 60px;
        left: 0; right: 0;
        bottom: 0;
        overflow-y: auto;
        padding: 16px 20px 40px;
        display: flex;
        flex-direction: column;
        gap: 0;
        z-index: 999;
        background: white;
    }
    .nav-links.open li a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        font-weight: 500;
    }
    .nav-links.open li:last-child a { border-bottom: none; }

    /* Admin button in mobile nav */
    .mobile-admin-btn {
        display: block;
        margin-top: 20px;
        padding: 12px 20px;
        background: var(--primary);
        color: white !important;
        border-radius: 6px;
        text-align: center;
        font-weight: 600;
        border-bottom: none !important;
    }

    /* Hero fix - make it scrollable */
    .hero {
        min-height: 100svh;
        position: relative;
    }
    .hero-slideshow {
        position: absolute !important;
        inset: 0;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
}
