/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ea580c;
    --primary-orange-dark: #c2410c;
    --primary-orange-light: #f97316;
    --secondary-green: #16a34a;
    --secondary-red: #ef4444;
    --secondary-green-dark: #15803d;
    --accent-yellow: #fbbf24;
    --dark-bg: #1a1a1a;
    --light-bg: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gradient-orange: linear-gradient(135deg, #ea580c, #f97316);
    --gradient-green: linear-gradient(135deg, #16a34a, #22c55e);
    --gradient-hero: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #16a34a 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* CORRECTIONS MOBILE GLOBALES */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        width: 100vw;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    /* Correction pour tous les éléments enfants */
    .container * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

/* Typographie */
.display-1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
}

.display-3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    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-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(234, 88, 12, 0.6);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

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

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

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

.animate-bounce-subtle {
    animation: bounce-subtle 2s ease-in-out infinite;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* Header */
.navbar {
    /* background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.9), rgba(22, 163, 74, 0.95)); */
    background: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

.logo-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

.brand-name {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
     color: var(--text-dark) !important;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

/* Style du bouton hamburger */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    color: var(--text-dark) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid rgba(255, 255, 255, 0.5);
}

/* Navigation responsive - CORRIGÉ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar>.container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .navbar-collapse {
        background: white;
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-xl);
        width: 100%;
        order: 3;
        width: calc(100vw - 30px);
        margin-left: -15px;
        margin-right: -15px;
        border: 1px solid #e5e7eb; /* Ajouter une bordure */
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: var(--transition);
        display: block;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-orange) !important;
        background: rgba(234, 88, 12, 0.1);
    }

    .navbar-nav .btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 1rem;
}

.btn-gradient {
    background: var(--gradient-orange);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-light {
    background: white;
    color: var(--text-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-success:hover {
    background: var(--secondary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.9), rgba(22, 163, 74, 0.95));
    color: white;
    text-align: center;
    padding: 140px 0 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('/assets/landing//images/backgound/bg-ew.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.particle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.badge-official {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Corrections Hero Section pour mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 110px 15px 40px;
        height: auto;
        display: flex;
        align-items: center;
        width: 100%;
        overflow-x: hidden;
    }

    .hero-section .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .display-1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .hero-section h1 br {
        display: none;
    }

    .badge-official {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .particle:nth-child(1),
    .particle:nth-child(2) {
        display: none;
    }
}

/* Ajustement final des boutons de téléchargement */
@media (max-width: 576px) {
    .hero-section .d-flex.flex-column.flex-sm-row {
        gap: 0.75rem;
        width: 100%;
        flex-direction: column !important;
    }

    .hero-section .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }

    .btn .d-inline-block.text-start {
        text-align: center !important;
        width: 100%;
    }

    .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
    }
}

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    opacity: 0.6;
}

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

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, white, rgba(255, 237, 213, 0.3), white);
    position: relative;
    overflow: hidden;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0.1);
    filter: blur(40px);
}

.decorative-blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
}

.decorative-blob-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -200px;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fed7aa;
    color: #ea580c;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.feature-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.card-body {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-orange);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    animation: pulse-glow 2s ease-in-out infinite;
}

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

