
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

/* Background Utilities */
.bg-light { background-color: var(--gray-50); }
.bg-white { background: #fff; }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-lg); }

/* Add spacing between consecutive sections */
.content-section + .content-section {
    margin-top: 0.25rem;
}

/* ===========================
   Breadcrumb Navigation
   ========================== */
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: -30px 0 var(--spacing-md);
    padding: 0;
}

.breadcrumb-item {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 1rem;
    color: var(--gray-400);
    font-size: 1.2rem;
    line-height: 1;
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.breadcrumb-item.active {
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
}

/* ===========================
   Page Header
   ========================== */
.page-header {
    position: relative;
    z-index: 1;
    padding: 60px 0 120px;
    background: linear-gradient(135deg,var(--primary-light) 0%,var(--primary-dark) 100%);
    overflow: visible;
    margin: 0;
}

#particles-js { position: absolute; inset: 0; z-index: 1; }
.page-header__content { position: relative; z-index: 2; }

.page-header__lead {
    font-size: clamp(1rem, 1rem + .6vw, 1.1rem);
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    margin-top: var(--spacing-sm);
    margin-bottom: 10px;
}

.page-header .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

.page-header .breadcrumb-list { gap: 0.75rem; }

.page-header .breadcrumb-item {
    color: rgba(255,255,255,0.75);
    font-size: var(--font-size-xs);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.85);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    transition: background .25s ease, color .25s ease;
}

.page-header .breadcrumb-item a:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.page-header .breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    transform: translateY(1px);
}

.page-header .breadcrumb-item.active {
    color: #fff;
    background: rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.55rem;
}

/* ===========================
   Features Overlap Grid + Cards
   ========================== */
.features-overlap {
    position: relative;
    max-width: 1200px;
    margin: -90px auto 40px;
    z-index: 999;
    padding: 0 var(--spacing-lg);
}

.features-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1000;
}

.features-overlap .feature-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1001;
}

.features-overlap .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    z-index: 1002;
}

.feature-card__icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    color: var(--primary);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.feature-card__content {
    position: relative;
    z-index: 10;
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 11;
}

.feature-card__text {
    color: var(--gray-700);
    line-height: 1.6;
    position: relative;
    z-index: 11;
}

/* ===========================
   About Highlights
   ========================== */
.about-highlights {
    position: relative;
    max-width: 1200px;
    margin: -70px auto 50px;
    padding: 0 var(--spacing-lg);
    z-index: 20;
}

.about-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: var(--spacing-lg);
}

.highlight-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.25);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
    padding-left: calc(var(--spacing-lg) + var(--highlight-icon-size) + var(--highlight-icon-gap));
    transition: transform .35s, box-shadow .35s, border-color .35s;
}

.highlight-card::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.08), transparent 60%),
        radial-gradient(circle at 80% 85%, rgba(255,255,255,0.05), transparent 65%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 38px -6px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.18);
}

.highlight-card__icon {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-lg);
    width: var(--highlight-icon-size);
    height: var(--highlight-icon-size);
    display: flex; align-items: center; justify-content: center;
    opacity: 0.9;
}

.highlight-card__title {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.7;
    text-transform: uppercase;
    color: var(--gray-200);
    font-weight: 500;
    font-size: medium;
}

.highlight-card__text {
    margin-top: var(--spacing-xs);
    margin-left: calc(-5 * var(--highlight-text-shift));
}

.highlight-card__more {
    display: inline-block;
    margin-left: .35rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color .25s;
}

.highlight-card__more:hover { 
    color: var(--accent-light); 
    text-decoration: underline; 
}

/* ===========================
   Section Titles
   ========================== */
.section-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    
    font-size: clamp(1.25rem, 2vw + 0.5rem, var(--font-size-xl)); 
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
    padding-left: var(--spacing-md);

    color: var(--primary-dark);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    
    background-color: var(--background-light, transparent);
}

/* ===========================
   Rich Content Block
   ========================== */
.rich-content p {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    background: #fff;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    margin: 0;
}

/* ===========================
   Values List
   ========================== */
.values-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
    display: grid;
    gap: var(--spacing-sm);
    padding-left: var(--spacing-lg);
}

.value-item {
    display: flex;
    align-items: center;
    font-size: var(--font-size-base);
    font-weight: 500;
    background: #fff;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.value-item i {
    color: var(--primary-light);
    margin-right: var(--spacing-sm);
    font-size: 1.1rem;
}

.value-item:hover {
    background: var(--gray-100);
    border-left-color: var(--accent);
    transform: translateX(4px);
}

/* ===========================
   Goals Section
   ========================== */
.goals-section {
    padding: 2rem 1rem;
    text-align: center;
}

.goals-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 0.5rem;
}

.goal-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card__icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.goal-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.goal-card__text {
    font-size: 1rem;
    color: var(--secondary-dark);
}

