:root {
    --primary-green: #00A651;
    --dark-green: #008542;
    --light-green: #E8F5E9;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --border: #E0E0E0;
    --shadow: rgba(0, 166, 81, 0.15);
    --gradient: linear-gradient(135deg, #00A651 0%, #008542 100%);
    --verified-blue: #2196F3;
    --verified-blue-dark: #1976D2;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

video {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

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

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

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--verified-blue), var(--verified-blue-dark));
    border-radius: 50%;
    color: white;
    font-size: 14px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    position: relative;
    top: -2px;
}

.verified-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.5);
}

.verified-badge i {
    font-size: 12px;
}

/* Verified badge in different contexts */
h1 .verified-badge,
h2 .verified-badge {
    width: 28px;
    height: 28px;
    font-size: 16px;
    margin-left: 10px;
}

h1 .verified-badge i,
h2 .verified-badge i {
    font-size: 14px;
}

h3 .verified-badge {
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin-left: 6px;
}

h3 .verified-badge i {
    font-size: 10px;
}

.card-title .verified-badge,
.campaign-title .verified-badge {
    width: 22px;
    height: 22px;
    font-size: 13px;
    margin-left: 6px;
}

.card-title .verified-badge i,
.campaign-title .verified-badge i {
    font-size: 11px;
}
.d-flex { display: flex; }
.d-grid { display: grid; }

@media (max-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
}

@media (max-width: 480px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
}


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

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInRight 0.8s ease-out;
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    max-height: 80px;
}

.logo img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

/* Mobile-only menu items - hidden on desktop */
.nav-menu .mobile-only {
    display: none !important;
}