.benefit-card {
    background: linear-gradient(to bottom right, #fed7aa, white);
    border: 1px solid #fed7aa;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.benefit-card.green {
    background: linear-gradient(to bottom right, #bbf7d0, white);
    border-color: #bbf7d0;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: var(--primary-orange);
}

.benefit-card.green .benefit-icon {
    color: var(--secondary-green);
}

/* Screenshots Section */
.screenshots-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom right, #f9fafb, white);
}

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

.screenshot-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay p {
    color: white;
    font-weight: 600;
    margin: 0;
}

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

.feature-list {
    list-style: none;
}

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

.feature-check {
    width: 2rem;
    height: 2rem;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
    box-shadow: var(--shadow-lg);
}

.feature-check svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.screenshots-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.screenshot-mini {
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.screenshot-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stats-mini-card {
    background: var(--gradient-orange);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(to right, #ea580c, #f97316, #16a34a);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, white, #f9fafb);
}

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

.testimonial-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-content {
    padding: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.avatar-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.author-info h4 {
    margin: 0;
    font-weight: 700;
}

.author-info small {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: white;
}

.faq-accordion {
    max-width: 48rem;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: white;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    border: none;
}

.accordion-button {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:hover {
    color: var(--primary-orange);
}

.accordion-button.active::after {
    content: '-';
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.accordion-button.active+.accordion-content {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ea580c, #f97316, #16a34a);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--primary-orange);
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

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

/* CORRECTIONS RESPONSIVE GLOBALES */
@media (max-width: 1024px) {

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

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

    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .features-grid,
    .testimonials-grid,
    .benefits-grid,
    .screenshot-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .screenshot-card img {
        height: auto;
    }

    /* Correction des espacements sur mobile */
    .features-section,
    .screenshots-section,
    .testimonials-section,
    .faq-section,
    .final-cta-section {
        padding: 4rem 0;
    }

    .trust-badges {
        padding: 2rem 0;
    }

    .stats-section {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .display-1 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 80vh;
    }

    .stats-section .row.g-4 {
        gap: 1.5rem !important;
    }

    .stats-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* FAQ mobile */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .accordion-content {
        padding: 0 1.25rem 1rem;
    }

    .faq-section .col-lg-8 {
        padding: 0 1rem;
    }
}

/* Utilitaires */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-90 {
    opacity: 0.90;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ea580c, #16a34a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #c2410c, #15803d);
}

.cta-section {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.9), rgba(22, 163, 74, 0.95));
}

/* Badges colorés */
.bg-orange {
    background-color: var(--primary-orange) !important;
}

.bg-orange-light {
    background-color: #fff7ed !important;
}

.bg-success {
    background-color: var(--secondary-green) !important;
}

/* Ombres et effets */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}

/* Bordures arrondies */
.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-3 {
    border-radius: 0.75rem !important;
}

/* Amélioration de la lisibilité sur mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .lead {
        font-size: 1rem;
    }

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

/* Correction pour les espacements Bootstrap sur mobile */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .col-6,
    .col-md-4,
    .col-md-6,
    .col-lg-3 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Contact Page Styles */

/* Hero Section Other Pages */
.hero-section-other {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.9), rgba(22, 163, 74, 0.95));
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.contact-card-header {
    background: var(--gradient-orange);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-header i {
    font-size: 1.5rem;
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

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

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item.fa-envelope {
    background: var(--secondary-green);
}

.contact-item h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-orange);
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    font-weight: 500;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.social-card.facebook {
    background: #1877f2;
}

.social-card.twitter {
    background: #1da1f2;
}

.social-card.tiktok {
    background: black;
}

.social-card.whatsapp {
    background: #25D366;
}

.social-card.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-card.youtube {
    background: #ff0000;
}

/* Hours List */
.hours-list {
    space-y: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.hour-item span:last-child {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Current Status */
.current-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid #bbf7d0;
}

.current-status-close {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fee2e2;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid var(--secondary-red);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.open {
    background: var(--secondary-green);
}

.status-indicator.close {
    background: var(--secondary-red) !important;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
}

.form-header h2 {
    color: var(--text-dark);
}

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

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* Map Section */
.map-section {
    background: linear-gradient(to bottom, #f8fafc, white);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.map-container {
    position: relative;
}

.map-info {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.address-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 250px;
}

.address-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* FAQ Contact Section */
.faq-contact-section {
    background: white;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    transition: var(--transition);
}

.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark-bg) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-other {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .map-info {
        position: static;
        margin-top: 1rem;
    }

    .address-card {
        max-width: none;
    }

    .contact-actions {
        justify-content: center;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        align-self: center;
    }

    .hour-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* About Page Styles */

/* About Section */
.about-section {
    background: white;
}

.about-content {
    padding-right: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(234, 88, 12, 0.9));
    padding: 2rem;
    color: white;
    text-align: center;
}

.overlay-content i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Milestones */
.milestones {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.milestone-item {
    text-align: center;
    flex: 1;
}

.milestone-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.milestone-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(to bottom, #f8fafc, white);
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.value-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-list i {
    color: var(--secondary-green);
    font-size: 0.875rem;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(234, 88, 12, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange-dark);
    color: white;
    transform: translateY(-2px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-info .text-muted {
    color: var(--primary-orange) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Stats About Section */
.stats-about-section {
    background: linear-gradient(135deg, #ea580c, #f97316, #16a34a);
    position: relative;
    overflow: hidden;
}

.stats-about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Location Section */
.location-section {
    background: linear-gradient(to bottom, white, #f8fafc);
}

.location-content {
    padding-right: 2rem;
}

.contact-info {
    space-y: 1.5rem;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h5 {
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .milestones {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-actions {
        justify-content: center;
    }

    .location-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .team-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .value-card {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        align-self: center;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Additional Styles */

/* Structure Section */
.structure-section {
    background: linear-gradient(to bottom, #f8fafc, white);
}

.org-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.org-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.75rem;
}

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

.org-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.org-card p:last-child {
    margin-bottom: 0;
}

.org-card strong {
    color: var(--primary-orange);
}

/* Mission Cards */
.mission-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.mission-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Events Section */
.events-section {
    background: linear-gradient(to bottom, white, #f8fafc);
}

.event-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-content {
    padding: 1.5rem;
}

.event-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.event-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.event-stats i {
    color: var(--primary-orange);
}

/* President Section */
.president-section {
    background: white;
}

.president-image {
    position: relative;
}

.president-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.president-content {
    padding-left: 2rem;
}

.president-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
}

.info-item {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.info-item strong {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-card {
        flex-direction: column;
        text-align: center;
    }

    .mission-icon {
        align-self: center;
    }

    .president-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .event-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .org-card {
        padding: 1.5rem 1rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .event-content {
        padding: 1rem;
    }

    .president-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Download Page Simple Styles */

/* Download Hero Section Simple */
.download-hero-section-simple {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.95), rgba(249, 115, 22, 0.9), rgba(22, 163, 74, 0.95));
    color: white;
    padding: 120px 0 80px;
}

/* App Screenshot Simple */
.app-screenshot-simple {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.app-screenshot-simple img {
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.app-screenshot-simple:hover img {
    transform: translateY(-10px);
}

/* Download Content Simple */
.download-content-simple {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .download-content-simple {
        padding-left: 0;
        margin-top: 3rem;
        text-align: center;
    }
}

/* Download Buttons Simple */
.download-buttons-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
}

@media (max-width: 991px) {
    .download-buttons-simple {
        margin: 0 auto;
    }
}

.download-btn-simple {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: none;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-btn-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
}

.ios-btn {
    color: white;
}

.android-btn {
    color: white;
}

.btn-icon-simple {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

.btn-content-simple {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-subtitle-simple {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.btn-title-simple {
    font-size: 1.5rem;
    font-weight: 700;
}

/* App Info Simple */
.app-info-simple {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.app-stats-simple {
    display: flex;
    gap: 3rem;
}

.stat-item-simple {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-hero-section-simple {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .display-1 {
        font-size: 3rem;
    }

    .app-stats-simple {
        gap: 2rem;
        justify-content: center;
    }

    .download-btn-simple {
        padding: 1.25rem 1.5rem;
    }

    .btn-icon-simple {
        font-size: 2rem;
    }

    .btn-title-simple {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .download-btn-simple {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .btn-content-simple {
        align-items: center;
    }

    .app-stats-simple {
        flex-direction: column;
        gap: 1.5rem;
    }

    .app-screenshot-simple img {
        border-radius: 20px;
    }
}

/* Styles pour les sections membres */
.honor-members-section,
.ambassadors-section,
.local-presidents-section {
    padding: 80px 0;
}

.member-card,
.ambassador-card,
.local-president-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.member-card:hover,
.ambassador-card:hover,
.local-president-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Styles pour les cartes verticales */
.member-vertical {
    text-align: center;
}

.member-vertical .member-image {
    margin-bottom: 20px;
}

.member-vertical .member-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f8f9fa;
}

/* Styles pour les cartes horizontales */
.member-horizontal .member-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f8f9fa;
}

.member-horizontal .member-content {
    padding-left: 20px;
}

/* Styles pour les ambassadeurs */
.ambassador-card .ambassador-image {
    margin-bottom: 20px;
}

.ambassador-card .ambassador-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f8f9fa;
}

.ambassador-name,
.member-name {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.ambassador-description,
.member-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .member-horizontal .row {
        text-align: center;
    }

    .member-horizontal .member-content {
        padding-left: 0;
        padding-top: 15px;
    }

    .member-vertical .member-image img,
    .ambassador-card .ambassador-image img {
        width: 150px;
        height: 150px;
    }
}

/* Styles pour la page de politique de confidentialité */
.privacy-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%);
}

.privacy-toc .hover-card {
    transition: all 0.3s ease;
    background: #f8fafc;
}

.privacy-toc .hover-card:hover {
    background: #fff7ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section-card {
    scroll-margin-top: 100px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-badge {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.info-type-card,
.right-item {
    transition: all 0.3s ease;
    height: 100%;
}

.info-type-card:hover,
.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #ea580c !important;
}

.usage-item,
.sharing-item {
    transition: all 0.3s ease;
}

.usage-item:hover,
.sharing-item:hover {
    transform: translateX(5px);
}

.bg-orange-light {
    background-color: #fff7ed !important;
}

.contact-action {
    border: 2px dashed #ea580c;
}

/* Animation pour le scroll */
.privacy-section-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-toc .col-md-6 {
        margin-bottom: 10px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
}

/* Swiper Carousel Styles */
.swiper {
    width: 100%;
    padding: 20px 0 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.swiper-pagination-bullet {
    background: var(--primary-orange);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-orange);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Masquer le carrousel sur desktop, afficher la grille */
.desktop-screenshots {
    display: block;
}

.mobile-screenshots {
    display: none;
}

@media (max-width: 768px) {
    .desktop-screenshots {
        display: none;
    }

    .mobile-screenshots {
        display: block;
    }

    .swiper-slide {
        padding: 0 10px;
    }

    .screenshot-card img {
        border-radius: 20px;
    }
}

/* CORRECTIONS FINALES POUR LE DÉBORDEMENT MOBILE */
.force-responsive {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* S'assurer que toutes les images sont responsives */
img {
    max-width: 100%;
    height: auto;
}

/* Empêcher le zoom sur les inputs sur iOS */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* Correction spécifique pour les éléments flex en mobile */
@media (max-width: 768px) {
    .d-flex {
        flex-wrap: wrap;
    }
    
    .flex-row {
        flex-direction: column !important;
    }
}

/* Assurer que le body ne dépasse jamais */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Correction pour les éléments positionnés absolument */
@media (max-width: 768px) {
    .position-absolute {
        position: relative !important;
    }
    
    .particle,
    .decorative-blob {
        display: none;
    }
}