/* Custom Fonts */
@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-regular.woff2') format('woff2'),
         url('../fonts/font-regular.woff') format('woff'),
         url('../fonts/font-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/font-bold.woff2') format('woff2'),
         url('../fonts/font-bold.woff') format('woff'),
         url('../fonts/font-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #009fe3;
    --secondary-color: #858686;
    --dark-color: #010314;
    --light-gray: #f5f5f5;
    --text-color: #333;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #009fe3;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 30px;
    border: 2px solid var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.top-bar {
    background-color: var(--light-gray);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-right a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.top-right a:hover {
    color: var(--primary-color);
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #009fe3 100%);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 179, 0.3);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 179, 0.4);
}

.donate-btn:active {
    transform: translateY(0);
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-menu .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.emergency-text {
    flex: 1;
    min-width: 300px;
}

.emergency-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.emergency-content p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.btn-emergency {
    background-color: var(--white);
    color: #009fe3;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-emergency:hover {
    background-color: #0077b3;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Hero Section */
/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.carousel-slide {
    display: none;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 1s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    align-items: center;
    position: relative;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-content {
    width: 100%;
    padding: 80px 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Navigation Arrows */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-actions .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-actions .btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-color);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0,159,227,0.05), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #0077b3);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,159,227,0.3);
}

.section-subtitle {
    font-size: 20px;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
    aspect-ratio: 16/9;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,159,227,0.1), rgba(0,119,179,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0,159,227,0.25);
}

.video-container:hover::before {
    opacity: 1;
}

.video-title {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(0,159,227,0.98), rgba(0,119,179,0.98));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    z-index: 20;
    box-shadow: 0 8px 20px rgba(0,159,227,0.4);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.video-container:hover .video-title {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,159,227,0.6);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
    transition: transform 0.4s ease;
}

.video-container:hover video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,159,227,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 90px;
    color: var(--white);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.video-container:hover .video-overlay i {
    transform: scale(1.2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

/* ============================================
   REDESIGNED SECTIONS - NEW MODERN DESIGN
   ============================================ */

/* Emergency Banner - New Design */
.emergency-banner-new {
    position: relative;
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
    padding: 25px 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.3);
}

.emergency-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: pulse-slide 3s infinite;
}

@keyframes pulse-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.emergency-content-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.emergency-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.emergency-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.emergency-badge i {
    font-size: 28px;
    color: #fff;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.badge-text {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.emergency-text-new h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.emergency-text-new p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.emergency-right {
    flex-shrink: 0;
}

.btn-emergency-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #ff6f00;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-emergency-new:hover {
    background: #e65100;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-emergency-new i {
    transition: transform 0.3s ease;
}

.btn-emergency-new:hover i {
    transform: translateX(5px);
}

/* Hero Carousel - New Design */
.hero-carousel-new {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 700px;
}

.carousel-container-new {
    position: relative;
    width: 100%;
    height: 700px;
}

.carousel-slide-new {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide-new.active {
    display: block;
    animation: zoomIn 1.5s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 119, 179, 0.6) 50%, 
        rgba(0, 159, 227, 0.5) 100%
    );
}

