/* ======================
   Variables & Reset
====================== */
:root {
    --cream: #f7f4ef;
    --cream-dark: #ede9e2;
    --navy: #0b1120;
    --navy-mid: #111827;
    --navy-soft: #1a2540;
    --blue: #1a4fd6;
    --blue-light: #3b7bff;
    --gold: #e8a020;
    --gold-light: #f5c55a;
    --green: #00c07a;
    --text-dark: #0d1117;
    --text-mid: #374151;
    --text-muted: #6b7280;
    --text-cream: #e8e3d9;
    --text-cream-muted: #9ea6b4;
    --border-light: rgba(0,0,0,0.08);
    --border-dark: rgba(255,255,255,0.1);
    --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
    --shadow-lifted: 0 20px 60px rgba(0,0,0,0.12);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================
   Header
====================== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(247, 244, 239, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: white;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.header.scrolled .logo h1 { color: var(--navy); }

.logo-subtitle {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .nav-toggle span { background: var(--navy); }

.nav-menu {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }

.header.scrolled .nav-link { color: var(--text-mid); }
.header.scrolled .nav-link:hover { color: var(--navy); background: var(--cream-dark); }

.nav-cta-secondary {
    background: white !important;
    color: var(--navy) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.01em;
    margin-left: 0.5rem;
}

.nav-cta-secondary:hover {
    background: var(--cream-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.header.scrolled .nav-cta-secondary {
    background: var(--navy) !important;
    color: white !important;
}

.header.scrolled .nav-cta-secondary:hover {
    background: var(--navy-soft) !important;
}

/* ======================
   Hero
====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26, 79, 214, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0, 192, 122, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 80%, rgba(232, 160, 32, 0.15) 0%, transparent 50%);
    animation: meshFloat 12s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0%   { opacity: 1; transform: scale(1) rotate(0deg); }
    100% { opacity: 0.85; transform: scale(1.05) rotate(1deg); }
}

/* Grid texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.5);
}

.hero-overlay { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 960px;
    padding: 2rem 2rem;
    margin-top: 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.72);
    max-width: 620px;
    margin: 0 auto 2.8rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1.5rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-arrow:hover { background: rgba(255,255,255,0.15); }
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ======================
   Buttons
====================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: white;
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: white;
}

.btn-dark:hover {
    background: var(--navy-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(11,17,32,0.3);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: rgba(0,0,0,0.2);
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.btn-text:hover { color: var(--blue-light); gap: 0.7rem; }

/* ======================
   Impact Indicators
====================== */
.impact-indicators {
    background: var(--cream);
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border-light);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.indicator {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.indicator + .indicator::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border-light);
}

.indicator:hover { transform: translateY(-4px); }

.indicator-number {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.indicator-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ======================
   Section Commons
====================== */
section { padding: 7rem 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-label.light {
    color: var(--gold-light);
}

.section-label.light::before { background: var(--gold); }

.section-title {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title.light { color: white; }

.section-title em {
    font-style: italic;
    color: var(--blue);
}

.section-title.light em { color: var(--gold-light); }

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.75;
}

.section-description.light { color: var(--text-cream-muted); }

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-label {
    justify-content: center;
}

.section-header.centered .section-label::before { display: none; }

.section-header.centered .section-description {
    margin: 0 auto;
}

/* ======================
   About Section
====================== */
.about {
    background: var(--cream);
}

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

.about-text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    opacity: 0.12;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lifted);
}

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

.about-image:hover img { transform: scale(1.04); }

/* Mission Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.mv-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
}

.mv-card h3 {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* Values */
.values-title {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

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

.value-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.value-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border-radius: 12px;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======================
   Services — Dark
====================== */
.services {
    background: var(--navy);
    padding: 7rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    background: var(--navy);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,79,214,0.12), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover { background: var(--navy-soft); }
.service-card:hover::after { opacity: 1; }

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    width: 52px; height: 52px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.service-card > p {
    color: var(--text-cream-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-benefits li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    padding-left: 1rem;
    position: relative;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 0.8rem;
}

/* ======================
   Projects — Light warm
====================== */
.projects {
    background: var(--cream-dark);
}

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

.project-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.project-tag {
    position: absolute;
    bottom: 1rem; left: 1rem;
    background: var(--navy);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.project-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.project-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex: 1;
}

.project-details {
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.project-detail {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.project-detail strong { color: var(--text-dark); }

/* ======================
   Impact Banner — Dark gradient
====================== */
.impact-section {
    background: linear-gradient(135deg, #0b1120 0%, #0f2050 50%, #0b1120 100%);
    color: white;
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 40%, rgba(26,79,214,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 75% 70%, rgba(0,192,122,0.15) 0%, transparent 55%);
    pointer-events: none;
}

.impact-content { position: relative; z-index: 1; }

.impact-content h2 {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.impact-content > p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto 4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat {
    padding: 2.5rem 1.5rem;
    position: relative;
}

.stat + .stat::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.stat-number {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ======================
   News — Light
====================== */
.news {
    background: var(--cream);
}

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

.news-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
    border-color: transparent;
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.news-date {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.news-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.news-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.news-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.news-highlight {
    font-style: italic;
    color: var(--blue);
    font-size: 0.88rem;
    padding-left: 1rem;
    border-left: 2px solid var(--blue);
}

/* News toggle */
.news-toggle-btn {
    background: none;
    border: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.news-toggle-btn:hover { color: var(--blue-light); }
.news-full { display: none; }

/* ======================
   News Featured Card
====================== */
.news-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
    background: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.news-featured:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
}

.news-featured-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.75);
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.06);
}

.news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(11,17,32,0.7) 100%);
}

.news-featured-badge {
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    background: var(--gold);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.news-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background: var(--navy);
}

.news-featured-content h3 {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 400;
    color: white;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
}

.news-featured-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.news-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.news-featured:hover .news-featured-cta {
    gap: 0.7rem;
    color: white;
}

@media (max-width: 768px) {
    .news-featured {
        grid-template-columns: 1fr;
    }
    .news-featured-image { min-height: 240px; }
    .news-featured-content { padding: 2rem; }
}

/* ======================
   Testimonials — Dark
====================== */
.testimonials {
    background: var(--navy-mid);
    padding: 7rem 0;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--text-cream-muted);
    font-size: 0.82rem;
}

/* ======================
   Board — Light warm
====================== */
.board {
    background: var(--cream-dark);
}

.board-president,
.board-spokesperson {
    margin-bottom: 3rem;
}

.board-card-large {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2.5rem;
    align-items: center;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--blue);
    transition: var(--transition);
}

.board-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.board-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.board-image { margin-bottom: 1.2rem; }

.board-placeholder {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto;
}

.board-card-large .board-placeholder {
    width: 130px; height: 130px;
    font-size: 2rem;
}

.board-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.board-position {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.board-description,
.board-bio {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.board-section-title {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 2.5rem 0 1.5rem;
    color: var(--navy);
}

/* ======================
   Partners — Dark
====================== */
.partners {
    background: var(--navy);
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.partner-item {
    background: var(--navy);
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.partner-item:hover {
    background: var(--navy-soft);
    color: white;
}

/* ======================
   Contact — Light
====================== */
.contact {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,79,214,0.1);
}

.error-message {
    color: #dc2626;
    font-size: 0.8rem;
    display: none;
}

.error-message.active { display: block; }

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.contact-item {
    background: white;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 3px solid var(--blue);
}

.contact-item:hover { box-shadow: var(--shadow-card); }

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item p { color: var(--text-muted); font-size: 0.9rem; }
.contact-item a { color: var(--blue); }
.contact-item a:hover { text-decoration: underline; }

.social-links { display: flex; flex-direction: column; gap: 0.4rem; }
.social-link { color: var(--blue); font-weight: 500; font-size: 0.9rem; }
.social-link:hover { color: var(--blue-light); }

/* ======================
   Footer
====================== */
.footer {
    background: var(--navy);
    color: white;
    padding: 5rem 0 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-column h3 {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
}

.footer-column p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-tagline {
    color: rgba(255,255,255,0.35) !important;
    font-size: 0.8rem !important;
    margin-top: 0.5rem;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a, .footer-contact li {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-social a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-social a:hover { color: white; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ======================
   WhatsApp Float
====================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    color: white;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-text {
    position: absolute;
    right: 66px;
    background: var(--navy);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-size: 0.82rem;
    box-shadow: var(--shadow-card);
}

.whatsapp-float:hover .whatsapp-text { opacity: 1; }

/* ======================
   Chatbot
====================== */
.chatbot-toggle {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 998;
    background: var(--blue);
    color: white;
    width: 56px; height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26,79,214,0.45);
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    background: var(--blue-light);
}

.chatbot-toggle svg { width: 26px; height: 26px; }

.chatbot-window {
    position: fixed;
    bottom: 96px; right: 28px;
    width: 340px;
    max-height: 480px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    z-index: 997;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.chatbot-window.active { display: flex; }

.chatbot-header {
    background: var(--navy);
    color: white;
    padding: 1.1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 { font-size: 0.95rem; font-weight: 700; }

.chatbot-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.chatbot-close:hover { color: white; }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chatbot-message { max-width: 85%; }

.bot-message {
    background: var(--cream);
    border-radius: 0 14px 14px 14px;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
    align-self: flex-start;
}

.user-message {
    background: var(--blue);
    color: white;
    border-radius: 14px 14px 0 14px;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
    line-height: 1.6;
    align-self: flex-end;
}

.chatbot-options {
    padding: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.chatbot-option {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-option:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ======================
   Animations
====================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

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

/* ======================
   Responsive
====================== */
@media (max-width: 1024px) {
    .services-grid,
    .projects-grid,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .indicator + .indicator::before {
        display: none;
    }

    .about-grid { gap: 3rem; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .impact-stats { grid-template-columns: repeat(2, 1fr); }
}

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

    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-menu.active { display: flex; }

    .nav-link {
        font-size: 1.4rem;
        color: white !important;
        padding: 1rem 2rem;
    }

    .nav-link:hover { background: rgba(255,255,255,0.1) !important; }

    .nav-cta-secondary {
        background: white !important;
        color: var(--navy) !important;
        font-size: 1.1rem !important;
    }

    .hero-title { font-size: 2.6rem; }

    .about-grid { grid-template-columns: 1fr; }
    .mission-vision { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }

    .services-grid,
    .projects-grid,
    .news-grid,
    .testimonials-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .indicators-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-stats { grid-template-columns: repeat(2, 1fr); }

    .contact-content { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }

    .board-card-large {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-direction: column; gap: 0.5rem; }

    section { padding: 5rem 0; }
}