/* Desktop-only menu items - visible on desktop */
.nav-menu .desktop-only {
    display: list-item !important;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* User Menu */
.user-menu-container {
    position: relative;
    display: inline-block;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-menu-trigger:hover {
    background: var(--light-gray);
    border-color: var(--gray);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.2;
}

.user-role {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.2;
}

.user-menu-trigger .fa-chevron-down {
    font-size: 0.75rem;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item i {
    width: 20px;
    font-size: 1rem;
    color: var(--gray);
}

.dropdown-item:hover {
    background: var(--light-gray);
}

.dropdown-item:hover i {
    color: var(--primary-green);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.btn {
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.btn-admin {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

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

.btn-white:hover {
    background: var(--light-green);
}

/* HERO SECTION */
.hero {
    margin-top: 80px;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    opacity: 0.05;
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-text h1 span {
    color: var(--primary-green);
    position: relative;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

/* STATS BAR */
.stats-bar {
    background: white;
    padding: 2rem 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    font-weight: 500;
}

/* SECTIONS */
section {
    padding: 5rem 2%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2%;
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.card-text {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    transition: width 1s ease;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: var(--primary-green);
}

/* RESPONSIVE DESIGN */

/* Tablettes */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2%;
    }
    
    .container {
        padding: 0 2%;
    }
    
    .hero-content,
    .section-content {
        padding: 2rem 2%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    section {
        padding: 3rem 2%;
    }
}

/* Tablettes portrait et mobiles larges */
@media (max-width: 768px) {
    /* ========== HEADER MOBILE ========== */
    .navbar {
        padding: 1rem 4%;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto;
        z-index: 1002;
        font-size: 1.4rem;
    }
    
    .logo img {
        max-height: 60px;
        max-width: 150px;
    }
    
    /* MASQUER tous les boutons de navigation sur mobile */
    .nav-buttons {
        display: none !important;
    }
    
    /* AFFICHER le bouton hamburger sur mobile */
    .mobile-menu-toggle {
        display: block !important;
        flex: 0 0 auto;
        z-index: 1002;
        font-size: 1.5rem;
    }
    
    /* MASQUER ABSOLUMENT les items desktop-only */
    .nav-menu .desktop-only,
    .nav-menu li.desktop-only,
    li.desktop-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -999999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    
    /* AFFICHER UNIQUEMENT les items mobile-only */
    .nav-menu .mobile-only,
    .nav-menu li.mobile-only,
    li.mobile-only {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    /* Transformer le menu en sidebar hors écran */
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: calc(100vh - 70px) !important;
        background: white !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
        flex-direction: column !important;
        padding: 2rem 0 !important;
        gap: 0 !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .nav-menu a {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 1rem 2rem !important;
        border-left: 3px solid transparent !important;
        transition: all 0.3s !important;
        font-size: 1rem !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(0, 166, 81, 0.05) !important;
        border-left-color: var(--primary-green) !important;
        color: var(--primary-green) !important;
    }
    
    .nav-menu a i {
        font-size: 1.1rem !important;
        width: 20px !important;
    }
    
    .nav-menu a::after {
        display: none !important;
    }
    
    /* ========== HERO SECTION MOBILE ========== */
    .hero {
        min-height: auto;
        padding: 2rem 0;
        margin-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 4%;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
        padding: 0;
    }
    
    .hero-image img {
        border-radius: 12px;
    }
    
    /* ========== STATS BAR MOBILE ========== */
    .stats-bar {
        margin-top: 0;
        padding: 2rem 4%;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    /* ========== SECTIONS MOBILE ========== */
    section {
        padding: 3rem 4%;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* ========== CARDS MOBILE - UNE COLONNE ========== */
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0;
    }
    
    .card {
        max-width: 100%;
        width: 100%;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .card-stats {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    /* ========== CATÉGORIES MOBILE ========== */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .category-card {
        padding: 1.25rem !important;
    }
    
    .category-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .category-card h3 {
        font-size: 1rem !important;
    }
    
    /* ========== TESTIMONIALS MOBILE ========== */
    .testimonials-slider {
        padding: 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    /* ========== FOOTER MOBILE ========== */
    .footer {
        padding: 2rem 4% 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-about,
    .footer-links {
        text-align: center;
    }
    
    .footer-about h3 {
        font-size: 1.3rem;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    /* ========== DASHBOARD MOBILE ========== */
    .dashboard-container {
        flex-direction: column;
        margin-top: 70px;
    }
    
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
    }
    
    .dashboard-content {
        margin-left: 0;
        padding: 1.5rem 4%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    /* ========== FORMULAIRES MOBILE ========== */
    .form-container {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Évite le zoom iOS */
        padding: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* ========== BOUTONS MOBILE ========== */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn i {
        font-size: 0.95rem;
    }
}

/* Mobiles petits écrans */
@media (max-width: 480px) {
    /* ========== HEADER TRÈS PETIT MOBILE ========== */
    .logo {
        font-size: 1.2rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .logo img {
        max-height: 50px;
        max-width: 120px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        width: 90% !important;
        max-width: 280px !important;
    }
    
    .nav-menu a {
        padding: 0.85rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* ========== HERO PETIT MOBILE ========== */
    .hero {
        margin-top: 60px;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 4%;
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* ========== STATS PETIT MOBILE ========== */
    .stats-bar {
        padding: 1.5rem 4%;
    }
    
    .stats-container {
        gap: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    /* ========== SECTIONS PETIT MOBILE ========== */
    section {
        padding: 2.5rem 4%;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* ========== CARDS PETIT MOBILE ========== */
    .cards-grid {
        gap: 1.25rem !important;
    }
    
    .card {
        border-radius: 12px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.05rem;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
    
    .card-category {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* ========== CATÉGORIES PETIT MOBILE ========== */
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .category-card {
        padding: 1rem !important;
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .category-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
        margin: 0 !important;
    }
    
    .category-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .category-card p {
        font-size: 0.75rem !important;
    }
    
    /* ========== BOUTONS PETIT MOBILE ========== */
    .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn i {
        font-size: 0.85rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.7rem 1.15rem;
        font-size: 0.9rem;
    }
    
    /* ========== USER MENU PETIT MOBILE ========== */
    .user-menu-trigger {
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .user-info {
        display: none;
    }
    
    .user-dropdown {
        right: -1rem;
        min-width: 200px;
    }
    
    /* ========== FORMULAIRES PETIT MOBILE ========== */
    .form-container {
        padding: 1.25rem;
        margin: 0.5rem;
    }
    
    .register-container,
    .login-container {
        margin: 80px 4% 2rem;
        padding: 1.5rem 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 0.65rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* ========== FOOTER PETIT MOBILE ========== */
    .footer {
        padding: 2rem 4% 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-about h3 {
        font-size: 1.2rem;
    }
    
    .footer-about p {
        font-size: 0.85rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
    
    /* ========== MODAL PETIT MOBILE ========== */
    .modal-content {
        padding: 1.25rem;
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
    
    /* ========== DASHBOARD PETIT MOBILE ========== */
    .dashboard-content {
        padding: 1rem 4%;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* ========== TABLEAUX PETIT MOBILE ========== */
    .table {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
    }
    
    /* ========== TESTIMONIALS PETIT MOBILE ========== */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .testimonial-content h4 {
        font-size: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
    
    /* ========== PARTENAIRES PETIT MOBILE ========== */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .partner-logo {
        padding: 0.75rem !important;
        height: 80px !important;
    }
}

/* Mode paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }
    
    .sidebar {
        display: none;
    }
}

/* Très grands écrans */
@media (min-width: 1600px) {
    .navbar,
    .hero-content,
    .section-content,
    .footer-content {
        max-width: 1600px;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
}

/* ===== VIDEO CAMPAIGN SECTION ===== */
.video-campaign-layout {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.video-side {
    flex: 1.2;
    min-width: 0;
}

.campaign-side {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.campaign-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.campaign-badges {
    margin-bottom: 1rem;
}

.priority-badge, .urgent-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.priority-badge {
    background: #FFC107;
    color: white;
}

.urgent-badge {
    background: #e74c3c;
    color: white;
}

.campaign-stats {
    margin-bottom: 1.5rem;
}

.campaign-stats .amount,
.campaign-stats .days-remaining {
    text-align: center;
}

.donate-btn {
    display: block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: white;
    text-decoration: none;
}

.ad-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Placeholder vidéo */
.video-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Mode sans vidéo */
.video-campaign-layout .campaign-side.full-width {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design pour Video Campaign */
@media (max-width: 768px) {
    .video-campaign-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .video-side,
    .campaign-side {
        flex: none !important;
    }
    
    .video-placeholder {
        height: 300px;
        padding: 2rem;
    }
    
    .video-placeholder i {
        font-size: 3rem !important;
    }
    
    .campaign-info-card {
        padding: 1.5rem;
    }
    
    .campaign-info-card h3 {
        font-size: 1.5rem !important;
    }
    
    .campaign-stats > div:first-child {
        flex-direction: column;
        gap: 1rem;
        align-items: center !important;
    }
    
    .campaign-stats .amount,
    .campaign-stats .days-remaining {
        text-align: center;
        flex: 1;
    }
}

@media (max-width: 480px) {
    #video-section {
        padding: 2rem 0 !important;
    }
    
    .video-campaign-layout {
        gap: 1.5rem;
    }
    
    .campaign-info-card {
        padding: 1rem;
    }
    
    .campaign-badges {
        text-align: center;
    }
    
    .priority-badge, .urgent-badge {
        display: block;
        margin: 0 auto 0.5rem;
        max-width: 200px;
    }
    
    .donate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Cache buster: 1771717607 */