.carousel-content-new {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content-new {
    max-width: 750px;
    animation: slideInUp 1s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-new {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle-new {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.hero-actions-new {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: #fff;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #0077b3 0%, #005f8a 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 159, 227, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: #0077b3;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.btn-hero-primary i,
.btn-hero-secondary i {
    font-size: 18px;
}

/* Carousel Controls - New Design */
.carousel-controls-new {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-dots-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot-new {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-new.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    height: 30px;
    border-radius: 10px;
}

.dot-new:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Video Section - New Design */
.video-section-new {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.video-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 159, 227, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 119, 179, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-new {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
}

.section-title-new {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle-new {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 159, 227, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card-new:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 159, 227, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card-new:hover .video-play-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 159, 227, 0.5));
}

.play-btn-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--primary-color);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-btn-large:hover {
    transform: scale(1.15);
    background: var(--primary-color);
    color: #fff;
}

.play-btn-large i {
    margin-left: 4px;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info-new {
    padding: 30px;
}

.video-info-new h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.video-info-new p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.video-meta {
    display: flex;
    gap: 25px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
}

.video-meta i {
    color: var(--primary-color);
}

/* Responsive - New Design */
@media (max-width: 968px) {
    .emergency-content-new {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-left {
        flex-direction: column;
    }
    
    .hero-title-new {
        font-size: 42px;
    }
    
    .video-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .carousel-controls-new {
        bottom: 15px;
        right: 15px;
        padding: 8px;
        gap: 10px;
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .dot-new {
        width: 8px;
        height: 8px;
    }
    
    .dot-new.active {
        height: 24px;
    }
}

@media (max-width: 768px) {
    .emergency-badge {
        padding: 12px 16px;
    }
    
    .emergency-text-new h2 {
        font-size: 20px;
    }
    
    .hero-carousel-new,
    .carousel-container-new {
        min-height: 600px;
        height: 600px;
    }
    
    .hero-title-new {
        font-size: 36px;
    }
    
    .hero-subtitle-new {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
    
    .section-title-new {
        font-size: 32px;
    }
    
    .video-section-new {
        padding: 80px 0;
    }
    
    .carousel-controls-new {
        bottom: 10px;
        right: 10px;
        padding: 6px;
        gap: 8px;
    }
    
    .carousel-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .dot-new {
        width: 6px;
        height: 6px;
    }
    
    .dot-new.active {
        height: 20px;
    }
}


.video-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 24px;
    font-weight: 600;
}

/* Our Work Section */
.our-work {
    padding: 80px 0;
    background-color: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.work-card {
    text-align: center;
    padding: 50px 35px;
    border-radius: 15px;
    background: var(--white);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #ff4444);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.work-card:hover::before {
    transform: scaleX(1);
}

.work-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.work-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.work-card:hover .work-icon::after {
    transform: scale(1.3);
}

.work-icon.prevention {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.work-icon.protection {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.work-icon.plaidoyer {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.work-icon i {
    font-size: 40px;
    color: var(--white);
    transition: transform 0.4s ease;
}

.work-card:hover .work-icon i {
    transform: scale(1.1) rotate(5deg);
}

.work-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
}

.work-card p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #0077b3;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Global Report Section */
.global-report {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.global-report::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.report-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.report-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.report-text h2 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.report-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.report-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.report-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.report-highlights li {
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-highlights i {
    color: #4ade80;
    font-size: 20px;
}

.btn-report {
    background-color: var(--white);
    color: #667eea;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-report:hover {
    background-color: #f39c12;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.report-cover {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    aspect-ratio: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.report-cover:hover {
    transform: scale(1.05) rotate(2deg);
}

.report-cover i {
    font-size: 100px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.report-year {
    font-size: 32px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 10px 30px;
    border-radius: 25px;
}

/* Latest News Section */
.latest-news {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.latest-news h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    background: #f0f0f0;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.news-image i {
    font-size: 60px;
    opacity: 0.7;
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.4;
}

.news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-content > p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #009fe3;
}

.news-more {
    text-align: center;
}

/* Where We Help Section */
.where-we-help {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.where-we-help h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.location-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--white);
}

.location-card:hover::before {
    opacity: 0.95;
}

.location-card > * {
    position: relative;
    z-index: 1;
}

.location-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.location-icon.santo {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.location-icon.cap-haitien {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.location-icon.les-cayes {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.location-card:hover .location-icon {
    background: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.location-icon i {
    font-size: 36px;
    color: var(--white);
    transition: color 0.4s ease;
}

.location-card:hover .location-icon i {
    color: var(--primary-color);
}

.location-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.4s ease;
}

.location-card:hover h3 {
    color: var(--white);
}

.location-card p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.location-card:hover p {
    color: rgba(255,255,255,0.95);
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-link i {
    transition: transform 0.3s ease;
}

.location-card:hover .location-link {
    color: var(--white);
}

.location-link:hover i {
    transform: translateX(5px);
}

.view-map {
    text-align: center;
}


/* Impact Stats Section */
.impact-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a4d68 0%, #05668d 50%, #009fe3 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 159, 227, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 119, 179, 0.3) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/page-header1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    mix-blend-mode: overlay;
}

.impact-stats .container {
    position: relative;
    z-index: 1;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatCircle 20s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.impact-stats .section-header h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.impact-stats .section-subtitle {
    color: var(--white);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 45px 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
    animation: ripple 1.5s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
    box-shadow: 0 20px 60px rgba(0,0,0,0.35),
                0 0 40px rgba(0, 159, 227, 0.3);
    border-color: rgba(255,255,255,0.4);
}

.stat-icon {
    font-size: 64px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.95);
    display: inline-block;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 6px 12px rgba(255,255,255,0.4));
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 40px rgba(255,255,255,0.8);
}

.stat-number::after {
    content: '+';
    margin-left: 5px;
    font-size: 0.7em;
    opacity: 0.9;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-bar {
    width: 80px;
    height: 5px;
    background: rgba(255,255,255,0.25);
    margin: 20px auto 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,1) 100%);
    transform: translateX(-100%);
    animation: loadBar 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.stat-card:hover .stat-bar::after {
    animation: loadBarGlow 1.5s ease-out forwards;
}

@keyframes loadBar {
    to { transform: translateX(0); }
}

@keyframes loadBarGlow {
    0% { transform: translateX(-100%); }
    100% { 
        transform: translateX(0);
        box-shadow: 0 0 20px rgba(255,255,255,1);
    }
}

/* Get Involved Section */
.get-involved {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.get-involved::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,159,227,0.05) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.get-involved .container {
    position: relative;
    z-index: 1;
}

.get-involved h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    color: #666;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.involvement-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.involvement-card:nth-child(1) {
    animation-delay: 0.2s;
}

.involvement-card:nth-child(2) {
    animation-delay: 0.4s;
}

.involvement-card:nth-child(3) {
    animation-delay: 0.6s;
}

.involvement-card:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.involvement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,159,227,0.1), transparent);
    transition: left 0.5s ease;
}

.involvement-card:hover::before {
    left: 100%;
}

.involvement-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,159,227,0.3);
}

.involvement-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    display: inline-block;
}

.involvement-card:hover i {
    transform: scale(1.2) rotateY(360deg);
    color: #0077b3;
}

.involvement-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.involvement-card:hover h3 {
    color: var(--primary-color);
}

.involvement-card p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #666;
    transition: color 0.3s ease;
}

.involvement-card:hover p {
    color: #333;
}

.involvement-card .btn-primary {
    transition: all 0.3s ease;
}

.involvement-card:hover .btn-primary {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,159,227,0.4);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.input-group {
    position: relative;
    flex: 1;
    max-width: 450px;
    min-width: 280px;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
    z-index: 1;
}

.newsletter-form input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.2);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
    transform: translateY(-2px);
}

.newsletter-form input::placeholder {
    color: #999;
}

.btn-newsletter {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b3 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.5);
    background: linear-gradient(135deg, #0077b3 0%, var(--primary-color) 100%);
}

.btn-newsletter:active {
    transform: translateY(-1px);
}

.btn-newsletter i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
    transform: translateX(5px);
}

.newsletter-privacy {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy i {
    color: var(--primary-color);
}

/* Santo Page Styles */
.village-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.santo-stats {
    margin: 4rem 0;
}

.santo-stats h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.services-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.village-features {
    margin: 4rem 0;
}

.village-features h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.village-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #007bb5);
    color: white;
    border-radius: 10px;
    margin: 4rem 0;
}

.village-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.village-cta .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-secondary:hover {
    background: var(--light-gray);
}

.village-gallery {
    margin: 4rem 0;
}

.village-gallery h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    text-align: center;
}

.placeholder-image {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.placeholder-image i {
    font-size: 3rem;
    color: #ccc;
}

.gallery-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Adjustments for Santo Page */
@media (max-width: 768px) {
    .stats-grid,
    .services-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .video-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .video-title {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .video-overlay i {
        font-size: 60px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-address {
    margin-bottom: 20px;
}

.footer-address p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address i {
    color: var(--primary-color);
    margin-top: 2px;
    min-width: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-motto {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-actions a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #007bb5;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Mobile Dropdown Styles */
    .has-dropdown .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
        margin-top: 0;
        background: var(--light-gray);
    }
    
    .has-dropdown:hover .dropdown {
        transform: none;
    }
    
    .dropdown a {
        padding: 10px 15px;
    }
    
    .dropdown a:hover {
        padding-left: 20px;
    }
    
    .top-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .report-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .input-group {
        width: 100%;
    }
    
    .newsletter-form input {
        max-width: 100%;
    }
    
    .btn-newsletter {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .our-work h2,
    .latest-news h2,
    .where-we-help h2,
    .get-involved h2,
    .impact-stats h2 {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}
/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #0077b3);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.main-content {
    background: var(--white);
}

.main-content h2 {
    color: var(--primary-color);
    margin: 30px 0 20px;
    font-size: 32px;
}

.main-content h3 {
    color: var(--text-color);
    margin: 20px 0 15px;
    font-size: 24px;
}

.main-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.lead {
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Timeline */
.timeline {
    margin: 40px 0;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.timeline-content {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-left: 30px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Team Grid */
.team-subsection-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* Enhanced Team Header */
.team-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.team-header .container {
    position: relative;
    z-index: 1;
}

.team-header .header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-header .header-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.team-header .header-icon i {
    font-size: 48px;
    color: var(--white);
}

.team-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.team-header .header-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Team Intro Enhancements */
.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #009fe3, #00c6ff);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
}

.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3, #00c6ff);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
    transition: transform 0.3s ease;
}

.highlight-item:hover i {
    transform: translateY(-5px) scale(1.1);
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-color);
}

/* Section Header Centered */
.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* Enhanced Team Grid & Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.team-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #009fe3, #00c6ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: #009fe3;
}

/* Featured Card */
.featured-card {
    background: linear-gradient(135deg, #f8fdff 0%, #e6f7ff 100%);
    border: 2px solid #009fe3;
}

.highlight-card {
    grid-column: span 1;
}

/* Card Ribbon */
.card-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 5px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.card-ribbon.special {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

/* Region Badges */
.region-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.region-badge.port-au-prince {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.region-badge.cap-haitien {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.region-badge.les-cayes {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
}

/* Enhanced Team Photo */
.team-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f7ff, #cceeff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 85px;
    color: var(--primary-color);
    position: relative;
    border: 4px solid var(--white);
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.2);
    transition: all 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 159, 227, 0.4);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 198, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .photo-overlay {
    opacity: 1;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.team-title i {
    font-size: 1rem;
}

.team-card > p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 15px 0;
}

/* Team Expertise Tags */
.team-expertise {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.expertise-tag {
    background: linear-gradient(135deg, #009fe3, #00c6ff);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Team Social Links */
.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Enhanced Departments Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.department-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05), rgba(0, 198, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.department-card:hover::before {
    opacity: 1;
}

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 159, 227, 0.15);
    border-color: #009fe3;
}

.dept-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #009fe3, #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    transition: all 0.4s ease;
}

.department-card:hover .dept-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.dept-icon-wrap i {
    font-size: 36px;
    color: var(--white);
}

.department-card h3 {
    margin: 20px 0 15px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.dept-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.dept-count span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: lowercase;
}

.dept-progress {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #009fe3, #00c6ff);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Department Color Variants */
.dept-protection .dept-icon-wrap {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.dept-education .dept-icon-wrap {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.dept-sante .dept-icon-wrap {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.dept-communautaire .dept-icon-wrap {
    background: linear-gradient(135deg, #30cfd0, #330867);
}

.dept-support .dept-icon-wrap {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.dept-plaidoyer .dept-icon-wrap {
    background: linear-gradient(135deg, #ff9a56, #ff6a88);
}

/* Board & Governance */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.board-member {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0;
}

.principle-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.principle-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Job Listings */
.job-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.job-meta {
    color: var(--secondary-color);
    margin: 10px 0;
}

.job-meta i {
    margin-right: 8px;
}

.job-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.job-requirements {
    list-style: none;
    margin: 20px 0;
}

.job-requirements li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.job-requirements li::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Forms */
.contact-form {
    max-width: 800px;
    margin: 40px auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.office-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.office-card p {
    margin: 10px 0;
}

.office-card i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Reporting Section */
.reporting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.reporting-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.reporting-card.urgent {
    border-color: #ff4444;
    background: #fff5f5;
}

.urgent-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff4444;
    margin: 15px 0;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Media Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.resource-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.resource-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Press Releases */
.press-release-item {
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.press-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Coverage List */
.coverage-list {
    margin: 30px 0;
}

.coverage-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.coverage-source {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.coverage-date {
    color: var(--secondary-color);
    font-size: 14px;
}

.coverage-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Mission/Vision Boxes */
.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.mission-box,
.vision-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.mission-list {
    list-style: none;
    margin: 20px 0;
}

.mission-list li {
    padding: 12px 0 12px 35px;
    position: relative;
}

.mission-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

/* Values List */
.values-list {
    list-style: none;
    margin: 30px 0;
}

.values-list li {
    background: var(--light-gray);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.related-links {
    list-style: none;
}

.related-links li {
    margin-bottom: 12px;
}

.related-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.related-links a:hover {
    color: var(--primary-color);
}

/* Highlight Cards */
.impact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.highlight-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.benefit-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.document-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.document-card i {
    font-size: 60px;
    color: #d32f2f;
    margin-bottom: 20px;
}

/* Accountability List */
.accountability-list {
    list-style: none;
    margin: 30px 0;
}

.accountability-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 18px;
}

.accountability-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

/* Responsive Adjustments for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .timeline-content {
        margin-left: 0;
    }
}

/* Grid System for Map Page */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* ========================================
   HISTOIRE PAGE STYLES - MODERN DESIGN
   ======================================== */

/* Histoire Header with Overlay */
.histoire-header {
    position: relative;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.histoire-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/img_sq_1.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.75) 0%, rgba(0, 119, 179, 0.70) 100%);
    z-index: 1;
}

.histoire-header .container {
    position: relative;
    z-index: 2;
}

.header-content {
    text-align: center;
    color: var(--white);
}

.header-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.histoire-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.header-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Stats */
.header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Histoire Content Section */
.histoire-content {
    background: var(--white);
}

/* Introduction Section */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag.center {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.lead-text.center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder Quote */
.founder-quote {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.founder-quote blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-color);
    margin: 0 0 20px 0;
    padding-left: 50px;
}

.founder-quote cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 50px;
}

/* Intro Image */
.intro-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
    color: var(--white);
}

.image-overlay span {
    font-size: 18px;
    font-weight: 600;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #009fe3 0%, #0077b3 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid #009fe3;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(0, 159, 227, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 12px rgba(0, 159, 227, 0.2);
}

.marker-inner {
    width: 8px;
    height: 8px;
    background: #009fe3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.timeline-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-card.active {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
}

.timeline-card.active h3,
.timeline-card.active p {
    color: var(--white);
}

.timeline-card.active .timeline-year {
    background: rgba(255, 255, 255, 0.2);
}

.timeline-card.active .timeline-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    transform: rotate(360deg);
}

.timeline-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.timeline-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.timeline-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-card.active .timeline-meta {
    color: var(--white);
}

.timeline-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--white);
}

.impact-intro {
    margin-bottom: 60px;
}

.impact-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009fe3 0%, #0077b3 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.highlight-card:hover .card-icon {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    transform: scale(1.1) rotateY(360deg);
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
}

.card-hover-effect {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05) 0%, rgba(0, 119, 179, 0.05) 100%);
    transition: bottom 0.4s ease;
}

.highlight-card:hover .card-hover-effect {
    bottom: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    transform: rotateY(360deg);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-secondary.large {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-secondary.large:hover {
    background: transparent;
    color: var(--white);
}

/* Related Section */
.related-section {
    padding: 60px 0;
}

.related-section h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 159, 227, 0.15);
}

.related-card i {
    font-size: 36px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.related-card:hover i {
    transform: scale(1.2);
}

.related-card span {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Enhanced Join Team Section */
.join-team {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    padding: 70px 50px;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.3);
}

.join-team::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.join-team-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.join-team-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.join-team-icon i {
    font-size: 40px;
    color: var(--white);
}

.join-team-text {
    max-width: 600px;
    text-align: left;
}

.join-team h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.join-team p {
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.7;
}

.join-team-cta {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.join-team .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
}

.join-team .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.join-team .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.join-team .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-section {
        gap: 40px;
    }
    
    .impact-highlights,
    .values-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .histoire-header h1 {
        font-size: 40px;
    }
    
    .header-subtitle {
        font-size: 18px;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-section {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .impact-highlights,
    .values-grid,
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
    }
    
    .image-wrapper {
        transform: none;
    }
}

/* ========================================
   MISSION PAGE STYLES - MODERN DESIGN
   ======================================== */

/* Mission Header with Overlay */
.mission-header {
    position: relative;
    background: linear-gradient(135deg, #009fe3 0%, #00c1a5 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.mission-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/img_sq_3.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.mission-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.75) 0%, rgba(0, 193, 165, 0.70) 100%);
    z-index: 1;
}

/* Header Icons */
.header-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.icon-item i {
    font-size: 48px;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.icon-item:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotateY(360deg);
}

.icon-item span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Content Section */
.mission-content {
    background: var(--white);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
}

.section-intro {
    margin-bottom: 50px;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card.main-card {
    position: relative;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-card.main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 159, 227, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3);
}

.icon-circle.vision-icon {
    background: linear-gradient(135deg, #00c1a5 0%, #00a88f 100%);
    box-shadow: 0 8px 20px rgba(0, 193, 165, 0.3);
}

.card-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.mission-card .lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin: 0;
}

.card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05) 0%, rgba(0, 159, 227, 0.1) 100%);
    border-radius: 50%;
    pointer-events: none;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.action-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #009fe3 0%, #00c1a5 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.action-card:hover .action-icon {
    background: linear-gradient(135deg, #009fe3 0%, #00c1a5 100%);
    color: var(--white);
    transform: rotateY(360deg);
}

.action-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.action-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Principles Section */
.principles-section {
    padding: 80px 0;
    background: var(--white);
}

.principles-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.principle-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.principle-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 159, 227, 0.1);
    line-height: 1;
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.principle-card-modern:hover .principle-icon {
    background: linear-gradient(135deg, #009fe3 0%, #00c1a5 100%);
    color: var(--white);
    transform: scale(1.1) rotateY(360deg);
}

.principle-card-modern h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.principle-card-modern p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Responsive Design for Mission Page */
@media (max-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-icons {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mission-header h1 {
        font-size: 40px;
    }
    
    .header-icons {
        flex-direction: row;
        gap: 30px;
    }
    
    .icon-item i {
        font-size: 36px;
        width: 70px;
        height: 70px;
    }
    
    .icon-item span {
        font-size: 14px;
    }
    
    .mission-card.main-card {
        padding: 35px 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .card-header h3 {
        font-size: 26px;
    }
    
    .actions-grid,
    .principles-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   GOUVERNANCE PAGE STYLES
======================================== */

/* Governance Header */
.governance-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.governance-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.08"/></svg>');
    background-size: 40px 40px;
    animation: slideDown 1s ease-out;
}

/* Engagement Section */
.engagement-section {
    margin: 60px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
}

.engagement-header {
    text-align: center;
    margin-bottom: 50px;
}

.engagement-header h2 {
    font-size: 2.5rem;
    margin-top: 15px;
    color: var(--dark-color);
}

.engagement-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.engagement-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.text-highlight {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 159, 227, 0.1);
    border-left: 5px solid #009fe3;
}

.text-highlight i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 28px;
    color: #009fe3;
    opacity: 0.3;
}

.text-highlight .lead {
    margin: 0;
    padding-left: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.secondary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary-color);
    padding-left: 15px;
    border-left: 3px solid #009fe3;
}

/* Engagement Visual */
.engagement-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.trust-circle {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.trust-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 159, 227, 0.3);
    animation: rotate 20s linear infinite;
}

.circle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.circle-inner i {
    font-size: 60px;
}

.circle-label {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.2);
}

.trust-item i {
    color: #009fe3;
    font-size: 20px;
}

.trust-item span {
    font-weight: 600;
    color: var(--text-color);
}

/* Governance Structure Section */
.governance-structure-section {
    margin: 80px 0;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.structure-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.structure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.02), rgba(0, 119, 179, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.structure-card:hover::before {
    opacity: 1;
}

.structure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
}

.card-primary {
    border-top-color: #009fe3;
}

.card-secondary {
    border-top-color: #00c1a5;
}

.card-tertiary {
    border-top-color: #ff9a56;
}

.structure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.3);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out, pulse 2s ease-in-out infinite;
}

.card-secondary .structure-icon {
    background: linear-gradient(135deg, #00c1a5, #00a88f);
    box-shadow: 0 8px 25px rgba(0, 193, 165, 0.3);
}

.card-tertiary .structure-icon {
    background: linear-gradient(135deg, #ff9a56, #ff6a88);
    box-shadow: 0 8px 25px rgba(255, 154, 86, 0.3);
}

.structure-card:hover .structure-icon {
    transform: scale(1.1) rotate(360deg);
    animation: none;
}

.structure-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.structure-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    margin: 20px 0;
    border-radius: 2px;
}

.card-secondary .structure-divider {
    background: linear-gradient(90deg, #00c1a5, #00a88f);
}

.card-tertiary .structure-divider {
    background: linear-gradient(90deg, #ff9a56, #ff6a88);
}

.structure-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.structure-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0f2ff;
    transform: translateX(5px);
}

.feature-item i {
    color: #009fe3;
    font-size: 14px;
}

.card-secondary .feature-item i {
    color: #00c1a5;
}

.card-tertiary .feature-item i {
    color: #ff9a56;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05), rgba(0, 119, 179, 0.1));
    border-radius: 50%;
    pointer-events: none;
}

/* Enhanced Board Grid */
.board-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.board-member-enhanced {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.board-member-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.board-member-enhanced:hover::before {
    transform: scaleX(1);
}

.board-member-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 159, 227, 0.25);
    border-color: #009fe3;
}

/* President Card Special */
.president-card {
    background: linear-gradient(135deg, #e6f7ff 0%, #cceeff 100%);
    border: 2px solid #009fe3;
}

/* Member Icon Badge */
.member-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.4);
}

/* Member Photo */
.member-photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f7ff, #cceeff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #009fe3;
    position: relative;
    border: 4px solid var(--white);
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.2);
    transition: all 0.4s ease;
}

.board-member-enhanced:hover .member-photo {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 159, 227, 0.4);
}

.board-member-enhanced h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.board-member-enhanced .member-role {
    color: #009fe3;
    font-weight: 600;
    margin: 12px 0 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.board-member-enhanced .member-desc {
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 15px 0 20px;
}

/* Member Expertise Tags */
.member-expertise {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Enhanced Principles Grid */
.principles-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.principle-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.principle-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.03), rgba(0, 119, 179, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.principle-card-modern:hover::before {
    opacity: 1;
}

.principle-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 159, 227, 0.2);
    border-color: #009fe3;
}

.principle-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e6f7ff, #cceeff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009fe3;
    font-size: 36px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.15);
    animation: bounce 2s ease-in-out infinite;
}

.principle-card-modern:hover .principle-icon {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    transform: scale(1.1) rotateY(360deg);
    animation: glow 1.5s ease-in-out infinite;
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 159, 227, 0.1);
    transition: all 0.3s ease;
}

.principle-card-modern:hover .principle-number {
    color: rgba(0, 159, 227, 0.2);
    transform: scale(1.1);
}

.principle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Color Variants for Principles */
.principle-transparency .principle-icon {
    background: linear-gradient(135deg, #e6f7ff, #cceeff);
    color: #009fe3;
}

.principle-transparency:hover .principle-icon {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
}

.principle-accountability .principle-icon {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    color: #ff9a56;
}

.principle-accountability:hover .principle-icon {
    background: linear-gradient(135deg, #ff9a56, #ff6a88);
    color: var(--white);
}

.principle-participation .principle-icon {
    background: linear-gradient(135deg, #e6ffe6, #ccffcc);
    color: #00c1a5;
}

.principle-participation:hover .principle-icon {
    background: linear-gradient(135deg, #00c1a5, #00a88f);
    color: var(--white);
}

.principle-compliance .principle-icon {
    background: linear-gradient(135deg, #ffe6f5, #ffcceb);
    color: #f093fb;
}

.principle-compliance:hover .principle-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: var(--white);
}

/* Enhanced Accountability Section */
.accountability-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.accountability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.accountability-content .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-top: 20px;
}

.accountability-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.visual-circle i {
    font-size: 60px;
    margin-bottom: 15px;
}

.circle-text {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.circle-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 159, 227, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 159, 227, 0.6);
    }
}

/* Accountability Grid */
.accountability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.accountability-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #009fe3;
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.accountability-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.15);
}

.accountability-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.accountability-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.accountability-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.accountability-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Enhanced Documents Section */
.documents-section {
    margin: 60px 0;
}

.documents-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.document-card-enhanced {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.document-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #009fe3, #0077b3);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.document-card-enhanced:hover::before {
    transform: scaleY(1);
}