/* ===========================
   Timeline Section
   ========================== */
.timeline-section {
    margin-top: var(--spacing-xl);
}

.timeline {
    list-style: none;
    margin: var(--spacing-lg) 0 0;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
    left: 42px;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: relative;
    width: 84px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.timeline-marker .timeline-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.timeline-marker .timeline-icon {
    font-size: 1em;
    color: var(--accent, #ffb347);
    background: none;
    box-shadow: none;
    line-height: 1;
    margin: 0;
    transition: color 0.2s;
}

.timeline-marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 4px solid var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    z-index: 1;
    transition: border-color 0.2s;
}

.timeline-marker .timeline-year {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 8px;
    margin-left: 0;
    font-size: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    z-index: 3;
    border: 3px solid var(--primary-light);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    left: 0;
}

.timeline-marker .timeline-icon-wrapper,
.timeline-marker::after {
    margin-top: 12px;
}

.timeline-item:hover .timeline-marker .timeline-year {
    background: var(--accent-light);
    color: var(--primary);
    border-color: var(--accent);
}

.timeline-content {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-left: 5px solid var(--primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 1;
    transition: box-shadow .3s, transform .3s, border-color .3s, max-height .4s cubic-bezier(.4,1.4,.6,1), background .3s;
    cursor: pointer;
    position: relative;
    max-height: 180px;
    overflow: hidden;
}

.timeline-content.expanded {
    background: var(--accent-light);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    max-height: 2000px;
    overflow: visible;
    z-index: 2;
    transition: max-height 0.5s cubic-bezier(.4,1.4,.6,1), background .3s, box-shadow .3s, border-color .3s;
}

.timeline-content:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.timeline-more {
    margin-top: 16px;
    font-size: 0.97rem;
    color: var(--gray-800);
    min-height: 24px;
    transition: all 0.3s;
}

.timeline-content .typing {
    white-space: pre-line;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.timeline-heading {
    margin: 0 0 var(--spacing-xs);
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--primary-dark);
    font-weight: 600;
}

.timeline-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ===========================
   Trust Indicator Section
   ========================== */
.trust-indicator-section {
    margin: 48px 0 32px 0;
    padding: 32px 0;
    text-align: center;
}

.trust-indicator-stats-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust-indicator-stat {
    background: #fff;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--shadow-md, 0 2px 8px rgba(0,0,0,0.07));
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    max-width: 220px;
    flex: 1 1 160px;
    margin-bottom: 16px;
}

.trust-indicator-value {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--accent, #ffb347);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.trust-indicator-label {
    font-size: 1.08em;
    color: var(--primary-dark, #222);
    font-weight: 500;
}

/* ===========================
   Visual Cards (Organization Overview)
   ========================== */
.visual-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
}

.visual-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .3s, transform .3s;
    position: relative;
    min-height: 260px; 
    border: 1px solid rgba(0,0,0,0.05);
}

.visual-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

.visual-icon {
    margin-bottom: var(--spacing-md);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    color: #fff;
    font-size: 2rem;
    transition: transform .3s, box-shadow .3s;
}

.visual-card:hover .visual-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: var(--accent);
    border-color: var(--primary);
}

.visual-card h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.visual-card p {
    color: var(--gray-700);
    font-size: 1.08rem;
    text-align: center;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.7;
}

/* ===========================
   Organizational Pillars Section
   ========================== */
.organizational-pillars {
    padding: var(--spacing-xxl) 0 6rem 0;
    background: var(--gray-50);
}

.pillars-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pillars-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.pillars-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: 4rem;
}

.pillar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    color: #fff;
    transition: transform .3s, box-shadow .3s;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.pillar-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pillar-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .5rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.pillar-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===========================
   War Trauma Section Styles
   ========================== */
.war-trauma-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.war-trauma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

.subsection-title i {
    display: inline-block;
    margin-right: 0.75rem;
    color: var(--accent);
    font-size: 1.2em;
    vertical-align: middle;
}

.subsection-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.approach-section {
    margin-bottom: 4rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.approach-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.approach-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.approach-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.programmes-section {
    margin-bottom: 2rem;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.programme-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.programme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.programme-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.programme-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.programme-content h4 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.programme-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ===========================
   Program Cards (for what-we-do.php)
   ========================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.program-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.program-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-content {
    position: relative;
    z-index: 10;
}

.program-content h4 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.program-content p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ===========================
   Enhanced Programs Section Styles
   ========================== */
.programs-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-weight: 500;
}

.program-meta i {
    color: var(--accent);
    font-size: 0.75rem;
}

.programs-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.programs-cta-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.programs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.programs-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-decoration: none;
}

.programs-cta-btn i:first-child {
    font-size: 1rem;
}

