/*
Theme Name: Salient Child Theme — Living Peace Institute
Description: LPI custom child theme for the Salient WordPress theme
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: Living Peace Institute
Author URI:  https://www.livingpeaceinstitute.org
Template: salient
Version: 1.0
*/

/* ============================================
   LIVING PEACE INSTITUTE - MAIN STYLESHEET
   Following HealthNet TPO Layout Design
   ============================================ */

/* CSS Variables - Logo Colors Only */
:root {
    /* Primary Teal (from logo "living" text) */
    --primary-teal: #098FAD;
    --primary-teal-dark: #077a96;
    --primary-teal-light: #3aa8c4;
    /* Olive Green (from logo horizontal line) */
    --accent-olive: #6B8857;
    --accent-olive-dark: #5a7548;
    --accent-olive-light: #7d9a69;
    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-gray: #4a4a5a;
    --text-light: #6b6b7b;
    /* Background Colors */
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --bg-teal-light: #e5f4f7;
    --bg-gray-light: #f5f5f7;
    --bg-olive-light: #f0f4ed;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-gray);
    line-height: 1.7;
    text-align: justify;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 70px 0;
}

.section-compact {
    padding: 50px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    /* max-width: 600px; */
    text-align: center;
}

.text-center { text-align: center; }
.text-white { color: white; }
.text-teal { color: var(--primary-teal); }
.text-olive { color: var(--accent-olive); }

.bg-white { background: var(--bg-white); }
.bg-cream { background: var(--bg-cream); }
.bg-teal { background: var(--primary-teal); }
.bg-teal-light { background: var(--bg-teal-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.btn-primary:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-teal);
    color: white;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-teal);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* Transparent header - invert logo */
.header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.header:not(.scrolled) .nav-link {
    color: white !important;
}

.header:not(.scrolled) .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header:not(.scrolled) .nav-link.active {
    color: white !important;
}

.header:not(.scrolled) .nav-link.active::after {
    background: white;
}

.header:not(.scrolled) .nav-cta {
    background: white;
    color: var(--primary-teal) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header:not(.scrolled) .nav-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    min-width: 120px;
    object-fit: contain;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.9);
    border-radius: 50%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

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

.logo-main {
    font-family: Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-teal);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-main span {
    color: var(--accent-olive);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent-olive);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-teal);
}

.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 24px;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-dropdown a:hover {
    background: var(--bg-teal-light);
    color: var(--primary-teal);
    padding-left: 28px;
}

/* Nav CTA */
.nav-cta {
    background: var(--primary-teal);
    color: white !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(42, 157, 143, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    margin-top: 0;
    padding-top: 85px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.95), rgba(26, 122, 111, 0.98));
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.78vh; /* 16:9 aspect ratio */
    min-height: 56.25vw; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.7) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
    margin-top: 0;
    padding: 180px 0 100px 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    position: relative;
    overflow: hidden;
    min-height: 45vh;
    display: flex;
    align-items: center;
}

/* Page hero with background image */
.page-hero.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 143, 173, 0.85), rgba(7, 122, 150, 0.9));
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    /* text-align: justify; */
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-current {
    color: white;
}

/* ============================================
   CARDS
   ============================================ */
.cards-section {
    margin-top: 0;
    position: relative;
    z-index: 10;
    padding: 60px 0;
    background: var(--bg-teal-light);
}

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

.card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition-normal);
}

.card:hover {
    transform: none;
    box-shadow: none;
}

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