.document-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 159, 227, 0.2);
    border-color: #009fe3;
}

.featured-doc {
    background: linear-gradient(135deg, #e6f7ff 0%, #cceeff 100%);
    border: 2px solid #009fe3;
}

.doc-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 5px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.doc-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.doc-icon-wrapper i {
    font-size: 55px;
    color: #009fe3;
    transition: all 0.3s ease;
}

.document-card-enhanced:hover .doc-icon-wrapper i {
    transform: scale(1.1) rotateY(180deg);
    color: #0077b3;
}

.doc-badge {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.doc-meta {
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.doc-size {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-download {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
    background: linear-gradient(135deg, #0077b3, #009fe3);
}

/* Responsive Design for Governance Page */
@media (max-width: 1024px) {
    .board-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accountability-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .principles-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .engagement-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .governance-header h1 {
        font-size: 2.5rem;
    }
    
    .board-grid-enhanced,
    .principles-grid-modern,
    .documents-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .accountability-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-circle {
        width: 200px;
        height: 200px;
    }
    
    .visual-circle i {
        font-size: 45px;
    }
    
    .circle-text {
        font-size: 2.5rem;
    }
    
    .member-photo {
        width: 110px;
        height: 110px;
        font-size: 70px;
    }
    
    .engagement-content {
        grid-template-columns: 1fr;
    }
    
    .engagement-section {
        padding: 40px 20px;
    }
    
    .engagement-header h2 {
        font-size: 2rem;
    }
    
    .trust-circle {
        width: 180px;
        height: 180px;
    }
    
    .trust-circle i {
        font-size: 45px;
    }
    
    .circle-label {
        font-size: 1.1rem;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .governance-header h1 {
        font-size: 2rem;
    }
    
    .board-member-enhanced,
    .principle-card-modern,
    .document-card-enhanced {
        padding: 25px 20px;
    }
    
    .text-highlight {
        padding: 20px;
    }
    
    .text-highlight .lead {
        font-size: 1rem;
    }
    
    .trust-values {
        flex-direction: column;
    }
    
    .structure-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}


/* Responsive Design for Team Page */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-stats {
        gap: 40px;
    }
    
    .intro-highlights {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .team-header h1 {
        font-size: 2.5rem;
    }
    
    .team-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-card,
    .department-card {
        padding: 25px;
    }
    
    .card-ribbon {
        font-size: 0.75rem;
        padding: 4px 30px;
    }
    
    .join-team {
        padding: 50px 25px;
    }
    
    .join-team h2 {
        font-size: 2rem;
    }
    
    .join-team p {
        font-size: 1rem;
    }
    
    .join-team-content {
        flex-direction: column;
    }
    
    .join-team-text {
        text-align: center;
    }
    
    .join-team-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-header h1 {
        font-size: 2rem;
    }
    
    .team-photo {
        width: 110px;
        height: 110px;
        font-size: 70px;
    }
    
    .dept-icon-wrap {
        width: 65px;
        height: 65px;
    }
    
    .dept-icon-wrap i {
        font-size: 28px;
    }
    
    .dept-count {
        font-size: 1.6rem;
    }
}

/* ========================================
   RAPPORT ANNUEL PAGE STYLES
======================================== */

/* Report Header */
.report-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.report-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.08"/></svg>');
    background-size: 40px 40px;
}

/* Report Introduction */
.report-intro {
    margin: 60px 0;
    text-align: center;
}

.report-intro h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    color: var(--dark-color);
}

.report-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    max-width: 900px;
    margin: 20px auto 50px;
}

/* Intro Highlights */
.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 159, 227, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    border-left: 5px solid #009fe3;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 159, 227, 0.25);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.highlight-content {
    flex: 1;
    text-align: left;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #009fe3;
    line-height: 1;
    margin-bottom: 8px;
    animation: scaleIn 0.8s ease-out;
}

.highlight-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Director Message */
.director-message {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    margin: 80px 0;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.director-message::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05), transparent);
    border-radius: 50%;
}

.message-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.message-photo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 100px;
    box-shadow: 0 10px 40px rgba(0, 159, 227, 0.3);
    border: 5px solid var(--white);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
    overflow: hidden;
}

.message-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.message-signature {
    text-align: center;
}

.signature-line {
    width: 150px;
    height: 2px;
    background: #009fe3;
    margin: 0 auto 10px;
}

.signature-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.message-content {
    position: relative;
}

.message-content h3 {
    font-size: 2rem;
    margin: 20px 0;
    color: var(--dark-color);
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    color: rgba(0, 159, 227, 0.1);
}

.message-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Achievements Section */
.achievements-section {
    margin: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #009fe3;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
}

.achievement-education {
    border-top-color: #009fe3;
}

.achievement-health {
    border-top-color: #00c1a5;
}

.achievement-protection {
    border-top-color: #ff9a56;
}

.achievement-emergency {
    border-top-color: #f093fb;
}

.achievement-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.3);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out, pulse 3s ease-in-out infinite;
}

.achievement-health .achievement-icon {
    background: linear-gradient(135deg, #00c1a5, #00a88f);
    box-shadow: 0 8px 25px rgba(0, 193, 165, 0.3);
}

.achievement-protection .achievement-icon {
    background: linear-gradient(135deg, #ff9a56, #ff6a88);
    box-shadow: 0 8px 25px rgba(255, 154, 86, 0.3);
}

.achievement-emergency .achievement-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotateY(360deg);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #009fe3;
    margin-bottom: 15px;
    line-height: 1;
}

.achievement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.achievement-card > p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.achievement-progress {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0 15px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    border-radius: 10px;
    transition: width 1s ease;
    animation: shimmer 2s ease-in-out infinite;
    background-size: 200% 100%;
}

.achievement-health .progress-bar {
    background: linear-gradient(90deg, #00c1a5, #00a88f);
}

.achievement-protection .progress-bar {
    background: linear-gradient(90deg, #ff9a56, #ff6a88);
}

.achievement-emergency .progress-bar {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.achievement-stat {
    font-weight: 600;
    color: #009fe3;
    font-size: 0.95rem;
}

/* Financial Section */
.financial-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
}

.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.financial-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.chart-circle {
    position: relative;
    width: 300px;
    height: 300px;
    animation: scaleIn 1s ease-out;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: var(--light-gray);
    stroke-width: 20;
}

.circle-programs,
.circle-admin,
.circle-fundraising {
    fill: none;
    stroke-width: 20;
    stroke-linecap: round;
}

.circle-programs {
    stroke: #009fe3;
}

.circle-admin {
    stroke: #ff9a56;
}

.circle-fundraising {
    stroke: #00c1a5;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: #009fe3;
    line-height: 1;
}

.chart-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.legend-color {
    width: 30px;
    height: 15px;
    border-radius: 5px;
}

.legend-color.programs {
    background: linear-gradient(90deg, #009fe3, #0077b3);
}

.legend-color.admin {
    background: linear-gradient(90deg, #ff9a56, #ff6a88);
}

.legend-color.fundraising {
    background: linear-gradient(90deg, #00c1a5, #00a88f);
}

.financial-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.financial-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 5px solid #009fe3;
    animation: fadeInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.financial-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.15);
}

.financial-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    animation: scaleIn 0.6s ease-out, pulse 3s ease-in-out infinite;
}

.financial-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.financial-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #009fe3;
    margin-bottom: 10px;
}

.financial-info p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Sites Section */
.sites-section {
    margin: 80px 0;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.site-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.site-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
}

.site-image {
    height: 200px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.site-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.site-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.site-card:hover .site-image img {
    transform: scale(1.1);
}

.site-content {
    padding: 35px 30px;
}

.site-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.site-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.site-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.site-stat i {
    color: #009fe3;
    font-size: 18px;
}

.site-content > p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 159, 227, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 40px;
    color: rgba(0, 159, 227, 0.15);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 50px 0 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.author-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: #ffd700;
    font-size: 18px;
}

/* Report Download Section */
.report-download-section {
    margin: 80px 0;
    padding: 70px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.report-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 40px 40px;
}

.download-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.download-visual {
    position: relative;
    flex-shrink: 0;
}

.download-icon {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.download-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.download-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

.download-content {
    flex: 1;
    color: var(--white);
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.download-content > p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.download-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.95;
}

.download-features .feature-item i {
    color: #4ade80;
    font-size: 18px;
}

.download-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.btn-download-large {
    background: var(--white);
    color: #009fe3;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-download-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 159, 227, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-download-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-download-large:active::before {
    width: 300px;
    height: 300px;
}

/* Previous Reports Section */
.previous-reports-section {
    margin: 80px 0;
}

.reports-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.report-archive-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.report-archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
}

.report-cover-preview {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.report-cover-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.report-cover-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    animation: slideDown 1s ease-out;
}

.report-cover-bg i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.report-year-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #009fe3;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: scaleIn 0.6s ease-out;
}

.report-details {
    padding: 30px 25px;
}

.report-details h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.report-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.report-stats-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.report-stats-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
    background: var(--light-gray);
    padding: 6px 12px;
    border-radius: 15px;
}

.report-stats-mini i {
    color: #009fe3;
    font-size: 14px;
}

.btn-download-small {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3);
}

.btn-download-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
}

.archive-link {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f7ff 100%);
    border-radius: 20px;
}

.archive-link p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.archive-link .btn-secondary {
    padding: 14px 30px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
}

/* Animation delays for report cards */
.report-archive-card:nth-child(1) { animation-delay: 0.1s; }
.report-archive-card:nth-child(2) { animation-delay: 0.2s; }
.report-archive-card:nth-child(3) { animation-delay: 0.3s; }
.report-archive-card:nth-child(4) { animation-delay: 0.4s; }

.reports-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.timeline-item {
    position: relative;
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-card {
    background: var(--white);
    padding: 40px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
}

.timeline-card i {
    font-size: 60px;
    color: #009fe3;
    margin-bottom: 20px;
}

.timeline-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.timeline-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-secondary-small {
    background: transparent;
    color: #009fe3;
    padding: 10px 25px;
    border: 2px solid #009fe3;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-small:hover {
    background: #009fe3;
    color: var(--white);
}

/* Report CTA */
.report-cta {
    margin: 80px 0;
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f7ff 100%);
    border-radius: 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #009fe3;
    border: 2px solid #009fe3;
}

.cta-buttons .btn-secondary:hover {
    background: #009fe3;
    color: var(--white);
}

/* Animation Delays for Staggered Effect */
.structure-card:nth-child(1) { animation-delay: 0.1s; }
.structure-card:nth-child(2) { animation-delay: 0.2s; }
.structure-card:nth-child(3) { animation-delay: 0.3s; }

.board-member-enhanced:nth-child(1) { animation-delay: 0.1s; }
.board-member-enhanced:nth-child(2) { animation-delay: 0.2s; }
.board-member-enhanced:nth-child(3) { animation-delay: 0.3s; }
.board-member-enhanced:nth-child(4) { animation-delay: 0.4s; }
.board-member-enhanced:nth-child(5) { animation-delay: 0.5s; }
.board-member-enhanced:nth-child(6) { animation-delay: 0.6s; }

.principle-card-modern:nth-child(1) { animation-delay: 0.1s; }
.principle-card-modern:nth-child(2) { animation-delay: 0.2s; }
.principle-card-modern:nth-child(3) { animation-delay: 0.3s; }
.principle-card-modern:nth-child(4) { animation-delay: 0.4s; }

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }

.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.2s; }
.achievement-card:nth-child(3) { animation-delay: 0.3s; }
.achievement-card:nth-child(4) { animation-delay: 0.4s; }

.site-card:nth-child(1) { animation-delay: 0.1s; }
.site-card:nth-child(2) { animation-delay: 0.2s; }
.site-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.timeline-item:nth-child(1) .timeline-card { animation-delay: 0.1s; }
.timeline-item:nth-child(2) .timeline-card { animation-delay: 0.2s; }
.timeline-item:nth-child(3) .timeline-card { animation-delay: 0.3s; }
.timeline-item:nth-child(4) .timeline-card { animation-delay: 0.4s; }

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }

.document-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.document-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.document-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.document-card-enhanced:nth-child(4) { animation-delay: 0.4s; }

.accountability-card:nth-child(1) { animation-delay: 0.05s; }
.accountability-card:nth-child(2) { animation-delay: 0.1s; }
.accountability-card:nth-child(3) { animation-delay: 0.15s; }
.accountability-card:nth-child(4) { animation-delay: 0.2s; }
.accountability-card:nth-child(5) { animation-delay: 0.25s; }
.accountability-card:nth-child(6) { animation-delay: 0.3s; }

.financial-item:nth-child(1) { animation-delay: 0.1s; }
.financial-item:nth-child(2) { animation-delay: 0.2s; }
.financial-item:nth-child(3) { animation-delay: 0.3s; }

/* Hover Effects with Animation */
.structure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
    animation: none;
}

.board-member-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 159, 227, 0.25);
    border-color: #009fe3;
    animation: none;
}

.achievement-card:hover {
    transform: translateY(-10px) rotateZ(2deg);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
    animation: none;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 159, 227, 0.25);
    animation: none;
}

/* Icon Rotations on Hover */
.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotateY(360deg);
    animation: none;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15) rotate(360deg);
    animation: none;
}

/* Shimmer Effect for Highlights */
.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.highlight-card:hover::after {
    left: 100%;
}

/* Progressive Number Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number,
.highlight-number,
.achievement-number {
    animation: countUp 0.8s ease-out;
}

/* Ripple Effect on Click */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary::before,
.btn-download-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before,
.btn-download-large:active::before {
    width: 300px;
    height: 300px;
}