.programs-cta-btn i:last-child {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.programs-cta-btn:hover i:last-child {
    transform: translateX(4px);
}

.programs-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.programs-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 120px;
    border: 1px solid rgba(0,0,0,0.05);
}

.programs-stats .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.programs-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Status-specific styling for stat items */
.programs-stats .stat-item.active .stat-number {
    color: var(--primary);
}

.programs-stats .stat-item.planned .stat-number {
    color: var(--secondary);
}

.programs-stats .stat-item.planning .stat-number {
    color: var(--accent);
}

/* ===========================
   Program Metrics Section
   ========================== */
.programs-metrics {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.programs-metrics .metric-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.programs-metrics .metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.programs-metrics .metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.programs-metrics .metric-item i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.programs-metrics .metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.programs-metrics .metric-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    text-align: center;
}

/* Metric-specific colors */
.programs-metrics .metric-item.completed i,
.programs-metrics .metric-item.completed .metric-number {
    color: #28a745;
}

.programs-metrics .metric-item.featured i,
.programs-metrics .metric-item.featured .metric-number {
    color: #ffc107;
}

.programs-metrics .metric-item.urgent i,
.programs-metrics .metric-item.urgent .metric-number {
    color: #dc3545;
}

/* ===========================
   Reveal on Scroll Animation
   ========================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,1.4,.6,1);
    will-change: opacity, transform;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* ===========================
   Responsive Design
   ========================== */