.card-image {
    height: 380px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.card-image.olive {
    background: linear-gradient(135deg, var(--accent-olive), var(--accent-olive-dark));
}

.card-image.teal-alt {
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
}

.card-image.teal-dark {
    background: linear-gradient(135deg, #066a7d, #045566);
}

.card-image.brown {
    background: linear-gradient(135deg, #8B6F47, #6B5A3E);
}

.card-image.orange {
    background: linear-gradient(135deg, #D4763E, #B86232);
}

.card-image::before {
    display: none;
}

.card-content {
    padding: 0;
}

.card h3 {
    color: var(--primary-teal);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-family: Arial, sans-serif;
}

.card p {
    font-size: 1rem;
    line-height: 1.7;
}

.card-quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.card-author {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    font-style: normal;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-weight: 600;
    margin-top: 2rem;
    font-size: 1rem;
    padding-top: 1rem;
    border-top: none;
}

.card-link svg {
    transition: var(--transition-normal);
}

.card:hover .card-link svg {
    transform: translateX(5px);
}

.card:hover .card-link {
    color: var(--primary-teal-dark);
}

/* ============================================
   NUMBERS / STATS - Clean Progress Bar Design
   ============================================ */
.numbers-section {
    padding: 0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.impact-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.impact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(9, 143, 173, 0.1) 0%,
        rgba(9, 143, 173, 0.4) 50%,
        rgba(248, 250, 251, 1) 100%
    );
}

.impact-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 3rem 2rem 0;
}

.impact-banner-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.impact-banner-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.numbers-section .container {
    max-width: 1200px;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impact-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.impact-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* .impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
} */

.impact-stat-item {
    padding: 1.5rem 0;
}

/* .impact-stat-top {
    display: block;
    margin-bottom: 1rem;
} */

.impact-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.impact-stat-number {
    font-family: Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-teal);
    display: block;
    margin-bottom: 0.4rem;
}
/* 
.impact-stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: left;
    line-height: 1.4;
    display: block;
} */

.impact-progress-bar {
    height: 8px;
    background: #e8eef1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.impact-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease-out;
    position: relative;
}

.impact-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Different colors for each stat */
.impact-stat-item:nth-child(1) .impact-progress-fill {
    background: linear-gradient(90deg, #098FAD, #0bb5d9);
    width: 85%;
}

.impact-stat-item:nth-child(2) .impact-progress-fill {
    background: linear-gradient(90deg, #6B8857, #8fb072);
    width: 92%;
}

.impact-stat-item:nth-child(3) .impact-progress-fill {
    background: linear-gradient(90deg, #e67e22, #f5a142);
    width: 70%;
}

.impact-stat-item:nth-child(4) .impact-progress-fill {
    background: linear-gradient(90deg, #c73e4c, #e85d6a);
    width: 60%;
}

/* Circular stats for key metrics */
.impact-circles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e8eef1;
}

.impact-circle-item {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.impact-circle {
    width: 140px;
    height: 140px;
    position: relative;
    margin: 0 auto 1.25rem;
}

.impact-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.impact-circle-bg {
    fill: none;
    stroke: #e8eef1;
    stroke-width: 8;
}

.impact-circle-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-out;
}

.impact-circle-fill.teal { stroke: var(--primary-teal); }
.impact-circle-fill.olive { stroke: var(--accent-olive); }
.impact-circle-fill.coral { stroke: #e67e22; }

.impact-circle-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
}

.impact-circle-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    width: 80%;
    /* max-width: 180px; */
    text-align: center;
}

/* Legacy stats grid for other pages */
.numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    /* align-items: stretch; */
}

.numbers-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.numbers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.numbers-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: white;
}

.numbers-image-overlay h3 {
    color: white;
    font-size: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.stat-value {
    font-family: Arial, sans-serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--primary-teal);
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ============================================
   PILLARS / FEATURES GRID - Catchy Overlay Cards
   ============================================ */
/* ============================================
   PILLARS SECTION
   ============================================ */
.pillars-section {
    background: var(--bg-cream);
    padding: 100px 0 110px;
    position: relative;
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--bg-teal-light);
    color: var(--primary-teal);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.pillars-section .section-title {
    color: var(--text-dark);
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.pillars-section .section-subtitle {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card */
.pillar-card {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Colored border all around */
.pillar-card--teal  { border: 2px solid rgba(9, 143, 173, 0.2); }
.pillar-card--olive { border: 2px solid rgba(107, 136, 87, 0.2); }
.pillar-card--blue  { border: 2px solid rgba(41, 128, 185, 0.2); }
.pillar-card--warm  { border: 2px solid rgba(192, 135, 58, 0.2); }

.pillar-card--teal:hover  { border-color: var(--primary-teal); }
.pillar-card--olive:hover { border-color: var(--accent-olive); }
.pillar-card--blue:hover  { border-color: #2980b9; }
.pillar-card--warm:hover  { border-color: #c0873a; }

/* Image area */
.pillar-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pillar-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-card:hover .pillar-card__img img {
    transform: scale(1.05);
}

/* Body content */
.pillar-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Top row: icon + step label */
.pillar-card__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

/* Icon circle */
.pillar-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.pillar-card--teal .pillar-card__icon  { background: var(--primary-teal); }
.pillar-card--olive .pillar-card__icon { background: var(--accent-olive); }
.pillar-card--blue .pillar-card__icon  { background: #2980b9; }
.pillar-card--warm .pillar-card__icon  { background: #c0873a; }

.pillar-card:hover .pillar-card__icon {
    transform: scale(1.08);
}

/* Step label */
.pillar-card__step {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pillar-card--teal .pillar-card__step  { color: var(--primary-teal); }
.pillar-card--olive .pillar-card__step { color: var(--accent-olive); }
.pillar-card--blue .pillar-card__step  { color: #2980b9; }
.pillar-card--warm .pillar-card__step  { color: #c0873a; }

/* Title */
.pillar-card h4 {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

/* Description */
.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Link */
.pillar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1.2rem;
    transition: gap 0.3s ease;
}

.pillar-card--teal .pillar-card__link  { color: var(--primary-teal); }
.pillar-card--olive .pillar-card__link { color: var(--accent-olive); }
.pillar-card--blue .pillar-card__link  { color: #2980b9; }
.pillar-card--warm .pillar-card__link  { color: #c0873a; }

.pillar-card__link svg {
    transition: transform 0.3s ease;
}

.pillar-card--teal .pillar-card__link svg  { stroke: var(--primary-teal); }
.pillar-card--olive .pillar-card__link svg { stroke: var(--accent-olive); }
.pillar-card--blue .pillar-card__link svg  { stroke: #2980b9; }
.pillar-card--warm .pillar-card__link svg  { stroke: #c0873a; }

.pillar-card:hover .pillar-card__link {
    gap: 0.7rem;
}

.pillar-card:hover .pillar-card__link svg {
    transform: translateX(3px);
}

/* Bottom colored bar that animates in */
.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 5;
}

.pillar-card--teal::after  { background: var(--primary-teal); }
.pillar-card--olive::after { background: var(--accent-olive); }
.pillar-card--blue::after  { background: #2980b9; }
.pillar-card--warm::after  { background: #c0873a; }

.pillar-card:hover::after {
    transform: scaleX(1);
}

/* ============================================
   TARGET GROUPS SECTION
   ============================================ */
.targets-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    position: relative;
    overflow: hidden;
}

.targets-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}

.targets-section .container {
    position: relative;
    z-index: 1;
}

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

.target-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.target-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.target-card:hover::before {
    opacity: 1;
}

.targets-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.target-card--lg {
    padding: 3.5rem 2.5rem;
}

.target-icon--lg {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
}

.target-icon--lg svg {
    width: 36px;
    height: 36px;
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-color: rgba(255,255,255,0.4);
}

.target-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.target-card h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.target-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.target-arrow svg {
    stroke: white;
    width: 18px;
    height: 18px;
}

.target-card:hover .target-arrow {
    opacity: 1;
    transform: translateX(0);
}

.target-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS - Light & Warm Design
   ============================================ */
.testimonial-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #fff 50%, #f0f7f9 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background:
        radial-gradient(circle at 80% 20%, rgba(9, 143, 173, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(107, 136, 87, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
    align-items: center;
}

.testimonial-image-side {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.testimonial-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative frame around image */
.testimonial-image-side::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-teal);
    opacity: 0.3;
    z-index: -1;
}

.testimonial-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(248, 246, 243, 0.9) 100%);
}

/* Colored accent bar - now on right side */
.testimonial-accent {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-teal) 0%, var(--accent-olive) 50%, #e67e22 100%);
    border-radius: 3px;
    z-index: 2;
}

.testimonial-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
    position: relative;
    z-index: 1;
}

/* Large decorative quote */
.testimonial-quote-mark {
    font-family: Arial, sans-serif;
    font-size: 10rem;
    line-height: 1;
    color: var(--primary-teal);
    opacity: 0.12;
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    pointer-events: none;
}

.testimonial-content-side blockquote {
    font-family: Arial, sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(9, 143, 173, 0.3);
}

.testimonial-author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Navigation dots */
.testimonial-nav {
    display: flex;
    gap: 0.6rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-teal);
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: var(--primary-teal);
    opacity: 0.7;
}

/* Multiple Testimonials Slider */
.testimonials-slider {
    position: relative;
}

.testimonial-slide {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   NEWS / UPDATES
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Publications Section */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.publication-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.publication-card:hover {
    background: white;
    border-color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.publication-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.publication-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.publication-content {
    flex: 1;
}

.publication-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.publication-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.publication-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Different icon colors for publication types */
.publication-icon.icon-manual {
    background: linear-gradient(135deg, var(--accent-olive), var(--accent-olive-dark));
}

.publication-icon.icon-research {
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
}

.publication-icon.icon-brief {
    background: linear-gradient(135deg, #5a8f9d, #4a7a88);
}

.publication-icon.icon-journal {
    background: linear-gradient(135deg, #6b5b95, #574b7a);
}

/* Hidden publications */
.publication-hidden {
    display: none;
}

.publications-grid.show-all .publication-hidden {
    display: flex;
}

#toggle-publications {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#toggle-publications svg {
    transition: transform 0.3s ease;
}

#toggle-publications.expanded svg {
    transform: rotate(180deg);
}

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
    position: relative;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.news-content {
    padding: 1.5rem;
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.news-tag {
    font-size: 0.75rem;
    color: var(--primary-teal);
    background: var(--bg-teal-light);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

.news-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-section {
    background: var(--bg-gray-light);
    padding: 60px 0;
}

.partners-title {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    min-width: 180px;
    height: 100px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.partner-logo img {
    max-width: 200px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

/* Special styling for wide logos */
.partner-logo.wide-logo {
    min-width: 280px;
}

.partner-logo.wide-logo img {
    max-width: 250px;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

.partner-name {
    color: var(--text-gray);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.partner-logo:hover .partner-name {
    color: var(--primary-teal);
}

/* ============================================
   CONTACT FORM & CTA
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    position: relative;
    overflow: hidden;
    padding: 3rem 0rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-teal-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-teal);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo-main {
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Container for YouTube embeds */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-gray-light);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-teal);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-teal);
}

.value-card h4 {
    margin-bottom: 0.75rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-teal);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 15px;
    height: 15px;
    background: var(--primary-teal);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -32px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -32px;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: rotate(90deg);
}

.modal-close svg {
    stroke: white;
}

.modal-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    padding: 2rem;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-content img {
    max-width: 500px;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-info {
    color: white;
    max-width: 400px;
}

.modal-year {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.modal-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.modal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-teal);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-link:hover {
    background: var(--accent-olive);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1.5rem;
    }

    .modal-content img {
        max-width: 280px;
    }

    .modal-info h3 {
        font-size: 1.5rem;
    }

    .modal-info p {
        font-size: 1rem;
    }
}

/* Journey Timeline Section */
.journey-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Vertical timeline line */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-teal);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternating layout */
.timeline-item:nth-child(odd) .timeline-image {
    order: 1;
    justify-self: end;
}

.timeline-item:nth-child(odd) .timeline-marker {
    order: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    order: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-image {
    order: 3;
    justify-self: start;
}

.timeline-item:nth-child(even) .timeline-marker {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

/* Timeline Image */
.timeline-image {
    width: 280px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.timeline-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.timeline-image a {
    display: block;
    position: relative;
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.timeline-image .image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 143, 173, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.timeline-image:hover .image-overlay {
    opacity: 1;
}

.timeline-image .image-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: var(--radius-md);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.timeline-image:hover .image-overlay span {
    transform: translateY(0);
}

/* Timeline Marker */
.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(9, 143, 173, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--primary-teal);
    transform: scale(1.1);
}

.marker-number {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-teal);
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-number {
    color: white;
}

/* Timeline Content */
.timeline-content {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    max-width: 350px;
}

.timeline-item:nth-child(odd) .timeline-content {
    justify-self: start;
}

.timeline-item:nth-child(even) .timeline-content {
    justify-self: end;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .journey-timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .timeline-item:nth-child(odd) .timeline-image,
    .timeline-item:nth-child(even) .timeline-image {
        order: 1;
        grid-column: 1 / -1;
        justify-self: center;
        width: 240px;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        order: 2;
        width: 50px;
        height: 50px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        order: 3;
        text-align: left;
        justify-self: start;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .journey-timeline::before {
        display: none;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-image {
        width: 260px;
        margin-bottom: 1rem;
    }

    .timeline-marker {
        margin-bottom: 1rem;
    }

    .timeline-content {
        text-align: center !important;
    }
}

/* Partner With Us Section */
.partner-section {
    background: linear-gradient(135deg, #f8fafb 0%, #eef3f6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 143, 173, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

/* Left Side - Message */
.partner-message {
    position: relative;
    z-index: 1;
}

.partner-message h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partner-tagline {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon svg {
    stroke: var(--primary-teal);
}

.partner-feature span {
    font-weight: 600;
    color: var(--text-dark);
}

.partner-message .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.partner-message .btn svg {
    stroke: white;
}

/* Right Side - Bank Card */
.bank-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.bank-card-header {
    background: var(--primary-teal);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.bank-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-icon svg {
    stroke: white;
}

.bank-card-header h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.bank-card-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
}

.bank-card-body {
    padding: 2rem;
}

.bank-card-body h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-teal);
    display: inline-block;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.bank-detail-row.highlight {
    background: rgba(9, 143, 173, 0.05);
    margin: 0 -2rem;
    padding: 1rem 2rem;
    border-bottom: none;
}

.bank-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9rem;
    min-width: 130px;
}

.bank-value {
    color: var(--text-dark);
    text-align: right;
    font-size: 0.95rem;
}

.bank-value.account-number {
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1rem;
}

.bank-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.bank-detail-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.bank-detail-box .bank-label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-detail-box .bank-value {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    font-size: 1rem;
}

.bank-card-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-top: 1px solid #eee;
}

.bank-card-footer svg {
    stroke: var(--accent-olive);
}

.bank-card-footer span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 900px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partner-message h2 {
        font-size: 2.2rem;
    }

    .partner-message {
        text-align: center;
    }

    .partner-features {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .partner-section {
        padding: 3rem 0;
    }

    .partner-message h2 {
        font-size: 1.8rem;
    }

    .bank-card-body {
        padding: 1.5rem;
    }

    .bank-detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .bank-value {
        text-align: left;
    }

    .bank-detail-row.highlight {
        margin: 0 -1.5rem;
        padding: 1rem 1.5rem;
    }

    .bank-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
}

.team-info {
    padding: 1.5rem;
}

.team-card h4 {
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   TEAM PAGE - FLIP CARD STYLES
   ============================================ */

/* Flip Card Grids */
.flip-cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.flip-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.flip-cards-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Flip Card Container */
.flip-card {
    background-color: transparent;
    height: 480px;
    perspective: 1000px;
}

.flip-cards-grid-2 .flip-card {
    height: 520px;
}

.flip-card.small {
    height: 380px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back Faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

/* Front Face - Image + Name/Title */
.flip-card-front {
    background: white;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.flip-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top,
        rgba(9, 143, 173, 0.95) 0%,
        rgba(9, 143, 173, 0.85) 50%,
        transparent 100%);
    text-align: left;
}

.flip-card-info h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flip-card-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: left;
}

.flip-card.small .flip-card-info {
    padding: 1.5rem 1rem;
}

.flip-card.small .flip-card-info h3 {
    font-size: 1.1rem;
}

.flip-card.small .flip-card-info p {
    font-size: 0.8rem;
}

/* Back Face - Name, Role & See Details */
.flip-card-back {
    background: var(--primary-teal);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.flip-card-back-content {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.flip-card-back-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
}

.flip-card-back-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.flip-card-title {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.flip-card-back-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.flip-card.small .flip-card-back {
    padding: 1.5rem;
}

.flip-card.small .flip-card-back-content h3 {
    font-size: 1.2rem;
}

.flip-card.small .flip-card-back-content p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.flip-card.small .flip-card-title {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
}

/* See Details Button on flip card back */
.flip-card-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.85rem 2.5rem;
    background: #fff;
    color: var(--primary-teal);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flip-card-btn:hover {
    background: var(--bg-teal-light);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   TEAM MEMBER MODAL
   ============================================ */
.team-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.team-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-modal-overlay.active .team-modal {
    transform: translateY(0) scale(1);
}

.team-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    color: var(--text-gray);
    transition: background 0.2s ease, color 0.2s ease;
}

.team-modal__close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--text-dark);
}

.team-modal__body {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
}

.team-modal__image {
    background: var(--bg-gray-light);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.team-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    min-height: 360px;
}

.team-modal__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-modal__role {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--bg-teal-light);
    color: var(--primary-teal);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.team-modal__name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.team-modal__bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

@media (max-width: 700px) {
    .team-modal__body {
        grid-template-columns: 1fr;
    }

    .team-modal__image {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 300px;
    }

    .team-modal__content {
        padding: 1.5rem;
    }

    .team-modal__name {
        font-size: 1.3rem;
    }
}

/* ============================================
   FACILITATORS SHOWCASE
   ============================================ */

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

.facilitators-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.facilitators-image img {
    width: 100%;
    height: auto;
    display: block;
}

.facilitators-content {
    padding: 1rem 0;
}

.facilitators-stat {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    font-family: Arial, sans-serif;
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.facilitators-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.facilitators-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facilitator-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.facilitator-feature:hover {
    background: var(--primary-teal);
    color: white;
}

.facilitator-feature:hover svg {
    stroke: white;
}

.facilitator-feature svg {
    stroke: var(--primary-teal);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.facilitator-feature span {
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .facilitators-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .facilitators-stat {
        flex-direction: column;
        gap: 0.25rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* ============================================
   JOIN THE TEAM SECTION
   ============================================ */
.join-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.join-team-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.join-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.join-team-card.vacancies {
    background: var(--primary-teal);
    color: white;
}

.join-team-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.join-team-icon {
    width: 70px;
    height: 70px;
    background: rgba(9, 143, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition-normal);
}

.join-team-icon svg {
    stroke: var(--primary-teal);
    transition: var(--transition-normal);
}

.join-team-card:hover .join-team-icon {
    background: var(--primary-teal);
}

.join-team-card:hover .join-team-icon svg {
    stroke: white;
}

.join-team-icon.international {
    background: rgba(120, 142, 86, 0.1);
}

.join-team-icon.international svg {
    stroke: var(--accent-olive);
}

.join-team-card:hover .join-team-icon.international {
    background: var(--accent-olive);
}

.join-team-card:hover .join-team-icon.international svg {
    stroke: white;
}

.join-team-icon.vacancies {
    background: rgba(255, 255, 255, 0.2);
}

.join-team-icon.vacancies svg {
    stroke: white;
}

.join-team-card.vacancies:hover .join-team-icon.vacancies {
    background: rgba(255, 255, 255, 0.3);
}

.join-team-header h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.join-team-card.vacancies .join-team-header h3 {
    color: white;
}

.join-team-languages {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.join-team-card.vacancies .join-team-languages {
    color: rgba(255, 255, 255, 0.8);
}

.join-team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.join-team-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.join-team-list li:last-child {
    border-bottom: none;
}

.join-team-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 50%;
}

.vacancies-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.join-team-card.vacancies .btn {
    width: 100%;
    background: white;
    color: var(--primary-teal);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.join-team-card.vacancies .btn:hover {
    background: var(--accent-olive);
    color: white;
}

.join-team-card.vacancies .btn svg {
    stroke: currentColor;
}

/* Join Team Responsive */
@media (max-width: 1024px) {
    .join-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .join-team-card.vacancies {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .join-team-grid {
        grid-template-columns: 1fr;
    }

    .join-team-card.vacancies {
        grid-column: span 1;
    }
}

/* Flip Card Responsive */
@media (max-width: 1200px) {
    .flip-cards-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .flip-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .flip-cards-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .flip-cards-grid-2,
    .flip-cards-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .flip-card {
        height: 480px;
    }
}

@media (max-width: 500px) {
    .flip-cards-grid-5 {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .flip-card.small {
        height: 420px;
    }
}

/* ============================================
   TEAM PAGE - MODERN CARD STYLES (Legacy)
   ============================================ */

/* Team Cards Grid - 4 columns */
.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Team Cards Grid - 3 columns */
.team-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Team Cards Grid - 5 columns */
.team-cards-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Modern Team Card with Photo */
.team-card-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-card-modern.small .team-card-image {
    height: 320px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card-modern:hover .team-card-image img {
    transform: scale(1.05);
}

/* Name/Role Overlay at Bottom */
.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
}

.team-card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.team-card-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
}

/* Bottom Accent Bar */
.team-card-accent {
    height: 5px;
    background: var(--primary-teal);
    transition: all 0.3s ease;
}

.team-card-accent.primary {
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-olive));
}

.team-card-modern:hover .team-card-accent {
    height: 8px;
}

/* Bio Card (Text-only card like in reference) */
.team-card-bio {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary-teal);
}

.team-card-bio-icon {
    width: 60px;
    height: 60px;
    background: rgba(9, 143, 173, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.team-card-bio-icon svg {
    stroke: var(--primary-teal);
}

.team-card-bio h3 {
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-card-bio p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    flex: 1;
}

.team-card-bio-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 2px 2px 0 0;
}

/* Team Bios Row */
.team-bios-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.team-bio-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-teal);
}

.team-bio-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.team-bio-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Team Page Responsive */
@media (max-width: 1200px) {
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-cards-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .team-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-bios-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-cards-grid,
    .team-cards-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-cards-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }

    .team-card-image {
        height: 450px;
    }
}

@media (max-width: 500px) {
    .team-cards-grid-5 {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .team-card-modern.small .team-card-image {
        height: 350px;
    }
}

/* Legacy styles for backwards compatibility */
/* Featured Team Grid (President & Vice-President) */
.team-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.team-card-featured {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.team-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-card-featured-image {
    display: flex;
    justify-content: center;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8fafb 0%, #eef3f6 100%);
}

.team-card-featured-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 15px 40px rgba(9, 143, 173, 0.3);
    border: 5px solid white;
}

.team-placeholder-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(9, 143, 173, 0.3);
}

.team-placeholder-avatar span {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.team-card-featured-content {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
}

.team-badge {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.team-badge.secondary {
    background: var(--accent-olive);
}

.team-card-featured-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.team-card-featured-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Simple Team Grid (Board Members) */
.team-grid-simple {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-card-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.team-card-simple:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.team-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-olive), #5a6942);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.team-card-simple h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-card-simple .team-role {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Leadership Grid */
.team-leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-leader-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--accent-olive);
}

.team-leader-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.team-leader-card.primary {
    border-left-color: var(--primary-teal);
    background: linear-gradient(135deg, rgba(9, 143, 173, 0.03) 0%, white 100%);
}

.team-leader-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.team-leader-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(9, 143, 173, 0.25);
}

img.team-leader-avatar {
    object-fit: cover;
    object-position: center top;
    border: 4px solid white;
}

.team-leader-title {
    flex: 1;
}

.team-leader-title h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.team-leader-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Program Staff Grid */
.team-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-staff-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

.team-staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-staff-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), #066a7d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 35px rgba(9, 143, 173, 0.25);
}

img.team-staff-avatar {
    object-fit: cover;
    object-position: center top;
    border: 4px solid white;
}

.team-staff-content h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-staff-content .team-role {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-staff-content .team-bio {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Operations Grid */
.team-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-ops-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

.team-ops-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-ops-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-ops-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-olive), #5a6942);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

img.team-ops-avatar {
    object-fit: cover;
    object-position: center top;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-ops-header h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-ops-header .team-role {
    font-size: 0.85rem;
}

.team-ops-card > p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Team Page Responsive */
@media (max-width: 1024px) {
    .team-featured-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .team-staff-grid {
        grid-template-columns: 1fr;
    }

    .team-ops-grid {
        grid-template-columns: 1fr;
    }

    .team-leader-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-leader-card p {
        text-align: center;
    }

    .team-grid-simple {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .team-card-featured-image img {
        width: 220px;
        height: 220px;
    }

    .team-staff-avatar,
    img.team-staff-avatar {
        width: 150px;
        height: 150px;
    }

    .team-leader-avatar,
    img.team-leader-avatar {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .team-placeholder-avatar {
        width: 100px;
        height: 100px;
    }

    .team-placeholder-avatar span {
        font-size: 2rem;
    }

    .team-card-featured-content {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .team-card-featured-content h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--primary-teal);
    background: transparent;
    border-radius: var(--radius-xl);
    font-weight: 500;
    color: var(--primary-teal);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-teal);
    color: white;
}

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

.project-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    display: block;
    height: 5px;
    background: var(--card-accent, linear-gradient(90deg, var(--primary-teal), var(--primary-teal-light)));
}

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

.project-card-inner {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.project-card-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    opacity: 0.08;
    color: var(--primary-teal);
}

.project-card-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary-teal);
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.project-location::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-teal);
    flex-shrink: 0;
}

.project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.project-card p {
    flex-grow: 1;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Project Subcategories */
.project-subcategory {
    margin-bottom: 3rem;
}

.subcategory-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-teal-light);
}

.subcategory-title svg {
    color: var(--primary-teal);
}

.region-section {
    margin-top: 2rem;
}

.subcategory-intro {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 900px;
}

/* ============================================
   ACADEMY PAGE
   ============================================ */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.approach-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.approach-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.approach-icon svg {
    stroke: white;
}

.approach-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.approach-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 900px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.training-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.training-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.training-card h4 {
    margin-bottom: 0.75rem;
}

.training-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.training-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   IMPACT STATS
   ============================================ */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.impact-stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.impact-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.impact-stat-icon svg {
    stroke: white;
}

/* .impact-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.25rem;
} */

/* .impact-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
} */

.impact-stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: right;
    max-width: 180px;
    line-height: 1.4;
}

.impact-stat-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 900px) {
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWS / BLOG PAGE
   ============================================ */

/* Featured Article */
.news-featured {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border-left: 5px solid var(--primary-teal);
}

.news-featured__badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.news-featured__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.news-stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.news-stat strong {
    font-size: 1.2rem;
    color: var(--primary-teal);
    font-weight: 700;
}

.news-stat span {
    font-size: 0.88rem;
    color: var(--text-gray);
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition-normal);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.story-quote-icon {
    color: var(--primary-teal);
    opacity: 0.5;
}

.story-card blockquote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    flex-grow: 1;
    margin: 0;
    text-align: justify;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.story-author__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.story-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.story-card--flickr {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    text-align: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

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

.story-card--flickr p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    text-align: center;
}

.story-flickr-cta {
    display: inline-block;
    margin-top: auto;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
    transition: var(--transition-normal);
}

.story-card--flickr:hover .story-flickr-cta {
    background: white;
    color: var(--primary-teal);
}

/* Follow Grid */
.follow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.follow-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

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

.follow-card span {
    font-weight: 700;
    font-size: 1rem;
}

.follow-card small {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}

@media (max-width: 900px) {
    .stories-grid,
    .follow-grid,
    .news-featured__stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VACANCIES PAGE
   ============================================ */
.vacancies-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.vacancies-empty__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vacancies-empty__icon svg {
    stroke: white;
}

.vacancies-empty h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.vacancies-empty p {
    color: var(--text-gray);
    line-height: 1.7;
}

.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vacancy-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-teal);
    transition: var(--transition-normal);
}

.vacancy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.vacancy-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vacancy-card__header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0.3rem 0;
}

.vacancy-type {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.vacancy-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.vacancy-deadline {
    font-size: 0.85rem;
    color: var(--accent-warm);
    font-weight: 600;
    white-space: nowrap;
}

.vacancy-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.vacancy-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.vacancy-tag-item {
    background: var(--bg-cream);
    color: var(--primary-teal);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--primary-teal);
}

.vacancy-requirements {
    margin-bottom: 1.5rem;
}

.vacancy-requirements h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.vacancy-requirements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vacancy-requirements ul li {
    font-size: 0.9rem;
    color: var(--text-gray);
    padding-left: 1.25rem;
    position: relative;
}

.vacancy-requirements ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.vacancy-card__footer {
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .card-image {
        height: 320px;
    }

    .impact-circles {
        gap: 2rem;
    }

    .impact-circle {
        width: 120px;
        height: 120px;
    }

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

    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-image-side {
        min-height: 350px;
    }

    .testimonial-image-side::before {
        display: none;
    }

    .testimonial-image-side::after {
        background: linear-gradient(180deg, transparent 60%, rgba(248, 246, 243, 0.95) 100%);
    }

    .testimonial-accent {
        display: none;
    }

    .testimonial-content-side {
        padding: 3rem 2rem;
    }

    .numbers-grid,
    .about-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .targets-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Force dark text in mobile menu regardless of header state */
    .header:not(.scrolled) .nav-link,
    .header:not(.scrolled) .nav-link:hover,
    .header:not(.scrolled) .nav-link.active,
    .header .nav-menu .nav-link {
        color: var(--text-dark) !important;
    }

    .header .nav-menu .nav-link:hover {
        color: var(--primary-teal) !important;
    }

    .header:not(.scrolled) .nav-cta,
    .header .nav-menu .nav-cta {
        background: var(--primary-teal) !important;
        color: white !important;
    }

    /* Make hamburger button dark when menu is open */
    .header:not(.scrolled) .mobile-menu-btn span {
        background: white;
    }

    .header:not(.scrolled) .mobile-menu-btn.active span {
        background: var(--text-dark);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-dropdown {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .nav-item:hover .nav-dropdown {
        display: block;
    }
    
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Typography - Smaller fonts */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.15rem; }
    h4 { font-size: 1rem; }

    .section-title {
        font-size: 1.35rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Smaller buttons on mobile */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .page-hero {
        padding: 100px 0 50px 0;
        min-height: auto;
    }

    .page-hero h1 {
        font-size: 1.4rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .cards-section {
        margin-top: 0;
        padding: 60px 0;
    }

    .card-image {
        height: 280px;
    }

    .section {
        padding: 60px 0;
    }

    .impact-banner {
        height: 280px;
    }

    .impact-banner-content {
        padding: 2rem 1.5rem 0;
    }

    .impact-banner-content h2 {
        font-size: 1.75rem;
    }

    .impact-banner-content p {
        font-size: 1rem;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-stat-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .impact-stat-label {
        text-align: left;
        max-width: 100%;
    }

    .impact-stat-number {
        font-size: 2.5rem;
    }

    .impact-circles {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .impact-circle {
        width: 120px;
        height: 120px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 440px;
        margin: 0 auto;
    }

    .pillar-card__img {
        height: 200px;
    }

    .pillar-card__link {
        gap: 0.6rem;
    }

    .testimonial-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .testimonial-image-side {
        height: 280px;
    }

    .testimonial-content-side {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-quote-mark {
        font-size: 8rem;
        top: 0;
        left: 1rem;
    }

    .testimonial-content-side blockquote {
        font-size: 1.25rem;
    }

    .testimonial-author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .news-grid,
    .publications-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -42px;
        right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header-inner {
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .targets-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        gap: 1rem;
    }

    .partner-logo {
        width: 140px;
        height: 80px;
        padding: 1rem;
    }

    .partner-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* ============================================
   PORTED FROM design/contact.html INLINE <style>
   The contact-page-only nav-cta override (forced solid teal even when the
   header is transparent) was intentionally dropped — it would force teal
   on every page's nav-cta and break the home / about transparent-header look.
   ============================================ */

        /* Tab Navigation */
        .page-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }
        .page-tab {
            padding: 1.25rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            color: var(--text-gray);
            border-radius: 0;
            position: relative;
        }
        .page-tab:first-child {
            border-radius: var(--radius-lg) 0 0 0;
        }
        .page-tab:last-child {
            border-radius: 0 var(--radius-lg) 0 0;
        }
        .page-tab.active {
            background: var(--primary-teal);
            color: white;
        }
        .page-tab:not(.active):hover {
            background: #f0f0f0;
        }
        .page-tab svg {
            width: 20px;
            height: 20px;
            margin-right: 0.5rem;
            vertical-align: middle;
            fill: currentColor;
        }

        /* Tab Content */
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }

        /* Contact Section Styles */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }
        .contact-details {
            background: var(--bg-cream);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
        }
        .contact-details h3 {
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        .contact-detail-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        .contact-detail-item svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-teal);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .contact-detail-item h4 {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 0.25rem;
            font-weight: 500;
        }
        .contact-detail-item p, .contact-detail-item a {
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Bank Card - New Design */
        .bank-card {
            max-width: 650px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            background: #f8f9fa;
        }
        .bank-card-header {
            background: var(--primary-teal);
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        .bank-card-header-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bank-card-header-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
        }
        .bank-card-header h2 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }
        .bank-card-header p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
        }
        .bank-card-body {
            background: white;
            padding: 2.5rem;
        }
        .bank-card-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .bank-card-title-line {
            width: 120px;
            height: 3px;
            background: var(--primary-teal);
            margin-bottom: 2rem;
        }
        .bank-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        .bank-row:last-of-type {
            border-bottom: none;
        }
        .bank-row.highlight {
            background: #f8f9fa;
            margin: 0 -2.5rem;
            padding: 1rem 2.5rem;
        }
        .bank-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }
        .bank-value {
            text-align: right;
            color: var(--text-gray);
        }
        .bank-value.accent {
            color: var(--primary-teal);
            font-weight: 600;
            font-family: Arial, sans-serif;
            font-size: 1.1rem;
        }
        .bank-codes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }
        .bank-code-box {
            background: #f0f2f5;
            padding: 1.25rem;
            border-radius: var(--radius-md);
            text-align: center;
        }
        .bank-code-box .label {
            font-size: 0.75rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        .bank-code-box .value {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.1rem;
        }
        .bank-card-footer {
            background: #f8f9fa;
            padding: 1rem 2.5rem;
            text-align: center;
            border-top: 1px solid #eee;
        }
        .bank-card-footer p {
            color: var(--text-gray);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .bank-card-footer svg {
            width: 18px;
            height: 18px;
            fill: #6b8e23;
        }

        /* Why Donate Card */
        .why-donate-card {
            background: var(--bg-cream);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .why-donate-card h3 {
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .donate-reasons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .donate-reason {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .donate-reason svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-teal);
            flex-shrink: 0;
        }
        .donate-reason p {
            color: var(--text-gray);
            line-height: 1.6;
        }
        .donate-reason strong {
            color: var(--text-dark);
        }

        @media (max-width: 992px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            .page-tab {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .page-tabs {
                flex-direction: column;
                margin-top: -20px;
            }
            .page-tab {
                border-radius: 0 !important;
            }
            .page-tab:first-child {
                border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
            }
            .bank-codes {
                grid-template-columns: 1fr;
            }
            .donate-reasons {
                grid-template-columns: 1fr;
            }
            .bank-card-body {
                padding: 1.5rem;
            }
            .bank-row.highlight {
                margin: 0 -1.5rem;
                padding: 1rem 1.5rem;
            }
        }

/* ============================================
   PORTED FROM design/donate.html INLINE <style>
   ============================================ */
      .donate-hero {
        margin-top: 0;
        padding: 180px 0 100px 0;
        background: url("/wp-content/themes/salient-child/images/community.png") center/cover no-repeat;
        position: relative;
        min-height: 45vh;
        display: flex;
        align-items: center;
      }
      .donate-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(9, 143, 173, 0.85),
          rgba(7, 122, 150, 0.9)
        );
        z-index: 1;
      }
      .donate-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
        z-index: 2;
      }
      .donate-hero .container {
        position: relative;
        z-index: 5;
      }
      .donation-options {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
      }
      .donation-option {
        padding: 1.25rem;
        border: 3px solid var(--primary-teal);
        background: white;
        border-radius: var(--radius-md);
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .donation-option:hover,
      .donation-option.active {
        background: var(--primary-teal);
        color: white;
      }
      .donation-option .amount {
        font-family: Arial, sans-serif;
        font-size: 1.75rem;
        font-weight: 700;
      }
      .donation-option .label {
        font-size: 0.85rem;
        margin-top: 0.25rem;
        opacity: 0.8;
      }
      .custom-amount {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
      }
      .custom-amount label {
        font-weight: 600;
      }
      .custom-amount input {
        flex: 1;
        padding: 14px 18px;
        border: 2px solid #e0e0e0;
        border-radius: var(--radius-sm);
        font-size: 1.1rem;
      }
      .custom-amount input:focus {
        outline: none;
        border-color: var(--primary-teal);
      }
      .impact-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
      }
      .impact-card {
        background: white;
        border-radius: var(--radius-lg);
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow-sm);
        border-top: 4px solid var(--primary-teal);
      }
      .impact-card .impact-amount {
        font-family: Arial, sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-teal);
      }
      .impact-card h4 {
        margin: 1rem 0 0.5rem;
      }
      .payment-methods {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
      }
      .payment-method {
        flex: 1;
        min-width: 120px;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: var(--radius-sm);
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .payment-method:hover,
      .payment-method.active {
        border-color: var(--primary-teal);
        background: var(--bg-teal-light);
      }
      .payment-method span {
        display: block;
        font-weight: 600;
        margin-top: 0.5rem;
      }
      @media (max-width: 768px) {
        .donation-options {
          grid-template-columns: repeat(2, 1fr);
        }
        .impact-cards {
          grid-template-columns: 1fr;
        }
      }