/* Responsive Design for Report Page */
@media (max-width: 1024px) {
    .director-message {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .download-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .download-content {
        text-align: center;
    }
    
    .download-details {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .report-header h1 {
        font-size: 2.5rem;
    }
    
    .report-intro h2 {
        font-size: 2.2rem;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        padding: 25px 20px;
    }
    
    .director-message {
        padding: 40px 30px;
    }
    
    .message-photo {
        width: 150px;
        height: 150px;
        font-size: 80px;
    }
    
    .message-content h3 {
        font-size: 1.6rem;
    }
    
    .achievements-grid,
    .sites-grid,
    .testimonials-grid,
    .reports-timeline {
        grid-template-columns: 1fr;
    }
    
    .chart-circle {
        width: 250px;
        height: 250px;
    }
    
    .chart-percentage {
        font-size: 2.8rem;
    }
    
    .download-icon {
        width: 120px;
        height: 120px;
        font-size: 55px;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .report-header h1 {
        font-size: 2rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .financial-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .financial-amount {
        font-size: 1.6rem;
    }
    
    .site-image {
        height: 150px;
        font-size: 60px;
    }
    
    .report-download-section {
        padding: 50px 20px;
    }
    
    .download-container {
        gap: 30px;
    }
    
    .download-icon {
        width: 100px;
        height: 100px;
        font-size: 45px;
    }
    
    .timeline-year {
        font-size: 2.5rem;
    }
}
/* ===================================
   PREVENTION PAGE STYLES
   =================================== */

/* Prevention Header */
.prevention-header {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.prevention-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.header-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Prevention Intro */
.prevention-intro {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-text .lead {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.highlight-item i {
    color: #4ade80;
    font-size: 1.3rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 159, 227, 0.2);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-badge i {
    font-size: 1.5rem;
}

/* Prevention Approach */
.prevention-approach {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-top-color: var(--primary-color);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 35px;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.approach-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.approach-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Prevention Impact */
.prevention-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.prevention-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.impact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.impact-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.impact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.impact-description {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Prevention Story */
.prevention-story {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.4);
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-info span {
    color: #999;
    font-size: 0.95rem;
}

/* Prevention Programs */
.prevention-programs {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.program-header {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.program-header h3 {
    font-size: 1.3rem;
    line-height: 1.3;
}

.program-card > p {
    padding: 20px 20px 15px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    padding: 0 20px 20px;
}

.program-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features i {
    color: #4ade80;
    font-size: 0.9rem;
}

.program-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.program-beneficiaries {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Prevention CTA */
.prevention-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.prevention-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 40px 40px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-main {
    position: relative;
    z-index: 2;
}

.cta-header {
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-lead {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.cta-impact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.cta-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
}

.cta-stat-content {
    color: var(--white);
}

.cta-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-stat-text {
    font-size: 0.95rem;
    opacity: 0.95;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.cta-action-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-action-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.action-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-action-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.cta-action-card p {
    color: var(--white);
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    gap: 16px;
}

.cta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-quote {
    flex: 1;
    color: var(--white);
}

.cta-quote i {
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 15px;
}

.cta-quote p {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-contact {
    text-align: right;
    color: var(--white);
}

.cta-contact p {
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-contact a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.cta-contact a:hover {
    opacity: 1;
    gap: 12px;
}

/* Responsive Design for Prevention CTA */
@media (max-width: 968px) {
    .cta-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-impact-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
    }
    
    .cta-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-contact {
        text-align: center;
    }
    
    .cta-contact a {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .prevention-cta {
        padding: 60px 0;
    }
    
    .cta-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-lead {
        font-size: 1.1rem;
    }
    
    .cta-stat {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design for Prevention Page */
@media (max-width: 968px) {
    .prevention-header {
        min-height: 400px;
        padding: 80px 0 60px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .header-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .intro-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .approach-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}/* ===================================
   PROTECTION PAGE STYLES
   =================================== */

/* Protection Header */
.protection-header {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.protection-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

/* Protection Intro */
.protection-intro {
    padding: 100px 0;
    background: var(--white);
}

/* Village Model Section */
.village-model {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-top-color: var(--primary-color);
}

.model-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.4);
}

.model-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    color: var(--primary-color);
    font-size: 35px;
}

.model-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.model-card p {
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Care Services Section */
.care-services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 35px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: #4ade80;
    font-size: 1rem;
}

/* Protection Impact */
.protection-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.protection-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Protection Story */
.protection-story {
    padding: 100px 0;
    background: var(--white);
}

/* Protection CTA */
.protection-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.protection-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 40px 40px;
}

/* Responsive Design for Protection Page */
@media (max-width: 968px) {
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .model-grid {
        grid-template-columns: 1fr;
    }
    
    .model-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
/* ===================================
   PROTECTION PAGE STYLES
   =================================== */

/* Protection Header */
.protection-header {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.protection-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

/* Protection Intro */
.protection-intro {
    padding: 100px 0;
    background: var(--white);
}

/* Village Model Section */
.village-model {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-top-color: var(--primary-color);
}

.model-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.4);
}

.model-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    color: var(--primary-color);
    font-size: 35px;
}

.model-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.model-card p {
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Care Services Section */
.care-services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 35px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: #4ade80;
    font-size: 1rem;
}

/* Protection Impact */
.protection-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.protection-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Protection Story */
.protection-story {
    padding: 100px 0;
    background: var(--white);
}

/* Protection CTA */
.protection-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.protection-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 40px 40px;
}

/* Responsive Design for Protection Page */
@media (max-width: 968px) {
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .model-grid {
        grid-template-columns: 1fr;
    }
    
    .model-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* ===================================
   PLAIDOYER PAGE STYLES
   =================================== */

/* Plaidoyer Header */
.plaidoyer-header {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.plaidoyer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

/* Plaidoyer Intro */
.plaidoyer-intro {
    padding: 100px 0;
    background: var(--white);
}

/* Focus Areas Section */
.focus-areas {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 35px;
}

.area-card h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.area-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.area-achievements {
    list-style: none;
}

.area-achievements li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.area-achievements li:last-child {
    border-bottom: none;
}

.area-achievements i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Campaigns Section */
.campaigns-section {
    padding: 100px 0;
    background: var(--white);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.campaign-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
}

.campaign-badge.success {
    background: linear-gradient(135deg, #4ade80, var(--primary-color));
}

.campaign-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.1);
}

.campaign-content {
    padding: 30px 25px;
}

.campaign-content h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.campaign-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.campaign-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.campaign-stat {
    flex: 1;
    text-align: center;
}

.campaign-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.campaign-stat span {
    font-size: 0.85rem;
    color: #999;
}

/* Plaidoyer Impact */
.plaidoyer-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.plaidoyer-impact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.partner-category {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.15);
}

.partner-category h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-category h3 i {
    font-size: 1.6rem;
}

.partner-list {
    list-style: none;
}

.partner-list li {
    padding: 12px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.partner-list li:last-child {
    border-bottom: none;
}

.partner-list li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Plaidoyer CTA */
.plaidoyer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.plaidoyer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 40px 40px;
}

/* Responsive Design for Plaidoyer Page */
@media (max-width: 968px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .campaign-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===========================
   Enhanced Pages Styling
   =========================== */

/* Emergency Page (urgences.html) */
.emergency-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.emergency-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.emergency-header .header-content {
    position: relative;
    z-index: 1;
}

.emergency-alert-section {
    background: #ff3333;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.alert-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.alert-box i {
    font-size: 60px;
    color: white;
    animation: pulse 2s infinite;
}

.alert-content {
    color: white;
}

.alert-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.emergency-number {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-top: 15px;
    transition: all 0.3s;
}

.emergency-number:hover {
    background: rgba(0,0,0,0.5);
    transform: scale(1.05);
}

.emergency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.stat-card.blue-gradient {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.2);
}

.stat-card i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #009fe3;
}

.stat-card.blue-gradient i {
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.emergency-services {
    margin: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #009fe3;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: #009fe3;
    margin-top: 4px;
}

.emergency-process {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
}

.process-timeline {
    margin-top: 40px;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    height: calc(100% + 10px);
    width: 3px;
    background: #009fe3;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0,159,227,0.3);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #009fe3;
}

.emergency-cta {
    margin: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 18px 40px;
    font-size: 18px;
}

.support-section {
    margin: 80px 0;
    text-align: center;
}

.donation-impact {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.impact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    min-width: 250px;
    transition: all 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.2);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #009fe3;
    margin-bottom: 15px;
}

/* Donation Page (don.html) */
.donation-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
}

.donation-impact-banner {
    background: #f8f9fa;
    padding: 60px 0;
}

.impact-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impact-message h2 {
    font-size: 36px;
    color: #009fe3;
    margin-bottom: 20px;
}

.donation-tabs {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    border: 2px solid #009fe3;
    background: white;
    color: #009fe3;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #009fe3;
    color: white;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.amount-btn {
    padding: 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #009fe3;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover,
.amount-btn.selected {
    border-color: #009fe3;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
    transform: scale(1.05);
}

.donation-impact-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.donation-impact-details ul {
    list-style: none;
}

.donation-impact-details li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.donation-impact-details li:last-child {
    border-bottom: none;
}

.donation-impact-details i {
    color: #009fe3;
    font-size: 24px;
}

.donation-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #009fe3;
    box-shadow: 0 0 0 3px rgba(0,159,227,0.1);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #009fe3;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 12px;
    margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.secure-note {
    text-align: center;
    color: #666;
    margin-top: 20px;
    font-size: 14px;
}

.other-ways-section {
    margin: 80px 0;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.way-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.way-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.way-card i {
    font-size: 48px;
    color: #009fe3;
    margin-bottom: 20px;
}

.transparency-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin: 80px 0;
    text-align: center;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.transparency-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.percentage {
    font-size: 56px;
    font-weight: 700;
    color: #009fe3;
    margin-bottom: 15px;
}

.transparency-note {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.testimonials-section {
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: #009fe3;
    opacity: 0.2;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author {
    font-weight: 600;
    color: #009fe3;
}

.faq-donation {
    margin: 80px 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #009fe3;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Media Page (media.html) */
.media-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
}

.quick-links-banner {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 3px solid #009fe3;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,159,227,0.15);
    color: #009fe3;
}

.quick-link i {
    font-size: 36px;
    color: #009fe3;
}

.press-contact {
    margin: 80px 0;
}

.press-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.press-contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.press-contact-card.featured {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
}

.press-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.2);
}

.press-avatar,
.press-contact-card .interview-icon,
.press-contact-card .visit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.press-avatar i,
.interview-icon i,
.visit-icon i {
    font-size: 36px;
}

.press-name {
    font-size: 20px;
    margin: 15px 0 5px;
}

.press-title {
    opacity: 0.9;
    margin-bottom: 20px;
}

.press-contact-details p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.availability {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.interview-options {
    list-style: none;
    margin: 20px 0;
}

.interview-options li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.press-releases {
    margin: 80px 0;
}

.press-release-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.press-release-item.featured {
    border-left: 5px solid #009fe3;
}

.press-release-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,159,227,0.15);
}

.press-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff3333;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.press-date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.press-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.read-more,
.download-pdf {
    text-decoration: none;
    color: #009fe3;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more:hover,
.download-pdf:hover {
    color: #0077b3;
    gap: 12px;
}

.view-archive {
    text-align: center;
    margin-top: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.resource-card.featured {
    border: 3px solid #009fe3;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.resource-icon.blue {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
}

.resource-icon i {
    font-size: 36px;
    color: #009fe3;
}

.resource-icon.blue i {
    color: white;
}

.resource-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-guidelines {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
}

.guideline-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.guideline-section.important {
    border-left: 5px solid #ff3333;
}

.guidelines-list {
    list-style: none;
}

.guidelines-list li {
    padding: 15px 0;
    display: flex;
    align-items: start;
    gap: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.guidelines-list li:last-child {
    border-bottom: none;
}

.download-guidelines {
    text-align: center;
    margin-top: 40px;
}

.media-coverage {
    margin: 80px 0;
}

.coverage-list {
    margin-top: 40px;
}

.coverage-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    transition: all 0.3s;
}

.coverage-item.featured {
    border-left: 5px solid #009fe3;
}

.coverage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,159,227,0.15);
}

.coverage-logo {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-logo i {
    font-size: 36px;
    color: #009fe3;
}

.coverage-details {
    flex: 1;
}

.coverage-source {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.coverage-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.coverage-link {
    color: #009fe3;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.media-newsletter {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 60px;
    border-radius: 20px;
    margin: 80px 0;
}

.newsletter-container {
    display: flex;
    gap: 40px;
    align-items: center;
    color: white;
}

.newsletter-icon {
    font-size: 80px;
    opacity: 0.3;
}

.newsletter-content {
    flex: 1;
}

.press-signup-form {
    margin-top: 30px;
}

.press-signup-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.press-signup-form input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.media-support {
    margin: 60px 0;
}

.support-box {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.support-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.support-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 40px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #009fe3;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.support-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.2);
}

.support-btn i {
    font-size: 36px;
}

/* Careers Page (carrieres.html) */
.careers-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
}

.career-stats-banner {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #009fe3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.benefit-card.featured {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon.blue {
    background: rgba(255,255,255,0.2);
}

.benefit-icon i {
    font-size: 32px;
    color: #009fe3;
}

.benefit-card.featured .benefit-icon i {
    color: white;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
}

.job-listings-section {
    margin: 80px 0;
}

.job-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #009fe3;
    background: #009fe3;
    color: white;
}

.job-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.job-card.featured {
    border-left: 5px solid #009fe3;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff3333;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.job-tag {
    background: #009fe3;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.job-title-area h3 {
    font-size: 28px;
    color: #009fe3;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-details {
    margin: 30px 0;
}

.job-details h4 {
    color: #009fe3;
    margin: 20px 0 15px;
}

.job-requirements {
    list-style: none;
}

.job-requirements li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.job-requirements li:last-child {
    border-bottom: none;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.view-all-jobs {
    text-align: center;
    padding: 60px 0;
}

.internship-section {
    margin: 80px 0;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
}

.internship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.internship-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.internship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.internship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.internship-icon i {
    font-size: 36px;
    color: white;
}

.internship-benefits {
    list-style: none;
    margin: 20px 0;
}

.internship-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
}

.domains {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.domain-tag {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 12px;
    color: #009fe3;
    font-weight: 600;
}

.internship-info-box {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 60px;
    border-radius: 20px;
    margin-top: 60px;
    color: white;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 48px;
    margin-bottom: 15px;
}

.application-process {
    margin: 80px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    transition: all 0.3s;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,159,227,0.15);
}

.step-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.step-icon i {
    font-size: 32px;
    color: #009fe3;
}

.step-content h3 {
    color: #009fe3;
    margin-bottom: 10px;
}

.step-duration {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.step-connector {
    width: 3px;
    height: 40px;
    background: #009fe3;
    margin: 0 auto;
}

.application-tips {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin-top: 60px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.tip-card i {
    font-size: 48px;
    color: #009fe3;
    margin-bottom: 20px;
}

.careers-cta {
    margin: 80px 0;
}

.cta-content {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 80px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

/* Contact Page (contact.html) */
.contact-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
}

.quick-contact-banner {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 3px solid #009fe3;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-contact-item.emergency {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: white;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,159,227,0.15);
}

.quick-contact-item i {
    font-size: 36px;
    color: #009fe3;
}

.quick-contact-item.emergency i {
    color: white;
    animation: pulse 2s infinite;
}

.contact-label {
    font-size: 14px;
    opacity: 0.8;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
}

.contact-methods {
    margin: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.contact-card.featured {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    color: white;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon.blue {
    background: rgba(255,255,255,0.2);
}

.contact-icon i {
    font-size: 36px;
    color: #009fe3;
}

.contact-card.featured .contact-icon i {
    color: white;
}

.contact-number,
.contact-email,
.contact-address {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
}

.contact-hours {
    background: rgba(0,0,0,0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-card.featured .contact-hours {
    background: rgba(255,255,255,0.2);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn:hover {
    transform: scale(1.05);
}

.social-note {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.8;
}

.contact-form-section {
    margin: 80px 0;
}

.modern-form {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.modern-form label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.char-count {
    font-size: 12px;
    color: #666;
    text-align: right;
    margin-top: 5px;
}

.offices-section {
    margin: 80px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.office-card.main-office {
    border: 3px solid #009fe3;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,159,227,0.15);
}

.office-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #009fe3;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.office-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.office-icon i {
    font-size: 36px;
    color: white;
}

.office-details {
    margin: 30px 0;
}

.office-address {
    margin: 20px 0;
    display: flex;
    align-items: start;
    gap: 12px;
}

.office-contact p,
.office-hours p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-contact a {
    color: #009fe3;
    text-decoration: none;
}

.office-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.map-notice {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.map-notice i {
    font-size: 24px;
    color: #009fe3;
    flex-shrink: 0;
}

.reporting-section {
    margin: 80px 0;
}

.emergency-section {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    padding: 80px 60px;
    border-radius: 20px;
    color: white;
}

.reporting-header {
    text-align: center;
    margin-bottom: 40px;
}

.reporting-header i {
    font-size: 60px;
    margin-bottom: 20px;
}

.reporting-content {
    max-width: 1000px;
    margin: 0 auto;
}

.reporting-intro {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.reporting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.reporting-card {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #333;
}

.reporting-card.urgent-card {
    background: white;
    border: 3px solid #ffeb3b;
}

.urgent-icon,
.confidential-icon,
.anonymous-icon {
    width: 80px;
    height: 80px;
    background: #ff3333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.urgent-icon i,
.confidential-icon i,
.anonymous-icon i {
    font-size: 36px;
    color: white;
}

.urgent-number a,
.email-address a {
    color: #009fe3;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
}

.reporting-process {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin: 60px 0;
}

.process-list {
    margin-top: 30px;
}

.process-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.process-item .process-number {
    width: 50px;
    height: 50px;
    background: white;
    color: #009fe3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-text h4 {
    margin-bottom: 10px;
}

.reporting-assurance {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.reporting-assurance i {
    font-size: 36px;
    flex-shrink: 0;
}

.faq-section {
    margin: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,159,227,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 24px;
    color: #009fe3;
}

.faq-question h3 {
    color: #009fe3;
    font-size: 18px;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 20px;
}

.contact-support-section {
    margin: 80px 0;
}

.support-banner {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 80px 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.support-banner i {
    font-size: 80px;
    opacity: 0.8;
}

.support-content {
    flex: 1;
    text-align: center;
}

.support-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive Design for Enhanced Pages */
@media (max-width: 968px) {
    .emergency-stats,
    .services-grid,
    .benefits-grid,
    .ways-grid,
    .resources-grid,
    .internship-grid,
    .tips-grid,
    .offices-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .newsletter-container,
    .support-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .coverage-item {
        flex-direction: column;
    }
    
    .modern-form,
    .emergency-section,
    .cta-content {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .cta-buttons,
    .support-buttons,
    .office-actions {
        flex-direction: column;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
    }
    
    .job-meta,
    .coverage-meta {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===================================
   ENHANCED URGENCES PAGE STYLES
   =================================== */

/* Header Icon Animation */
.header-icon-animated {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.header-icon-animated i {
    font-size: 50px;
    color: var(--white);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

/* Header Badges */
.header-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.header-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.header-badges .badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Section Header with Icon */
.section-header-with-icon {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.section-header-with-icon i {
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.8;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Enhanced Timeline */
.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}

.timeline-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

.timeline-time i {
    font-size: 0.85rem;
}

/* Testimonials Emergency Section */
.testimonials-emergency {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid-emergency {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-emergency-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    border-radius: 20px 20px 0 0;
}

.testimonial-emergency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.testimonial-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: #fbbf24;
}

.testimonial-rating i {
    font-size: 1rem;
}

/* Emergency Partners Section */
.emergency-partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.partner-logo-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.partner-logo-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.partner-logo-card p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

/* FAQ Emergency Section */
.faq-emergency {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-emergency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-emergency-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-emergency-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.15);
}

.faq-emergency-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-emergency-question i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-emergency-question h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
}

.faq-emergency-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Enhanced Impact Cards */
.impact-card.enhanced {
    position: relative;
    transition: all 0.3s ease;
}

.impact-card.enhanced .impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    transition: all 0.3s ease;
}

.impact-card.enhanced:hover .impact-icon {
    transform: scale(1.1) rotate(10deg);
}

.impact-card.enhanced .amount {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-details {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
}

.impact-details li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.impact-details i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    z-index: 2;
}

.impact-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

/* Donation Stats Banner */
.donation-stats-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(0, 159, 227, 0.2);
}

.donation-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donation-stat i {
    font-size: 40px;
    color: var(--primary-color);
}

.donation-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.donation-stat span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Pulse Animation for Button */
.pulse-animation {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 159, 227, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(0, 159, 227, 0.5);
    }
}

.donation-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.donation-note i {
    color: var(--primary-color);
}

/* Responsive Design for Enhanced Urgences */
@media (max-width: 968px) {
    .testimonials-grid-emergency {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-stats-banner {
        grid-template-columns: 1fr;
    }
    
    .header-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-stat {
        flex-direction: column;
        text-align: center;
    }
    
    .header-icon-animated {
        width: 80px;
        height: 80px;
    }
    
    .header-icon-animated i {
        font-size: 40px;
    }
}


/* ===================================
   ADVANCED VISUAL EFFECTS - URGENCES
   =================================== */

/* Waves Animation */
.waves-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
}

#wave1 {
    background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\" preserveAspectRatio=\"none\"><path d=\"M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z\" fill=\"rgba(255,255,255,0.1)\"/></svg>');
    animation: wave 25s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    z-index: 1;
}

#wave2 {
    background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\" preserveAspectRatio=\"none\"><path d=\"M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z\" fill=\"rgba(255,255,255,0.05)\"/></svg>');
    animation: wave 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    z-index: 2;
}

#wave3 {
    background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\" preserveAspectRatio=\"none\"><path d=\"M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z\" fill=\"rgba(255,255,255,0.08)\"/></svg>');
    animation: wave 30s cubic-bezier(0.36, 0.45, 0.63, 0.53) 0s infinite, swell 7s ease -1.25s infinite;
    z-index: 3;
}

#wave4 {
    background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\" preserveAspectRatio=\"none\"><path d=\"M0,0V6c0,21.6,291,111.46,741,110.26,445.39,3.6,459-88.3,459-110.26V0Z\" fill=\"rgba(255,255,255,0.15)\"/></svg>');
    animation: wave 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) 0s infinite;
    z-index: 4;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(-50%); }
}

@keyframes swell {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Particles Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Floating Animation for Service Cards */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.floating:nth-child(2) {
    animation-delay: 0.5s;
}

.floating:nth-child(3) {
    animation-delay: 1s;
}

.floating:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Enhanced Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scale(1);
}

.service-icon {
    position: relative;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.2);
}

/* Glowing Effect on Stats Cards */
.stat-card {
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
    animation: rotate-glow 2s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3D Flip Effect for Timeline Items */
.timeline-item {
    perspective: 1000px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.timeline-item:hover {
    transform: rotateY(5deg) scale(1.02);
}

.timeline-content {
    backface-visibility: hidden;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 20px 60px rgba(0, 159, 227, 0.3);
}

/* Testimonial Cards Advanced Effects */
.testimonial-emergency-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-emergency-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 159, 227, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

.testimonial-emergency-card:hover::after {
    box-shadow: 0 25px 60px rgba(0, 159, 227, 0.4);
}

.testimonial-icon {
    transition: all 0.5s ease;
}

.testimonial-emergency-card:hover .testimonial-icon {
    transform: scale(1.15) rotate(360deg);
}

/* Partners Logo Enhanced */
.partner-logo-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-logo-card i {
    transition: all 0.4s ease;
}

.partner-logo-card:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #0077b3;
}

.partner-logo-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 159, 227, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.partner-logo-card:hover::before {
    width: 120%;
    height: 120%;
}

/* FAQ Items Slide Effect */
.faq-emergency-item {
    position: relative;
}

.faq-emergency-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #009fe3, #0077b3);
    transition: width 0.3s ease;
}

.faq-emergency-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

/* Impact Card Tilt Effect */
.impact-card.enhanced {
    transition: all 0.4s ease;
}

.impact-card.enhanced:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
}

/* Donation Button Ripple Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Text Gradient Animation */
.emergency-header h1 {
    background: linear-gradient(90deg, #ffffff, #e0f4ff, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shine 3s linear infinite;
}

@keyframes text-shine {
    to {
        background-position: 200% center;
    }
}

/* Alert Box Pulse */
.alert-box {
    animation: alert-pulse 2s ease-in-out infinite;
}

@keyframes alert-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
    }
}

/* Emergency Number Glow */
.emergency-number {
    position: relative;
    animation: number-glow 2s ease-in-out infinite;
}

@keyframes number-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.8),
                     0 0 30px rgba(220, 38, 38, 0.6);
    }
}

/* Loading Animation for Stats */
.stat-number {
    font-variant-numeric: tabular-nums;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .waves-animation {
        height: 80px;
    }
    
    .particles {
        display: none;
    }
}

@media (max-width: 640px) {
    .floating {
        animation: none;
    }
    
    .waves-animation {
        height: 50px;
    }
}


/* ===================================
   CORRECTIONS & OPTIMIZATIONS
   =================================== */

/* Fix emergency header positioning */
.emergency-header {
    position: relative;
    overflow: hidden;
}

.emergency-header .container {
    position: relative;
    z-index: 10;
}

/* Ensure waves stay in background */
.waves-animation {
    z-index: 1;
}

.particles {
    z-index: 2;
}

/* Fix floating animation conflict */
.service-card.floating:hover {
    animation: floating 3s ease-in-out infinite;
}

/* Improve button visibility */
.btn-primary {
    z-index: 5;
    position: relative;
}

/* Fix stat card overlap */
.stat-card {
    z-index: 3;
}

/* Ensure text is always readable */
.emergency-header h1,
.emergency-header .subtitle,
.emergency-header .badge {
    position: relative;
    z-index: 10;
}

/* Fix alert box stacking */
.alert-box {
    z-index: 100;
    position: relative;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Fix parallax overflow */
.emergency-header {
    will-change: transform;
}

/* Improve mobile performance */
@media (max-width: 768px) {
    .wave {
        display: none;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1);
    }
    
    .emergency-header {
        transform: none !important;
    }
}

/* Add smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix button hover state */
.btn-primary.large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* Improve testimonial card rendering */
.testimonial-emergency-card {
    will-change: transform, box-shadow;
}

/* Fix partner card positioning */
.partner-logo-card {
    position: relative;
    z-index: 1;
}

/* Ensure FAQ items are clickable */
.faq-emergency-item {
    z-index: 1;
}

/* Fix donation stats banner */
.donation-stats-banner {
    position: relative;
    z-index: 5;
}

/* Improve timeline 3D effect */
.timeline-item {
    will-change: transform;
}

/* Fix header icon animation */
.header-icon-animated {
    will-change: transform, box-shadow;
}


/* ===================================
   COMPACT SERVICE CARDS LAYOUT
   =================================== */

/* Reduce service card size and align in grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 25px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Responsive for tablets */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive for mobile */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
}


/* ===================================
   MEDIA PAGE ENHANCED DESIGN
   =================================== */

/* Media Header Enhanced */
.media-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.media-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"100\" height=\"100\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"2\" fill=\"white\" opacity=\"0.1\"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.header-icon-media {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulseMedia 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.header-icon-media i {
    font-size: 50px;
    color: var(--white);
}

@keyframes pulseMedia {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.header-stats-mini {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.header-stats-mini span {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-stats-mini span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Quick Links Enhanced */
.quick-links-banner {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 159, 227, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-link:hover::before {
    left: 100%;
}

.quick-link:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.2);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.quick-link:hover .quick-link-icon {
    transform: rotateY(360deg) scale(1.1);
}

.quick-link-icon i {
    font-size: 24px;
    color: var(--white);
}

.quick-link span {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Section Title Modern */
.section-title-modern {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-modern i {
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.8;
    display: block;
    margin-bottom: 15px;
}

.section-title-modern h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title-modern h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    border-radius: 2px;
}

/* Press Contact Cards Enhanced */
.press-contact {
    padding: 80px 0;
    background: var(--white);
}

.press-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.press-contact-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.press-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-contact-card.card-hover-effect:hover::before {
    opacity: 1;
}

.press-contact-card.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.press-contact-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.02), rgba(0, 119, 179, 0.02));
}

.press-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 40px;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    transition: all 0.3s ease;
}

.press-contact-card:hover .press-avatar {
    transform: scale(1.1) rotate(5deg);
}

.press-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 10px 0;
}

.press-title {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.press-contact-details p {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.press-contact-details i {
    color: var(--primary-color);
    width: 20px;
}

.availability {
    margin-top: 15px;
    padding: 10px;
    background: #f0f9ff;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* Press Release Items Enhanced */
.press-releases {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.press-release-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.press-release-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.15);
}

.press-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.press-date {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.press-release-item h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.press-release-item:hover h3 {
    color: var(--primary-color);
}

.press-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.download-pdf {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.download-pdf:hover {
    color: #dc2626;
}

/* Resources Grid Enhanced */
.media-resources {
    padding: 80px 0;
    background: var(--white);
}

.resources-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.resource-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.resource-card:hover::after {
    transform: scale(1);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 35px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.resource-card:hover .resource-icon {
    transform: rotateY(360deg) scale(1.1);
}

.resource-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.resource-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.resource-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.resource-meta span {
    background: #f0f9ff;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.resource-card button {
    position: relative;
    z-index: 1;
}

/* Guidelines Section Enhanced */
.media-guidelines {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.guideline-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.guideline-section:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.15);
}

.guideline-section.important {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02), rgba(220, 38, 38, 0.01));
}

.guideline-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guideline-section h3 i {
    color: var(--primary-color);
}

.guideline-section.important h3 i {
    color: #dc2626;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    padding: 12px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.guidelines-list li:last-child {
    border-bottom: none;
}

.guidelines-list i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
}

.download-guidelines {
    text-align: center;
    margin-top: 40px;
}

/* Coverage Items Enhanced */
.media-coverage {
    padding: 80px 0;
    background: var(--white);
}

.coverage-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.coverage-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.15);
    border-color: var(--primary-color);
}

.coverage-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 35px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.coverage-item:hover .coverage-logo {
    transform: rotate(360deg) scale(1.1);
}

.coverage-source {
    display: inline-block;
    background: #f0f9ff;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.coverage-details h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.coverage-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.coverage-date,
.coverage-type {
    color: #999;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.coverage-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.coverage-link:hover {
    gap: 12px;
}

/* Newsletter Section Enhanced */
.media-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    overflow: hidden;
}

.media-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 60px;
    color: var(--white);
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.press-signup-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    transform: translateY(-2px);
}

.form-checkbox {
    margin-bottom: 20px;
}

.form-checkbox label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Media Support Section */
.media-support {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.support-box {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.support-box h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.support-options {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.support-btn {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
}

.support-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.4);
}

.support-btn i {
    font-size: 1.3rem;
}

/* Responsive Media Page */
@media (max-width: 968px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .coverage-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .press-signup-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .header-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===================================
   MAP PAGE (CARTE.HTML) ENHANCED DESIGN
   =================================== */

/* Map Page Header */
.map-page-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.map-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"60\" height=\"60\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30 10 L40 30 L30 50 L20 30 Z\" fill=\"white\" opacity=\"0.05\"/></svg>');
    background-size: 60px 60px;
    animation: moveMapPattern 25s linear infinite;
}

@keyframes moveMapPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.header-icon-map {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulseMap 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
}

.header-icon-map::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rippleMap 3s ease-out infinite;
}

@keyframes pulseMap {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes rippleMap {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.header-icon-map i {
    font-size: 55px;
    color: var(--white);
}

/* Map Introduction Section */
.map-intro-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
}

.intro-icon i {
    font-size: 40px;
    color: var(--white);
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.intro-content .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
}

/* Map Content Section */
.map-content {
    padding: 80px 0;
    background: var(--white);
}

.map-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    margin-bottom: 80px;
}

.map-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 2px solid #009fe3;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.legend-item i {
    font-size: 20px;
}

/* Locations Grid */
.locations-section {
    margin-top: 80px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.location-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.location-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.location-card-modern.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.03), rgba(0, 119, 179, 0.03));
}

.location-card-header {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    padding: 30px;
    text-align: center;
    position: relative;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.location-card-modern:hover .location-icon {
    transform: rotateY(360deg) scale(1.1);
}

.location-icon i {
    font-size: 35px;
    color: var(--white);
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.location-card-body {
    padding: 30px;
    flex: 1;
}

.location-card-body h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.location-region {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-region i {
    color: var(--primary-color);
}

.location-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.location-stats {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 20px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.location-card-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.btn-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 159, 227, 0.3);
}

.btn-location:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.4);
    gap: 15px;
}

/* Map Impact Section */
.map-impact-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05), rgba(0, 119, 179, 0.05));
    border-radius: 20px;
}

.impact-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.impact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 25px rgba(0, 159, 227, 0.4);
    animation: pulseHeart 2s ease-in-out infinite;
}

@keyframes pulseHeart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.impact-icon i {
    font-size: 50px;
    color: var(--white);
}

.impact-box h3 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.impact-box > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.impact-stat {
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Responsive Design for Map Page */
@media (max-width: 968px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .map-legend {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        display: inline-block;
    }
}

@media (max-width: 640px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .location-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-icon-map {
        width: 90px;
        height: 90px;
    }
    
    .header-icon-map i {
        font-size: 45px;
    }
    
    #map {
        height: 400px;
    }
}


/* ===================================
   SANTO PAGE ENHANCED DESIGN
   =================================== */

/* Santo Header */
.santo-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.santo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"80\" height=\"80\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"40\" cy=\"40\" r=\"3\" fill=\"white\" opacity=\"0.1\"/></svg>');
    background-size: 80px 80px;
    animation: movePattern 30s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.header-icon-village {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulseVillage 2.5s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
    position: relative;
}

.header-icon-village::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rippleVillage 2.5s ease-out infinite;
}

@keyframes pulseVillage {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes rippleVillage {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.header-icon-village i {
    font-size: 60px;
    color: var(--white);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 25px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.location-badge i {
    font-size: 1.1rem;
}

/* Village Introduction */
.village-intro-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.intro-content-village {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon-village {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.3);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.05);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.intro-icon-village i {
    font-size: 45px;
    color: var(--white);
}

.intro-content-village h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 25px;
}

.intro-content-village .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #666;
}

/* Santo Content Section */
.santo-content {
    padding: 80px 0;
}

/* Santo Stats Section */
.santo-stats-section {
    margin-bottom: 80px;
}

.santo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.santo-stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.santo-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 159, 227, 0.1), transparent);
    transition: left 0.5s ease;
}

.santo-stat-card:hover::before {
    left: 100%;
}

.santo-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.santo-stat-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05), rgba(0, 119, 179, 0.05));
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.4);
    transition: all 0.4s ease;
}