@media (max-width: 992px) {
    .features-overlap .features-grid__wrapper { 
        grid-template-columns: repeat(2,1fr); 
    }
    .features-overlap { 
        margin: -70px auto 40px; 
    }
    .visual-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav { 
        padding: 0.5rem var(--spacing-sm); 
        margin-bottom: var(--spacing-lg); 
    }
    .breadcrumb-item { 
        font-size: var(--font-size-xs); 
    }
    .page-header { 
        padding: 32px 0 60px; 
    }
    .page-header__lead { 
        font-size: 1rem; 
        line-height: 1.45; 
        margin-top: var(--spacing-xs); 
    }
    .page-header .breadcrumb-item { 
        font-size: 0.65rem; 
        letter-spacing: 0.4px; 
    }
    .page-header .breadcrumb-item a { 
        padding: 0.15rem 0.55rem; 
    }
    .features-overlap { 
        margin: 20px auto 30px; 
        padding:0 var(--spacing-md); 
    }
    .features-overlap .features-grid__wrapper { 
        grid-template-columns:1fr; 
        gap: var(--spacing-md); 
    }
    .feature-card {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) calc(var(--spacing-sm) + 36px);
    }
    .feature-card__icon { 
        top: var(--spacing-sm); 
        left: var(--spacing-sm); 
        width: 28px; 
        height: 28px; 
        font-size: 1.05rem; 
    }
    .feature-card__title { 
        font-size: 0.9rem; 
    }
    .feature-card__text { 
        font-size: 0.7rem; 
        line-height: 1.32; 
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    .rich-content p {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    /* Timeline responsive */
    .timeline {
        padding-left: 0;
        padding-right: 0;
    }
    .timeline::before {
        left: 18px;
        right: auto;
        width: 3px;
        border-radius: 2px;
    }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: var(--spacing-lg, 24px);
        position: relative;
    }
    .timeline-marker {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 0;
        margin-top: 0;
        text-align: left;
        position: relative;
        min-height: 36px;
        z-index: 2;
        background: transparent;
    }
    .timeline-marker .timeline-year {
        margin: 0 10px 0 0;
        font-size: 0.95rem;
        padding: 2px 10px;
        min-width: 48px;
        text-align: center;
        order: 1;
    }
    .timeline-marker .timeline-icon-wrapper {
        position: static;
        transform: none;
        width: 24px;
        height: 24px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
    }
    .timeline-marker::after {
        width: 24px;
        height: 24px;
        left: 0;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }
    .timeline-content {
        padding: var(--spacing-md, 16px) var(--spacing-sm, 12px);
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-top: 8px;
        text-align: left;
    }
    .timeline-content.expanded {
        max-height: 2000px;
    }
    
    .visual-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    .visual-card {
        min-height: 0;
        padding: var(--spacing-lg);
    }
    .visual-icon {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    /* War trauma responsive */
    .war-trauma-section {
        padding: 3rem 0;
    }
    
    .subsection-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .subsection-title::after {
        width: 40px;
        height: 2px;
    }
    
    .subsection-title i {
        display: block;
        margin: 0 0 0.5rem 0;
        font-size: 1.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .programmes-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-card,
    .programme-card,
    .program-card {
        text-align: center;
    }
    
    .approach-card {
        flex-direction: column;
        align-items: center;
    }
    
    /* Enhanced programs responsive */
    .program-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .programs-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .programs-metrics .metric-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .programs-metrics .metric-item {
        min-width: 90px;
    }
    
    .programs-metrics .metric-item i {
        font-size: 1rem;
    }
    
    .programs-metrics .metric-number {
        font-size: 1.25rem;
    }
    
    .programs-metrics .metric-label {
        font-size: 0.7rem;
    }
    
    .programs-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    :root {
        --highlight-icon-size: 48px;
        --highlight-icon-gap: 0.2rem;
        --highlight-text-shift: 10px;
        --highlight-separator-gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .page-header { 
        padding: 24px 0 48px; 
    }
    .page-header__lead { 
        font-size: 0.9rem; 
    }
    .feature-card { 
        padding: var(--spacing-sm); 
    }
    
    .approach-card,
    .programme-card,
    .program-card {
        padding: 1.25rem;
    }
    
    .program-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .program-content h4 {
        font-size: 1.125rem;
    }
    
    .program-content p {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .approach-section {
        margin-bottom: 3rem;
    }
}

/* ===========================
   RTL Support
   ========================== */
html[dir="rtl"] .section-title { 
    margin-right: var(--spacing-sm); 
    margin-left: 0; 
    border-right: 5px solid var(--accent); 
    border-left: 0; 
    padding-right: var(--spacing-sm); 
    padding-left: 0; 
}

html[dir="rtl"] .values-list { 
    padding-right: var(--spacing-lg); 
    padding-left: 0; 
}

html[dir="rtl"] .value-item { 
    border-right: 4px solid var(--primary-light); 
    border-left: 0; 
}

html[dir="rtl"] .value-item i { 
    margin-left: var(--spacing-sm); 
    margin-right: 0; 
}

html[dir="rtl"] .value-item:hover { 
    transform: translateX(-4px); 
    border-right-color: var(--accent); 
}

html[dir="rtl"] .highlight-card { 
    padding-right: calc(var(--spacing-lg) + var(--highlight-icon-size) + var(--highlight-icon-gap)); 
    padding-left: var(--spacing-lg); 
}

html[dir="rtl"] .highlight-card__icon { 
    right: var(--spacing-lg); 
    left: auto; 
}

html[dir="rtl"] .highlight-card__text { 
    margin-right: calc(-5 * var(--highlight-text-shift)); 
    margin-left: 0; 
}

html[dir="rtl"] .highlight-card__more { 
    margin-right: .35rem; 
    margin-left: 0; 
}

/* RTL support for pillar cards */
html[dir="rtl"] .pillar-features {
    text-align: right;
}

html[dir="rtl"] .pillar-features li {
    padding-right: 1.5rem;
    padding-left: 0;
}

html[dir="rtl"] .pillar-features li::before {
    right: 0;
    left: auto;
}

/* RTL support for timeline */
html[dir="rtl"] .timeline::before {
    right: 42px;
    left: auto;
}

html[dir="rtl"] .timeline-content {
    text-align: right;
    border-right: 5px solid var(--primary);
    border-left: 1px solid var(--gray-200);
}

html[dir="rtl"] .timeline-heading {
    text-align: right;
}

html[dir="rtl"] .timeline-text {
    text-align: right;
}

/* RTL timeline responsive adjustments */
@media (max-width: 768px) {
    html[dir="rtl"] .timeline::before {
        right: 18px;
        left: auto;
    }
    
    html[dir="rtl"] .timeline-marker {
        text-align: right;
        justify-content: flex-end;
    }
    
    html[dir="rtl"] .timeline-marker .timeline-year {
        margin: 0 0 0 10px;
        text-align: center;
    }
    
    html[dir="rtl"] .timeline-marker::after {
        right: 0;
        left: auto;
    }
    
    html[dir="rtl"] .timeline-content {
        text-align: right;
        margin-right: 0;
        margin-left: 0;
    }
}

.cta-section {
    background: linear-gradient(135deg, #6a82fb, #fc5c7d);
    padding: 5rem 2rem;
    position: relative;
    text-align: center;
    color: #333;
    overflow: hidden;
    font-family: var(--font-primary);
}

/* Torn SVG edges */
.cta-torn-top,
.cta-torn-bottom {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
}

.cta-torn-top { top: 0; }
.cta-torn-bottom { bottom: 0; }

/* Optional subtle paper texture */
.cta-section {
    background-image:
        url('https://www.transparenttextures.com/patterns/paper-fibers.png'),
        linear-gradient(135deg, #fc5c7d, var(--primary-light));
    background-blend-mode: overlay;
}

/* Content container */
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Text */
.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.cta-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #fff;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Button styling */
.cta-buttons .btn {
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Primary button */
.cta-buttons .btn-primary {
    background: #fff;
    color: #fc5c7d;
}
.cta-buttons .btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px) scale(1.03);
}

/* Secondary button */
.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px) scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 1.8rem; }
    .cta-description { font-size: 1rem; }
    .cta-buttons { flex-direction: column; gap: 0.75rem; }
}
