/* Humanitarian Work Page Styles */
.humanitarian-page-modern {
    overflow-x: hidden;
}

/* ========================================
   REGION IMAGE SLIDERS
   ======================================== */

.region-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.region-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.region-slide.active,
.region-slide:first-child {
    opacity: 1;
}

/* Advanced Hero Section */
.humanitarian-hero-advanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4ecdc4 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease-in-out infinite;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 2;
}

.hero-particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle-1 { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle-2 { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle-3 { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle-4 { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle-5 { left: 60%; animation-delay: 8s; animation-duration: 24s; }
.particle-6 { left: 70%; animation-delay: 10s; animation-duration: 19s; }
.particle-7 { left: 80%; animation-delay: 12s; animation-duration: 21s; }
.particle-8 { left: 90%; animation-delay: 14s; animation-duration: 17s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-grid-advanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-icon-pulse {
    font-size: 1.2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title-dynamic {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block;
    animation: titleSlideIn 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line-1 { animation-delay: 0.2s; }
.title-line-2 { animation-delay: 0.4s; }
.title-line-3 { animation-delay: 0.6s; }

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle-dynamic {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats-animated {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item-animated {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-cta-dynamic {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-dynamic {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-dynamic {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary-dynamic:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-secondary-dynamic {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-dynamic:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-icon-dynamic {
    transition: transform 0.3s ease;
}

.btn-dynamic:hover .btn-icon-dynamic {
    transform: translateX(5px);
}

/* World Map Interactive */
.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map-interactive {
    position: relative;
    width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><path d="M150,200 Q200,150 300,180 T500,200 Q600,220 700,200 T900,180" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none"/><path d="M100,300 Q200,250 400,280 T700,300 Q800,320 900,300" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none"/></svg>') center/contain no-repeat;
}

.country-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pinPulse 2s ease-in-out infinite;
}

.pin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    z-index: 2;
}

@keyframes pinPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pin-nigeria { top: 40%; left: 45%; }
.pin-india { top: 35%; left: 70%; }
.pin-tanzania { top: 60%; left: 55%; }
.pin-kenya { top: 55%; left: 57%; }
.pin-philippines { top: 45%; left: 80%; }

.country-pin:hover {
    transform: scale(1.2);
}

.map-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.active {
    background: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.legend-dot.completed {
    background: #f5576c;
    box-shadow: 0 0 10px rgba(245, 87, 108, 0.5);
}

.scroll-indicator-dynamic {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 4;
}

.scroll-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow-animated {
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* SDG Goals Section */
.sdg-goals-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
}

.sdg-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.sdg-pattern {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="%23667eea"/><circle cx="10" cy="10" r="1" fill="%234ecdc4"/><circle cx="50" cy="10" r="1" fill="%23f5576c"/><circle cx="10" cy="50" r="1" fill="%23764ba2"/><circle cx="50" cy="50" r="1" fill="%23f093fb"/></svg>') repeat;
}

.sdg-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sdg-goal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sdg-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.sdg-goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.sdg-goal-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sdg-goal-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Countries Impact Section */
.countries-impact-section {
    padding: 120px 0;
    background: white;
}

.countries-tabs-container {
    margin-top: 4rem;
}

.countries-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.country-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
}

.country-tab:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.country-tab.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-flag {
    font-size: 1.5rem;
}

.tab-name {
    font-size: 1rem;
}

.countries-content {
    position: relative;
    min-height: 600px;
}

.country-content {
    display: none;
    animation: fadeInContent 0.5s ease-in-out;
}

.country-content.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.country-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.country-info p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.metric-number {
    font-size: 2rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

.project-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.project-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.project-tag:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.tag-icon {
    font-size: 1.2rem;
}

.project-tag span:last-child {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.country-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.gallery-item.main-image {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #7f8c8d;
    text-align: center;
}

.image-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Get Involved Section */
.get-involved-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.get-involved-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatElement 20s infinite linear;
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.get-involved-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.get-involved-content .section-title-advanced {
    color: white;
}

.get-involved-content .section-subtitle-advanced {
    color: rgba(255, 255, 255, 0.9);
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.involvement-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.involvement-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.involvement-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.involvement-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.involvement-btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Humanitarian Work Page */
@media (max-width: 1200px) {
    .hero-grid-advanced {
        gap: 3rem;
    }

    .hero-title-dynamic {
        font-size: 3rem;
    }

    .world-map-interactive {
        width: 400px;
        height: 320px;
    }
}

@media (max-width: 992px) {
    .hero-grid-advanced {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats-animated {
        justify-content: center;
    }

    .country-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .countries-tabs {
        gap: 0.5rem;
    }

    .country-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .humanitarian-hero-advanced {
        min-height: 80vh;
    }

    .hero-title-dynamic {
        font-size: 2.5rem;
    }

    .hero-subtitle-dynamic {
        font-size: 1.1rem;
    }

    .hero-stats-animated {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-dynamic {
        flex-direction: column;
        align-items: center;
    }

    .world-map-interactive {
        width: 300px;
        height: 240px;
        padding: 1rem;
    }

    .countries-tabs {
        flex-direction: column;
        align-items: center;
    }

    .country-tab {
        width: 200px;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .gallery-item {
        min-height: 150px;
    }

    .gallery-item.main-image {
        grid-row: 1;
    }

    .gallery-item img {
        object-fit: contain;
        object-position: center;
    }

    .involvement-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .involvement-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .humanitarian-hero-advanced,
    .sdg-goals-section,
    .countries-impact-section,
    .get-involved-section {
        padding: 80px 0;
    }

    .hero-title-dynamic {
        font-size: 2rem;
    }

    .hero-cta-dynamic {
        gap: 1rem;
    }

    .btn-dynamic {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .world-map-interactive {
        width: 280px;
        height: 200px;
    }

    .country-info h3 {
        font-size: 2rem;
    }

    .sdg-goals-grid {
        grid-template-columns: 1fr;
    }

    .sdg-goal-card {
        padding: 2rem 1.5rem;
    }
}

/* Humanitarian Integration Section on Homepage */
.humanitarian-integration-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.humanitarian-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.pattern-overlay {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><circle cx="40" cy="40" r="3" fill="white"/><circle cx="20" cy="20" r="2" fill="white"/><circle cx="60" cy="20" r="2" fill="white"/><circle cx="20" cy="60" r="2" fill="white"/><circle cx="60" cy="60" r="2" fill="white"/></svg>') repeat;
}

.humanitarian-integration-section .section-title-advanced {
    color: white;
}

.humanitarian-integration-section .section-subtitle-advanced {
    color: rgba(255, 255, 255, 0.9);
}

.humanitarian-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.showcase-stats {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.impact-description h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.impact-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

.showcase-countries {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
}

.map-title {
    text-align: center;
    margin-bottom: 2rem;
}

.map-title h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.map-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.countries-grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.country-preview-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.country-preview-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.country-flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.country-info-preview h5 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.country-info-preview p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.more-countries {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.humanitarian-cta-integration {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content-humanitarian h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-content-humanitarian p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-humanitarian {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.btn-humanitarian-integration {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.btn-primary-humanitarian {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary-humanitarian:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-secondary-humanitarian {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-humanitarian:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-icon-humanitarian {
    transition: transform 0.3s ease;
}

.btn-humanitarian-integration:hover .btn-icon-humanitarian {
    transform: translateX(5px);
}

/* Responsive Styles for Humanitarian Integration */
@media (max-width: 992px) {
    .humanitarian-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .humanitarian-cta-integration {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cta-buttons-humanitarian {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .humanitarian-integration-section {
        padding: 80px 0;
    }

    .showcase-countries {
        padding: 2rem;
    }

    .countries-grid-preview {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .country-preview-card {
        padding: 1rem;
    }

    .humanitarian-cta-integration {
        padding: 2rem;
    }

    .cta-content-humanitarian h4 {
        font-size: 1.5rem;
    }

    .cta-buttons-humanitarian {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .showcase-stats {
        text-align: center;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .country-preview-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .btn-humanitarian-integration {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

.btn-dynamic,
.btn-primary-dynamic,
.btn-secondary-dynamic,
.btn-primary-humanitarian,
.btn-secondary-humanitarian,
.btn-humanitarian-integration {
    border-radius: var(--radius-full);
}