.santo-stat-card:hover .stat-icon-circle {
    transform: rotateY(360deg) scale(1.1);
}

.stat-icon-circle i {
    font-size: 40px;
    color: var(--white);
}

.santo-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.santo-stat-card .stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.santo-stat-card .stat-description {
    font-size: 0.9rem;
    color: #999;
}

/* Programs Section */
.programs-section {
    margin: 100px 0;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
}

.programs-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 50px;
}

.program-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 159, 227, 0.25);
    border-color: var(--primary-color);
}

.program-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.03), rgba(0, 119, 179, 0.03));
}

.program-header {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.program-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    transform: rotateY(360deg) scale(1.15);
}

.program-icon i {
    font-size: 45px;
    color: var(--white);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-body {
    padding: 35px;
    flex: 1;
}

.program-body h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.program-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item-small {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 0.9rem;
}

.feature-item-small i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.program-stats {
    display: flex;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.08), rgba(0, 119, 179, 0.08));
    border-top: 2px solid #e5e7eb;
    gap: 20px;
}

.mini-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mini-stat i {
    font-size: 28px;
    color: var(--primary-color);
}

.mini-stat span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

/* Services Grid Santo */
.services-grid-santo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card-santo {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.service-card-santo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.service-icon-santo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card-santo:hover .service-icon-santo {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-santo i {
    font-size: 32px;
    color: var(--white);
}

.service-card-santo h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card-santo p {
    color: #666;
    line-height: 1.7;
}

/* Santo CTA Section */
.santo-cta-section {
    margin: 80px 0;
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.08), rgba(0, 119, 179, 0.08));
    border-radius: 30px;
}

.cta-box-santo {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.cta-icon-santo {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 35px rgba(0, 159, 227, 0.4);
    animation: pulseVillage 2s ease-in-out infinite;
}

.cta-icon-santo i {
    font-size: 55px;
    color: var(--white);
}

.cta-box-santo h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-box-santo p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons-santo {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    box-shadow: 0 5px 25px rgba(0, 159, 227, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 159, 227, 0.5);
}

.btn-cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Santo Gallery */
.santo-gallery-section {
    margin-top: 80px;
}

.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.santo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-item-santo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1 / 1;
}

.gallery-item-santo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-santo.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-santo:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 35px rgba(0, 159, 227, 0.2);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-santo:hover .gallery-caption {
    opacity: 1;
}

.placeholder-image-santo {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 15px;
}

.gallery-item-santo.large .placeholder-image-santo {
    height: 100%;
}

.placeholder-image-santo i {
    font-size: 60px;
    opacity: 0.7;
}

.placeholder-image-santo span {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

/* Responsive Design for Santo Page */
@media (max-width: 968px) {
    .santo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid-santo {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .santo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-santo.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .santo-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-santo {
        grid-template-columns: 1fr;
    }
    
    .santo-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-santo {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .header-icon-village {
        width: 100px;
        height: 100px;
    }
    
    .header-icon-village i {
        font-size: 50px;
    }
}


/* ===================================
   EQUIPE PAGE PROFESSIONAL DESIGN
   =================================== */

/* Equipe Header */
.equipe-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    position: relative;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.equipe-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width=\"60\" height=\"60\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"30\" cy=\"30\" r=\"2\" fill=\"white\" opacity=\"0.15\"/></svg>');
    background-size: 60px 60px;
    animation: movePattern 25s linear infinite;
}

.header-icon-equipe {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulseEquipe 2.5s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.header-icon-equipe::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rippleEquipe 2.5s ease-out infinite;
}

@keyframes pulseEquipe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes rippleEquipe {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.header-icon-equipe i {
    font-size: 70px;
    color: var(--white);
}

.equipe-header .header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin: 15px 0 30px;
}

.expertise-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}

.expertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.expertise-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.expertise-badge i {
    font-size: 1.1rem;
}

.header-stats-equipe {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item-equipe {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.stat-item-equipe:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon-equipe {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.stat-item-equipe:hover .stat-icon-equipe {
    transform: scale(1.1) rotate(10deg);
}

.stat-icon-equipe i {
    font-size: 30px;
    color: var(--white);
}

.stat-item-equipe .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin: 10px 0;
}

.stat-item-equipe .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Team Intro */
.team-intro-equipe {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 80px 0 40px;
}

.intro-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 35px rgba(0, 159, 227, 0.3);
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.intro-icon-wrapper i {
    font-size: 50px;
    color: var(--white);
}

.team-intro-equipe h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 25px;
}

.team-intro-equipe .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #666;
}

/* Leadership Section */
.leadership-section-equipe {
    margin-bottom: 100px;
}

.section-title-equipe {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

.section-title-equipe h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.team-subsection-title-equipe {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 60px 0 30px;
    padding-left: 20px;
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-subsection-title-equipe i {
    color: var(--primary-color);
}

/* Team Grid */
.team-grid-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.team-grid-equipe.board-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-grid-equipe.regional-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Team Card */
.team-card-equipe {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card-equipe:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.25);
    border-color: var(--primary-color);
}

.team-card-equipe.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.02), rgba(0, 119, 179, 0.02));
}

.card-ribbon-equipe {
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    padding: 8px 50px;
    font-size: 0.85rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.card-ribbon-equipe.special {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.team-photo-equipe {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.15), rgba(0, 119, 179, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-photo-equipe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-equipe:hover .team-photo-equipe::before {
    opacity: 1;
}

.team-photo-equipe.large {
    height: 320px;
}

.team-photo-equipe i {
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.team-card-equipe:hover .team-photo-equipe i {
    transform: scale(1.1);
    opacity: 0.7;
}

.team-info-equipe {
    padding: 30px;
    flex: 1;
}

.team-info-equipe h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.team-role-equipe {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-role-equipe i {
    font-size: 1.1rem;
}

.team-desc-equipe {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.expertise-tags-equipe {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag-equipe {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--primary-color);
}

.team-social-equipe {
    display: flex;
    gap: 12px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05), rgba(0, 119, 179, 0.05));
    border-top: 2px solid #f0f0f0;
}

.social-link-equipe {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.social-link-equipe:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}

/* National Director Special Card */
.national-director-wrapper {
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-card-equipe.national-director {
    max-width: none;
}

/* Regional Cards */
.team-card-equipe.regional {
    position: relative;
}

.region-badge-equipe {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.region-badge-equipe.santo {
    background: linear-gradient(135deg, #009fe3, #0077b3);
}

.region-badge-equipe.cap-haitien {
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
}

.region-badge-equipe.les-cayes {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Departments Section */
.departments-section-equipe {
    margin: 100px 0;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
}

.section-title-equipe.centered {
    text-align: center;
}

.section-subtitle-equipe {
    font-size: 1.15rem;
    color: #666;
    margin-top: 15px;
}

.departments-grid-equipe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.department-card-equipe {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.department-card-equipe::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.department-card-equipe:hover::before {
    opacity: 1;
}

.department-card-equipe:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.dept-icon-equipe {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.department-card-equipe.protection .dept-icon-equipe {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.department-card-equipe.education .dept-icon-equipe {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.department-card-equipe.sante .dept-icon-equipe {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.department-card-equipe.communautaire .dept-icon-equipe {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.department-card-equipe.support .dept-icon-equipe {
    background: linear-gradient(135deg, #64748b, #475569);
}

.department-card-equipe.plaidoyer .dept-icon-equipe {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.department-card-equipe:hover .dept-icon-equipe {
    transform: scale(1.15) rotate(10deg);
}

.dept-icon-equipe i {
    font-size: 45px;
    color: var(--white);
}

.dept-content-equipe h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.dept-count-equipe {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.dept-count-equipe .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 5px;
}

.dept-content-equipe p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.dept-specialties {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.dept-specialties span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.dept-specialties i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Join Team Section */
.join-team-equipe {
    margin: 100px 0;
}

.join-team-bg {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.08), rgba(0, 119, 179, 0.08));
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.join-team-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.1), transparent);
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.join-team-content-equipe {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.join-team-icon-equipe {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    box-shadow: 0 10px 40px rgba(0, 159, 227, 0.4);
    animation: pulseEquipe 2.5s ease-in-out infinite;
}

.join-team-icon-equipe i {
    font-size: 60px;
    color: var(--white);
}

.join-team-content-equipe h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.join-team-content-equipe p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
}

.join-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.join-team-cta-equipe {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-join-primary,
.btn-join-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-join-primary {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 159, 227, 0.4);
}

.btn-join-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 159, 227, 0.5);
}

.btn-join-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-join-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive Design for Equipe Page */
@media (max-width: 968px) {
    .team-grid-equipe.regional-grid {
        grid-template-columns: 1fr;
    }
    
    .departments-grid-equipe {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .header-stats-equipe {
        gap: 20px;
    }
    
    .stat-item-equipe {
        padding: 25px 30px;
    }
    
    .join-team-bg {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .equipe-header {
        min-height: auto;
        padding: 60px 0;
    }
    
    .header-icon-equipe {
        width: 100px;
        height: 100px;
    }
    
    .header-icon-equipe i {
        font-size: 50px;
    }
    
    .expertise-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .header-stats-equipe {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item-equipe {
        width: 100%;
    }
    
    .team-grid-equipe,
    .team-grid-equipe.board-grid,
    .team-grid-equipe.regional-grid {
        grid-template-columns: 1fr;
    }
    
    .departments-grid-equipe {
        grid-template-columns: 1fr;
    }
    
    .join-team-bg {
        padding: 40px 20px;
    }
    
    .join-team-content-equipe h2 {
        font-size: 2rem;
    }
    
    .join-benefits {
        flex-direction: column;
        gap: 25px;
    }
    
    .join-team-cta-equipe {
        flex-direction: column;
    }
    
    .btn-join-primary,
    .btn-join-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CARRIERES PAGE PROFESSIONAL DESIGN
   ======================================== */

/* Carrieres Header */
.carrieres-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.carrieres-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header-content-carrieres {
    position: relative;
    z-index: 2;
}

.header-icon-carrieres {
    font-size: 70px;
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse-carrieres 2s ease-in-out infinite;
    position: relative;
}

.header-icon-carrieres::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ripple-carrieres 2s ease-out infinite;
}

@keyframes pulse-carrieres {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple-carrieres {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.carrieres-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carrieres-header > p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.career-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.career-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.career-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.career-badge i {
    margin-right: 8px;
}

.stats-grid-carrieres {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card-carrieres {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card-carrieres:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card-carrieres i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    animation: float-carrieres 3s ease-in-out infinite;
}

@keyframes float-carrieres {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-card-carrieres .stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-card-carrieres .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Careers Intro Section */
.careers-intro-carrieres {
    padding: 80px 0;
    text-align: center;
}

.intro-icon-carrieres {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    animation: rotate-carrieres 3s linear infinite;
}

@keyframes rotate-carrieres {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

.careers-intro-carrieres h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.careers-intro-carrieres p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 15px;
}

/* Why Join Section */
.why-join-section-carrieres {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title-carrieres {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-title-carrieres.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle-carrieres {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid-carrieres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card-carrieres {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card-carrieres::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #009fe3, #0077b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card-carrieres:hover::before {
    transform: scaleX(1);
}

.benefit-card-carrieres:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.benefit-card-carrieres.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.02), rgba(0, 119, 179, 0.02));
}

.benefit-icon-carrieres {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card-carrieres:hover .benefit-icon-carrieres {
    transform: rotate(360deg) scale(1.1);
}

.benefit-content-carrieres h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-content-carrieres > p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list-carrieres {
    list-style: none;
    padding: 0;
}

.benefit-list-carrieres li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
}

.benefit-list-carrieres li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

/* Job Listings Section */
.job-listings-section-carrieres {
    padding: 80px 0;
    background: white;
}

.job-filters-carrieres {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn-carrieres {
    padding: 12px 30px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
}

.filter-btn-carrieres:hover,
.filter-btn-carrieres.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.job-grid-carrieres {
    display: grid;
    gap: 30px;
}

.job-card-carrieres {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.job-card-carrieres:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.15);
}

.job-card-carrieres.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.03), rgba(0, 119, 179, 0.03));
}

.job-badge-carrieres {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge-carrieres.urgent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.job-badge-carrieres.new {
    background: linear-gradient(135deg, #51cf66, #37b24d);
    color: white;
}

.job-header-carrieres {
    margin-bottom: 20px;
}

.job-title-area-carrieres {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.job-title-area-carrieres h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 0;
}

.job-tag-carrieres {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.job-meta-carrieres {
    display: flex;
    gap: 25px;
    color: #666;
    font-size: 15px;
    flex-wrap: wrap;
}

.job-meta-carrieres span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta-carrieres i {
    color: var(--primary-color);
}

.job-description-carrieres {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-details-carrieres {
    margin-bottom: 20px;
}

.job-details-carrieres h4 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 18px;
}

.job-details-carrieres ul {
    list-style: none;
    padding: 0;
}

.job-details-carrieres ul li {
    padding: 6px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.job-details-carrieres ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 12px;
}

.job-requirements-carrieres {
    margin-bottom: 25px;
}

.job-requirements-carrieres h4 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 18px;
}

.job-requirements-carrieres ul {
    list-style: none;
    padding: 0;
}

.job-requirements-carrieres ul li {
    padding: 6px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.job-requirements-carrieres ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 12px;
}

.job-actions-carrieres {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-apply-primary {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-apply-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3);
}

.btn-apply-secondary {
    background: white;
    color: var(--primary-color);
    padding: 14px 35px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-apply-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.view-all-jobs-carrieres {
    text-align: center;
    margin-top: 50px;
}

.btn-spontaneous {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-spontaneous:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.4);
}

/* Internship Section */
.internship-section-carrieres {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.internship-grid-carrieres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.internship-card-carrieres {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.internship-card-carrieres:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.internship-card-carrieres.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.02), rgba(0, 119, 179, 0.02));
}

.internship-icon-carrieres {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
}

.internship-card-carrieres:hover .internship-icon-carrieres {
    transform: scale(1.1) rotate(360deg);
}

.internship-card-carrieres h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.internship-card-carrieres > p {
    color: #666;
    margin-bottom: 20px;
}

.internship-benefits-carrieres {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.internship-benefits-carrieres li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.internship-benefits-carrieres li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.domains-carrieres {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.domain-tag-carrieres {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 159, 227, 0.2);
}

.internship-info-box-carrieres {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    padding: 50px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.internship-info-box-carrieres h3 {
    font-size: 32px;
    margin-bottom: 35px;
}

.info-grid-carrieres {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-item-carrieres {
    text-align: center;
}

.info-item-carrieres i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    animation: float-carrieres 3s ease-in-out infinite;
}

.info-item-carrieres p {
    font-size: 15px;
    line-height: 1.6;
}

.btn-stage-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 45px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-stage-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Application Process Section */
.application-process-carrieres {
    padding: 80px 0;
    background: white;
}

.process-steps-carrieres {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-carrieres {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    align-items: flex-start;
}

.step-icon-carrieres {
    position: relative;
    flex-shrink: 0;
}

.step-number-carrieres {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    transition: all 0.3s ease;
}

.step-carrieres:hover .step-number-carrieres {
    transform: scale(1.1) rotate(360deg);
}

.step-icon-carrieres i {
    font-size: 30px;
    color: var(--primary-color);
    display: block;
    text-align: center;
}

.step-content-carrieres {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-carrieres:hover .step-content-carrieres {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.15);
}

.step-content-carrieres h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content-carrieres p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-duration-carrieres {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.1), rgba(0, 119, 179, 0.1));
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.step-connector-carrieres {
    width: 4px;
    height: 50px;
    background: linear-gradient(to bottom, #009fe3, #0077b3);
    margin: 0 auto;
    margin-left: 33px;
    border-radius: 2px;
}

.application-tips-carrieres {
    margin-top: 60px;
    text-align: center;
}

.application-tips-carrieres h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.application-tips-carrieres h3 i {
    color: #ffd43b;
    margin-right: 10px;
}

.tips-grid-carrieres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card-carrieres {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card-carrieres:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.15);
}

.tip-card-carrieres i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.tip-card-carrieres:hover i {
    transform: scale(1.1) rotate(5deg);
}

.tip-card-carrieres h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tip-card-carrieres p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.careers-cta-carrieres {
    padding: 100px 0;
    background: linear-gradient(135deg, #009fe3 0%, #0077b3 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.careers-cta-carrieres::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-carrieres {
    position: relative;
    z-index: 2;
}

.cta-content-carrieres h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-carrieres p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-carrieres {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 45px;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .carrieres-header h1 {
        font-size: 42px;
    }

    .stats-grid-carrieres {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid-carrieres {
        grid-template-columns: repeat(2, 1fr);
    }

    .internship-grid-carrieres {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid-carrieres {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid-carrieres {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .carrieres-header {
        padding: 70px 0 50px;
    }

    .carrieres-header h1 {
        font-size: 32px;
    }

    .carrieres-header > p {
        font-size: 16px;
    }

    .header-icon-carrieres {
        font-size: 50px;
    }

    .stats-grid-carrieres {
        grid-template-columns: 1fr;
    }

    .career-badges {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid-carrieres {
        grid-template-columns: 1fr;
    }

    .job-actions-carrieres {
        flex-direction: column;
    }

    .internship-grid-carrieres {
        grid-template-columns: 1fr;
    }

    .info-grid-carrieres {
        grid-template-columns: 1fr;
    }

    .tips-grid-carrieres {
        grid-template-columns: 1fr;
    }

    .step-carrieres {
        flex-direction: column;
    }

    .step-connector-carrieres {
        margin-left: 33px;
        height: 30px;
    }

    .cta-content-carrieres h2 {
        font-size: 32px;
    }

    .cta-buttons-carrieres {
        flex-direction: column;
        align-items: center;
    }
}


/* ========================================
   CONTACT PAGE - MODERN REDESIGN
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/page-header.jpg') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,119,179,0.95) 0%, rgba(0,159,227,0.9) 100%);
}

.hero-content-contact {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 80px 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
}

.hero-badge i {
    font-size: 20px;
    color: #fff;
}

.hero-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title-contact {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-contact {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.stat-item-hero i {
    font-size: 24px;
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Contact Cards */
.quick-contact-new {
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.quick-contact-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.quick-contact-card-new {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.quick-contact-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.quick-contact-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quick-contact-card-new:hover::before {
    transform: scaleY(1);
}

.contact-icon-new {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-contact-card-new.phone .contact-icon-new {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.quick-contact-card-new.email .contact-icon-new {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #388e3c;
}

.quick-contact-card-new.location .contact-icon-new {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.quick-contact-card-new.emergency .contact-icon-new {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

.contact-info-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label-new {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value-new {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.contact-detail-new {
    font-size: 13px;
    color: #999;
}

.contact-arrow {
    font-size: 20px;
    color: #ccc;
    transition: all 0.3s ease;
}

.quick-contact-card-new:hover .contact-arrow {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section-new {
    padding: 80px 0;
    background: #fff;
}

.form-wrapper-new {
    max-width: 900px;
    margin: 0 auto;
}

.form-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag-new {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-contact {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle-contact {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.contact-form-new {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-new.full-width {
    grid-column: 1 / -1;
}

.form-group-new label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group-new label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.1);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 150px;
}

.char-counter {
    text-align: right;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.form-checkboxes-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.checkbox-group-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-group-new input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group-new label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    margin: 0;
}

.checkbox-group-new label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-actions-new {
    text-align: center;
    margin-top: 30px;
}

.btn-submit-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3);
}

.btn-submit-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 159, 227, 0.4);
}

.form-privacy-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

.form-privacy-new i {
    color: #4caf50;
}

/* Offices Section */
.offices-section-new {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.section-header-contact {
    text-align: center;
    margin-bottom: 60px;
}

.offices-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.office-card-new {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.office-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.office-card-new.main-office {
    border: 2px solid var(--primary-color);
}

.office-badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #856404;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-icon-new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.office-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.office-details-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detail-value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: var(--primary-color);
}

.office-actions-new {
    display: flex;
    gap: 12px;
}

.btn-office-primary,
.btn-office-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-office-primary {
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
}

.btn-office-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3);
}

.btn-office-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-office-secondary:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-office-secondary.full-width {
    width: 100%;
}

.office-notice-new {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #f57c00;
}

.office-notice-new i {
    font-size: 28px;
    color: #f57c00;
    flex-shrink: 0;
}

.office-notice-new p {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Safeguarding Section */
.safeguarding-section-new {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.safeguarding-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,235,238,0.5) 0%, rgba(255,205,210,0.3) 100%);
    z-index: 0;
}

.safeguarding-header-new {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.safeguarding-icon-header {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.section-title-safeguarding {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle-safeguarding {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.safeguarding-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

.safeguarding-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.safeguarding-card-new {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.safeguarding-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.safeguarding-card-new.urgent {
    border-color: #d32f2f;
}

.safeguarding-card-new.confidential {
    border-color: #1976d2;
}

.safeguarding-card-new.anonymous {
    border-color: #f57c00;
}

.card-icon-safeguarding {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.safeguarding-card-new.urgent .card-icon-safeguarding {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

.safeguarding-card-new.confidential .card-icon-safeguarding {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.safeguarding-card-new.anonymous .card-icon-safeguarding {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
}

.safeguarding-card-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.urgent-number-new,
.email-address-new {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
}

.card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-safeguarding {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-safeguarding.urgent-btn {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.btn-safeguarding.urgent-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.4);
}

.safeguarding-card-new.confidential .btn-safeguarding,
.safeguarding-card-new.anonymous .btn-safeguarding {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
}

.safeguarding-card-new.confidential .btn-safeguarding:hover,
.safeguarding-card-new.anonymous .btn-safeguarding:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.safeguarding-process-new {
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.safeguarding-process-new h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
    position: relative;
}

.timeline-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.15);
    border-color: #009fe3;
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #009fe3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 159, 227, 0.5);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #009fe3;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content p {
    color: #555;
}

.safeguarding-assurance-new {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #4caf50;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.safeguarding-assurance-new i {
    font-size: 36px;
    color: #4caf50;
    flex-shrink: 0;
}

.safeguarding-assurance-new p {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section-new {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.faq-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.faq-item-new {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-icon-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item-new h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.faq-item-new p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-item-new a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-item-new a:hover {
    text-decoration: underline;
}

.faq-cta-new {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
}

.faq-cta-new p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3);
}

.btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 159, 227, 0.4);
}

/* Support Banner */
.support-banner-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
}

.support-content-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.support-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

.support-text {
    flex: 1;
}

.support-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.support-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.support-actions {
    display: flex;
    gap: 15px;
}

.btn-support-primary,
.btn-support-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-support-primary {
    background: #fff;
    color: var(--primary-color);
}

.btn-support-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-support-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-support-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .hero-title-contact {
        font-size: 42px;
    }
    
    .hero-subtitle-contact {
        font-size: 18px;
    }
    
    .section-title-contact {
        font-size: 36px;
    }
    
    .contact-form-new {
        padding: 40px 30px;
    }
    
    .form-grid-new {
        grid-template-columns: 1fr;
    }
    
    .offices-grid-new {
        grid-template-columns: 1fr;
    }
    
    .support-content-new {
        flex-direction: column;
        text-align: center;
    }
    
    .support-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-support-primary,
    .btn-support-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-contact {
        padding: 60px 20px;
    }
    
    .hero-title-contact {
        font-size: 36px;
    }
    
    .hero-subtitle-contact {
        font-size: 16px;
    }
    
    .hero-stats-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .quick-contact-grid-new {
        grid-template-columns: 1fr;
    }
    
    .section-title-contact {
        font-size: 28px;
    }
    
    .contact-form-new {
        padding: 30px 20px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .faq-grid-new {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   NEWS PAGE - MODERN DESIGN
   ======================================== */

/* News Hero Section */
.news-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    overflow: hidden;
}

.hero-background-news {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/page-header.jpg') center/cover;
    opacity: 0.15;
}

.hero-overlay-news {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,119,179,0.95) 0%, rgba(0,159,227,0.9) 100%);
}

.hero-content-news {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 80px 20px;
    animation: fadeInUp 0.8s ease;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
}

.news-badge i {
    font-size: 20px;
    color: #fff;
}

.news-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title-news {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-news {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
}

.news-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item-news {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.stat-item-news i {
    font-size: 22px;
    color: #fff;
}

/* Filter Section */
.news-filter {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #009fe3;
    color: #009fe3;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    border-color: #009fe3;
    color: #fff;
}

.filter-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.filter-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.filter-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.filter-search input:focus {
    outline: none;
    border-color: #009fe3;
    box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.1);
}

/* Featured News */
.featured-news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-news {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag-news {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-news {
    font-size: 40px;
    font-weight: 800;
    color: #333;
}

.featured-news-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.featured-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.featured-meta i {
    color: #009fe3;
}

.featured-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tag {
    padding: 6px 15px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #009fe3;
    color: #fff;
}

.btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.4);
}

/* News Grid */
.news-grid-section {
    padding: 80px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.news-category.education {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
}

.news-category.sante {
    background: linear-gradient(135deg, #388e3c 0%, #66bb6a 100%);
}

.news-category.evenements {
    background: linear-gradient(135deg, #f57c00 0%, #ffa726 100%);
}

.news-category.urgences {
    background: linear-gradient(135deg, #d32f2f 0%, #ef5350 100%);
}

.news-category.reussites {
    background: linear-gradient(135deg, #7b1fa2 0%, #ab47bc 100%);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.date-day {
    font-size: 20px;
    font-weight: 800;
    color: #0077b3;
    line-height: 1;
}

.date-month {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #009fe3;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077b3;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #009fe3;
    gap: 12px;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* Load More */
.load-more-section {
    text-align: center;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #fff;
    color: #0077b3;
    border: 2px solid #0077b3;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
    color: #fff;
    border-color: #009fe3;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0077b3 0%, #009fe3 100%);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    flex-shrink: 0;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 16px 25px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    width: 300px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.btn-newsletter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: #fff;
    color: #0077b3;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title-news {
        font-size: 40px;
    }
    
    .hero-subtitle-news {
        font-size: 17px;
    }
    
    .featured-news-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content-news {
        padding: 60px 20px;
    }
    
    .hero-title-news {
        font-size: 36px;
    }
    
    .news-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-tabs {
        justify-content: flex-start;
    }
    
    .section-title-news {
        font-size: 32px;
    }
    
    .featured-content h3 {
        font-size: 26px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PARRAINAGE PAGE STYLES
   =================================== */

/* Header Parrainage avec Background */
.parrainage-header {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.95) 0%, rgba(1, 3, 20, 0.9) 100%),
                url('../img/hero-bg.jpg') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parrainage-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 159, 227, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.parrainage-header .container {
    position: relative;
    z-index: 2;
}

.parrainage-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease-out;
}

.parrainage-header .lead {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 159, 227, 0.4);
}

.btn-large i {
    margin-right: 10px;
}

/* Section Impact Cards */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 159, 227, 0.2);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: rotate(360deg) scale(1.1);
}

.impact-icon i {
    font-size: 35px;
    color: var(--white);
}

.impact-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.impact-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Section Comment ça marche */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    color: var(--secondary-color);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 90px;
    width: 2px;
    height: calc(100% + 50px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 159, 227, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 16px;
}

/* Section Types de Parrainage */
.parrainage-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.parrainage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.parrainage-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.parrainage-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.25);
}

.parrainage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 45px;
    color: var(--white);
}

.parrainage-card h3 {
    font-size: 26px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.price .amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.price .period {
    font-size: 18px;
    color: var(--secondary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    padding: 12px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Section Témoignages */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(0, 159, 227, 0.15);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 159, 227, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--secondary-color);
}

/* Section FAQ */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.8;
    font-size: 15px;
}

/* Section Formulaire */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: var(--secondary-color);
}

.form-section-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--dark-color);
    margin: 35px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title i {
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: var(--primary-color);
    background: rgba(0, 159, 227, 0.05);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-label i {
    font-size: 20px;
    color: var(--primary-color);
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

/* Section CTA Final */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .parrainage-header h1 {
        font-size: 36px;
    }
    
    .parrainage-header .lead {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step::after {
        display: none;
    }
    
    .parrainage-cards {
        grid-template-columns: 1fr;
    }
    
    .parrainage-card.featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 350px;
    }
}
/* ===================================
   BÉNÉVOLAT PAGE STYLES
   =================================== */

/* Header Bénévolat */
.benevolat-header {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.95) 0%, rgba(1, 3, 20, 0.9) 100%),
                url('../img/hero-bg.jpg') center/cover;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benevolat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 159, 227, 0.3) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.header-particles::before,
.header-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.15), transparent);
    animation: float 15s infinite ease-in-out;
}

.header-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.header-particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.header-content-wrapper {
    position: relative;
    z-index: 2;
}

.header-image-float {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    opacity: 0.1;
    animation: floatImage 6s ease-in-out infinite;
}

.floating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: blur(2px);
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.animate-fade-in {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.btn-pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 159, 227, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 159, 227, 0);
    }
}

/* Section Pourquoi Devenir Bénévole */
.why-volunteer {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    position: relative;
    overflow: hidden;
}

.why-volunteer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05), transparent);
    border-radius: 50%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 159, 227, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 159, 227, 0.25);
    border-color: var(--primary-color);
}

.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(360deg);
}

.icon-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.benefit-card:hover .icon-bg-effect {
    opacity: 1;
    width: 120px;
    height: 120px;
}

.benefit-icon i {
    font-size: 35px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Section Image Banner */
.section-image-banner {
    margin-top: 60px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.full-width-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.section-image-banner:hover .full-width-image {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 159, 227, 0.95), transparent);
    padding: 40px;
    color: var(--white);
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.section-image-banner:hover .image-overlay-text {
    transform: translateY(0);
}

.image-overlay-text h3 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.image-overlay-text p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Section Opportunités */
.volunteer-opportunities {
    padding: 80px 0;
    background: var(--white);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.opportunity-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.opportunity-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(0, 159, 227, 0.05) 0%, var(--white) 100%);
}

.opportunity-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 159, 227, 0.3);
    border-color: var(--primary-color);
}

.card-image-top {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.opportunity-card:hover .card-image-top img {
    transform: scale(1.1) rotate(2deg);
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 159, 227, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.opportunity-card:hover .image-gradient-overlay {
    opacity: 1;
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(90deg, var(--primary-color), #0077b6);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 159, 227, 0.4);
    z-index: 10;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.card-ribbon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 8px solid #005a87;
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px 10px;
}

.opportunity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}

.opportunity-card:hover .opportunity-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.5);
}

.opportunity-icon i {
    font-size: 32px;
    color: var(--white);
}

.opportunity-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-badge.local {
    background: linear-gradient(90deg, var(--primary-color), #0077b6);
    color: var(--white);
}

.opportunity-badge.remote {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: var(--white);
}

.opportunity-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding: 0 30px;
}

.opportunity-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px;
    padding: 0 30px;
}

.opportunity-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 30px;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 14px;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.opportunity-card .btn-full {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
}

/* Section Témoignages Bénévoles */
.volunteer-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05) 0%, var(--light-gray) 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #0077b6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 159, 227, 0.25);
}

.testimonial-content {
    padding: 35px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 50px;
    color: rgba(0, 159, 227, 0.15);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 3px solid var(--primary-color);
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}

.author-details h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-details p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-location i {
    font-size: 14px;
}

/* Section Processus */
.volunteer-process {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.volunteer-process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 159, 227, 0.05), transparent);
    border-radius: 50%;
}

.process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), #0077b6, var(--primary-color));
    box-shadow: 0 0 10px rgba(0, 159, 227, 0.3);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.marker-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
    border: 5px solid var(--white);
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 35px rgba(0, 159, 227, 0.6);
}

.timeline-content {
    flex: 1;
    padding-top: 15px;
}

.timeline-content h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 16px;
}

/* Section FAQ Bénévolat */
.volunteer-faq {
    background: linear-gradient(to bottom, var(--light-gray), rgba(0, 159, 227, 0.05));
}

/* Section Formulaire Bénévolat */
.volunteer-form-section {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05) 0%, #e0f2fe 100%);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 159, 227, 0.1);
    border-radius: 8px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-left: 4px solid var(--primary-color);
}

.form-note i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Section CTA avec Stats */
.volunteer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.volunteer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.volunteer-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.volunteer-cta .container {
    position: relative;
    z-index: 2;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 56px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.15);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.volunteer-cta .cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.volunteer-cta .cta-content p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.volunteer-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.volunteer-cta .btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design pour Bénévolat */
@media (max-width: 768px) {
    .benevolat-header {
        min-height: 450px;
    }
    
    .benevolat-header h1 {
        font-size: 36px;
    }
    
    .header-image-float {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-image-banner {
        margin-top: 40px;
    }
    
    .full-width-image {
        height: 250px;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 22px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .marker-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .volunteer-cta .cta-content h2 {
        font-size: 32px;
    }
}



/* Section Pourquoi Devenir Bénévole */
.why-volunteer {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-icon i {
    font-size: 35px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Section Opportunités */
.volunteer-opportunities {
    padding: 80px 0;
    background: var(--white);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.opportunity-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.opportunity-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #f0fdf4 0%, var(--white) 100%);
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(90deg, var(--primary-color), #0077b6);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 159, 227, 0.3);
}

.card-ribbon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 8px solid #15803d;
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.opportunity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.opportunity-card:hover .opportunity-icon {
    transform: rotate(5deg) scale(1.05);
}

.opportunity-icon i {
    font-size: 32px;
    color: var(--white);
}

.opportunity-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-badge.local {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: var(--white);
}

.opportunity-badge.remote {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: var(--white);
}

.opportunity-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.opportunity-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px;
}

.opportunity-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 14px;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Section Témoignages Bénévoles */
.volunteer-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, var(--light-gray) 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.2);
}

.testimonial-content {
    padding: 35px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 50px;
    color: rgba(0, 159, 227, 0.15);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 3px solid var(--primary-color);
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-details h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-details p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-location i {
    font-size: 14px;
}

/* Section Processus */
.volunteer-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #0077b6, var(--primary-color));
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.marker-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
    border: 5px solid var(--white);
}

.timeline-content {
    flex: 1;
    padding-top: 15px;
}

.timeline-content h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 16px;
}

/* Section FAQ Bénévolat */
.volunteer-faq {
    background: linear-gradient(to bottom, var(--light-gray), #f0fdf4);
}

/* Section Formulaire Bénévolat */
.volunteer-form-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 159, 227, 0.1);
    border-radius: 8px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-note i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Section CTA avec Stats */
.volunteer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.volunteer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.volunteer-cta .container {
    position: relative;
    z-index: 2;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.volunteer-cta .cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.volunteer-cta .cta-content p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.volunteer-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.volunteer-cta .btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design pour Bénévolat */
@media (max-width: 768px) {
    .benevolat-header h1 {
        font-size: 36px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 22px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .marker-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .volunteer-cta .cta-content h2 {
        font-size: 32px;
    }
}

/* ===================================
   PARTENARIATS PAGE STYLES
   =================================== */

/* Header Partenariats */
.partenariats-header {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.95) 0%, rgba(1, 3, 20, 0.9) 100%),
                url('../img/hero-bg.jpg') center/cover;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partenariats-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 159, 227, 0.3) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.header-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.header-shapes::before,
.header-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float-shapes 20s infinite ease-in-out;
}

.header-shapes::before {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.header-shapes::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -75px;
    animation-delay: 10s;
}

@keyframes float-shapes {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Section Pourquoi Partenaire */
.why-partner {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.two-columns-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.two-columns-layout.reverse {
    direction: rtl;
}

.two-columns-layout.reverse > * {
    direction: ltr;
}

.column-content {
    padding: 20px;
}

.content-with-icon {
    display: flex;
    gap: 30px;
}

.large-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.3);
    transition: all 0.4s ease;
}

.column-content:hover .large-icon {
    transform: rotate(10deg) scale(1.1);
}

.large-icon i {
    font-size: 45px;
    color: var(--white);
}

.content-text h3 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: var(--primary-color);
    font-size: 20px;
}

.column-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.column-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.column-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.4);
    animation: bounce-badge 2s infinite;
}

@keyframes bounce-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* Section Types de Partenariats */
.partnership-types {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.partnership-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #0077b6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partnership-card:hover::before {
    transform: scaleX(1);
}

.partnership-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.25);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 159, 227, 0.2);
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-header-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.3);
}

.partnership-card:hover .card-header-icon {
    transform: rotateY(360deg);
}

.card-header-icon i {
    font-size: 40px;
    color: var(--white);
}

.partnership-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

.partnership-card > p {
    color: var(--secondary-color);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

.partnership-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

/* Section Partenaires Actuels */
.current-partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-showcase {
    margin-top: 50px;
}

.partner-category {
    margin-bottom: 60px;
}

.partner-category h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-category h3 i {
    color: var(--primary-color);
    font-size: 28px;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-logo-box {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.partner-logo-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 159, 227, 0.15);
    transform: translateY(-5px);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05), rgba(0, 119, 182, 0.05));
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
}

.partners-cta p {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 600;
}

/* Section Success Stories */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0, 159, 227, 0.05) 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 159, 227, 0.2);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 159, 227, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.story-category {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.story-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Avantages */
.partnership-benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-column {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-column:hover {
    transform: translateY(-10px);
}

.benefit-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 159, 227, 0.3);
    transition: all 0.4s ease;
}

.benefit-column:hover .benefit-icon-large {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.5);
}

.benefit-icon-large i {
    font-size: 45px;
    color: var(--white);
}

.benefit-column h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-column p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Section Formulaire Partenariats */
.partnership-form-section {
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.05) 0%, var(--light-gray) 100%);
}

/* Section CTA Partenariats */
.partnership-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.partnership-cta .container {
    position: relative;
    z-index: 2;
}

.partnership-cta .cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.partnership-cta .cta-content p {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Responsive Design Partenariats */
@media (max-width: 768px) {
    .partenariats-header {
        min-height: 450px;
    }
    
    .partenariats-header h1 {
        font-size: 36px;
    }
    
    .two-columns-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-columns-layout.reverse {
        direction: ltr;
    }
    
    .content-with-icon {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .column-image img {
        height: 300px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-card.featured {
        transform: scale(1);
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-columns {
        grid-template-columns: 1fr;
    }
    
    .partnership-cta .cta-content h2 {
        font-size: 32px;
    }
}
